Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F9789164
FolderSubscribe.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
FolderSubscribe.php
View Options
<?php
/**
* Test class to test rcmail_action_settings_folder_subscribe
*
* @package Tests
*/
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'
,
$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
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 8:02 AM (16 h, 18 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1137763
Default Alt Text
FolderSubscribe.php (2 KB)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment