Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F10702936
Identities.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
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
->
assertRegExp
(
'/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
Mon, Sep 7, 10:34 AM (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1265322
Default Alt Text
Identities.php (1 KB)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment