Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F6067036
Index.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
Index.php
View Options
<?php
/**
* Test class to test rcmail_action_contacts_index
*
* @package Tests
*/
class
Actions_Contacts_Index
extends
ActionTestCase
{
/**
* Test run() method in HTTP mode
*/
function
test_run_http
()
{
$action
=
new
rcmail_action_contacts_index
;
$output
=
$this
->
initOutput
(
rcmail_action
::
MODE_HTTP
,
'contacts'
,
''
);
$this
->
assertInstanceOf
(
'rcmail_action'
,
$action
);
$this
->
assertTrue
(
$action
->
checks
());
// self::initDB('contacts');
$action
->
run
();
$this
->
assertSame
([],
$output
->
headers
);
$this
->
assertNull
(
$output
->
getOutput
());
$sources
=
$output
->
get_env
(
'address_sources'
);
$this
->
assertCount
(
3
,
$sources
);
$this
->
assertSame
(
'Personal Addresses'
,
$sources
[
0
][
'name'
]);
$this
->
assertSame
(
'Collected Recipients'
,
$sources
[
1
][
'name'
]);
$this
->
assertSame
(
'Trusted Senders'
,
$sources
[
2
][
'name'
]);
$this
->
assertSame
(
'Contacts'
,
$output
->
getProperty
(
'pagetitle'
));
}
/**
* Test run() method in AJAX mode
*/
function
test_run_ajax
()
{
$action
=
new
rcmail_action_contacts_index
;
$output
=
$this
->
initOutput
(
rcmail_action
::
MODE_AJAX
,
'contacts'
,
'list'
);
$this
->
assertTrue
(
$action
->
checks
());
// self::initDB('contacts');
$action
->
run
();
$this
->
assertSame
([],
$output
->
headers
);
$this
->
assertNull
(
$output
->
getOutput
());
$this
->
assertNull
(
$output
->
get_env
(
'address_sources'
));
$this
->
assertSame
(
''
,
$output
->
getProperty
(
'pagetitle'
));
}
/**
* Test contact_source() method
*/
function
test_contact_source
()
{
$this
->
markTestIncomplete
();
}
/**
* Test set_sourcename() method
*/
function
test_set_sourcename
()
{
$this
->
markTestIncomplete
();
}
/**
* Test directory_list() method
*/
function
test_directory_list
()
{
$this
->
markTestIncomplete
();
}
/**
* Test savedsearch_list() method
*/
function
test_savedsearch_list
()
{
$this
->
markTestIncomplete
();
}
/**
* Test contact_groups() method
*/
function
test_contact_groups
()
{
$this
->
markTestIncomplete
();
}
/**
* Test contacts_list() method
*/
function
test_contacts_list
()
{
$this
->
markTestIncomplete
();
}
/**
* Test contacts_list_title() method
*/
function
test_contacts_list_title
()
{
$this
->
markTestIncomplete
();
}
/**
* Test rowcount_display() method
*/
function
test_rowcount_display
()
{
$output
=
$this
->
initOutput
(
rcmail_action
::
MODE_HTTP
,
'contacts'
,
''
);
$result
=
rcmail_action_contacts_index
::
rowcount_display
([]);
$this
->
assertSame
(
'<span id="rcmcountdisplay">Loading...</span>'
,
$result
);
}
/**
* Test get_rowcount_text() method
*/
function
test_get_rowcount_text
()
{
$this
->
markTestIncomplete
();
}
/**
* Test get_type_label() method
*/
function
test_get_type_label
()
{
$output
=
$this
->
initOutput
(
rcmail_action
::
MODE_HTTP
,
'contacts'
,
''
);
$result
=
rcmail_action_contacts_index
::
get_type_label
(
'home'
);
$this
->
assertSame
(
'Home'
,
$result
);
}
/**
* Test contact_form() method
*/
function
test_contact_form
()
{
$this
->
markTestIncomplete
();
}
/**
* Test contact_photo() method
*/
function
test_contact_photo
()
{
$this
->
markTestIncomplete
();
}
/**
* Test search_update() method
*/
function
test_search_update
()
{
$this
->
markTestIncomplete
();
}
/**
* Test get_cids() method
*/
function
test_get_cids
()
{
$this
->
markTestIncomplete
();
}
/**
* Test source_selector() method
*/
function
test_source_selector
()
{
$output
=
$this
->
initOutput
(
rcmail_action
::
MODE_HTTP
,
'contacts'
,
''
);
$result
=
rcmail_action_contacts_index
::
source_selector
([]);
$expected
=
'<span>Personal Addresses<input type="hidden" name="_source" value="0"></span>'
;
$this
->
assertSame
(
$expected
,
$result
);
// TODO: Test more
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, May 22, 5:03 AM (1 d, 1 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
782417
Default Alt Text
Index.php (4 KB)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment