1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
<?php
namespace Roundcube\Tests\Actions\Contacts;
use Roundcube\Tests\ActionTestCase;
use Roundcube\Tests\OutputJsonMock;
/**
* Test class to test rcmail_action_settings_folder_subscribe
*/
class Actions_Settings_FolderSubscribe extends ActionTestCase
{
/**
* Test subscribing a folder
*/
function test_subscribe()
{
$action = new \rcmail_action_settings_folder_subscribe();
$output = $this->initOutput(\rcmail_action::MODE_AJAX, 'settings', 'folder-subscribe');
$this->assertInstanceOf(\rcmail_action::class, $action);
$this->assertTrue($action->checks());
// Set expected storage function calls/results
\rcmail::get_instance()->storage
->registerFunction('subscribe', true)
->registerFunction('is_special_folder', false);
$_POST = ['_mbox' => 'Test'];
$this->runAndAssert($action, OutputJsonMock::E_EXIT);
$result = $output->getOutput();
$this->assertSame(['Content-Type: application/json; charset=UTF-8'], $output->headers);
$this->assertSame('folder-subscribe', $result['action']);
$this->assertTrue(strpos($result['exec'], 'this.display_message("Folder successfully subscribed.","confirmation",0);') !== false);
// TODO: Test a special folder subscription
}
/**
* Test handling errors
*/
function test_subscribe_errors()
{
$action = new \rcmail_action_settings_folder_subscribe();
$output = $this->initOutput(\rcmail_action::MODE_AJAX, 'settings', 'folder-subscribe');
// Set expected storage function calls/results
\rcmail::get_instance()->storage
->registerFunction('subscribe', false)
->registerFunction('get_error_code', -1)
->registerFunction('get_response_code', \rcube_storage::READONLY)
->registerFunction('get_error_code', -1)
->registerFunction('get_response_code', \rcube_storage::READONLY);
$_POST = ['_mbox' => 'Test'];
$this->runAndAssert($action, OutputJsonMock::E_EXIT);
$result = $output->getOutput();
$this->assertSame(['Content-Type: application/json; charset=UTF-8'], $output->headers);
$this->assertSame('folder-subscribe', $result['action']);
$this->assertTrue(strpos($result['exec'], 'this.display_message("Unable to perform operation. Folder is read-only.","error",0);') !== false);
$this->assertTrue(strpos($result['exec'], 'this.reset_subscription("Test",false);') !== false);
// TODO: Test TRYCREATE error handling
}
}
|