Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F120840594
Identities.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None
Identities.php
View Options
<?php
/**
* Test class to test rcmail_action_settings_identities
*
* @package Tests
*/
class
Actions_Settings_Identities
extends
ActionTestCase
{
/**
* Test run() method
*/
function
test_run
()
{
$action
=
new
rcmail_action_settings_identities
;
$output
=
$this
->
initOutput
(
rcmail_action
::
MODE_HTTP
,
'settings'
,
'identities'
);
$this
->
assertInstanceOf
(
'rcmail_action'
,
$action
);
$this
->
assertTrue
(
$action
->
checks
());
self
::
initDB
(
'identities'
);
$this
->
runAndAssert
(
$action
,
OutputHtmlMock
::
E_EXIT
);
$result
=
$output
->
getOutput
();
$this
->
assertSame
(
'identities'
,
$output
->
template
);
$this
->
assertSame
(
'Identities'
,
$output
->
getProperty
(
'pagetitle'
));
$this
->
assertTrue
(
stripos
(
$result
,
"<!DOCTYPE html>"
)
===
0
);
$this
->
assertTrue
(
strpos
(
$result
,
"test@example.org"
)
!==
false
);
$this
->
assertMatchesRegularExpression
(
'/list(.min)?.js/'
,
$result
);
}
/**
* Test identities_list() method
*/
function
test_identities_list
()
{
$action
=
new
rcmail_action_settings_identities
;
$output
=
$this
->
initOutput
(
rcmail_action
::
MODE_HTTP
,
'settings'
,
'identities'
);
self
::
initDB
(
'identities'
);
$result
=
$action
->
identities_list
([]);
$expected
=
'<table id="rcmIdentitiesList"><thead><tr><th class="mail">Mail</th></tr></thead>'
.
'<tbody><tr id="rcmrow1"><td class="mail">test <test@example.com></td></tr>'
.
'<tr id="rcmrow2"><td class="mail">test <test@example.org></td></tr></tbody></table>'
;
$this
->
assertSame
(
$expected
,
$result
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Apr 24, 2:29 PM (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18809292
Default Alt Text
Identities.php (1 KB)
Attached To
Mode
R113 roundcubemail
Attached
Detach File
Event Timeline