Page MenuHomePhorge

FolderCreate.php
No OneTemporary

Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None

FolderCreate.php

<?php
/**
* Test class to test rcmail_action_settings_folder_create
*
* @package Tests
*/
class Actions_Settings_FolderCreate extends ActionTestCase
{
/**
* Test run() method
*/
function test_run()
{
$action = new rcmail_action_settings_folder_create;
$output = $this->initOutput(rcmail_action::MODE_HTTP, 'settings', 'folder-create');
$this->assertInstanceOf('rcmail_action', $action);
$this->assertTrue($action->checks());
// Set expected storage function calls/results
rcmail::get_instance()->storage
->registerFunction('get_capability', true)
->registerFunction('get_capability', true)
->registerFunction('folder_info', [
'name' => 'Test',
'is_root' => false,
'noselect' => false,
'special' => false,
'namespace' => 'personal',
])
->registerFunction('list_folders', [
'INBOX',
'Test',
])
->registerFunction('mod_folder', 'Test')
->registerFunction('mod_folder', 'Test')
->registerFunction('folder_attributes', [])
->registerFunction('count', 0)
->registerFunction('get_namespace', null)
->registerFunction('get_quota', false);
$this->runAndAssert($action, OutputHtmlMock::E_EXIT);
$result = $output->getOutput();
$this->assertSame('folderedit', $output->template);
$this->assertSame('', $output->getProperty('pagetitle')); // TODO: It should have some title
$this->assertTrue(stripos($result, "<!DOCTYPE html>") === 0);
$this->assertTrue(strpos($result, "rcmail.gui_object('editform', 'form');") !== false);
}
}

File Metadata

Mime Type
text/x-php
Expires
Sun, Apr 5, 10:18 PM (2 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18732411
Default Alt Text
FolderCreate.php (1 KB)

Event Timeline