Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F9787929
IdentityCreate.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
908 B
Referenced Files
None
Subscribers
None
IdentityCreate.php
View Options
<?php
/**
* Test class to test rcmail_action_settings_identity_create
*
* @package Tests
*/
class
Actions_Settings_IdentityCreate
extends
ActionTestCase
{
/**
* Test run() method
*/
function
test_run
()
{
$action
=
new
rcmail_action_settings_identity_create
;
$output
=
$this
->
initOutput
(
rcmail_action
::
MODE_HTTP
,
'settings'
,
'add-identity'
);
$this
->
assertInstanceOf
(
'rcmail_action'
,
$action
);
$this
->
assertTrue
(
$action
->
checks
());
$this
->
runAndAssert
(
$action
,
OutputHtmlMock
::
E_EXIT
);
$result
=
$output
->
getOutput
();
$this
->
assertSame
(
'identityedit'
,
$output
->
template
);
$this
->
assertSame
(
'Add identity'
,
$output
->
getProperty
(
'pagetitle'
));
$this
->
assertTrue
(
stripos
(
$result
,
"<!DOCTYPE html>"
)
===
0
);
$this
->
assertTrue
(
strpos
(
$result
,
"rcmail.gui_object('editform', 'form')"
)
!==
false
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 7:24 AM (23 h, 37 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1238209
Default Alt Text
IdentityCreate.php (908 B)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment