Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117750700
RcmailFunc.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
2 KB
Referenced Files
None
Subscribers
None
RcmailFunc.php
View Options
<?php
/**
* Test class to test rcmail class
*
* @package Tests
*/
class
RcmailFunc
extends
PHPUnit_Framework_TestCase
{
function
setUp
()
{
// set some HTTP env vars
$_SERVER
[
'HTTP_HOST'
]
=
'mail.example.org'
;
$_SERVER
[
'SERVER_PORT'
]
=
'443'
;
$_SERVER
[
'SCRIPT_NAME'
]
=
'/sub/index.php'
;
$_SERVER
[
'HTTPS'
]
=
true
;
rcmail
::
get_instance
()->
filename
=
''
;
}
/**
* Class constructor
*/
function
test_class
()
{
$object
=
rcmail
::
get_instance
();
$this
->
assertInstanceOf
(
'rcmail'
,
$object
,
"Class singleton"
);
}
/**
* Test rcmail::url()
*/
function
test_url
()
{
$rcmail
=
rcmail
::
get_instance
();
$this
->
assertEquals
(
'./?_task=cli&_action=test'
,
$rcmail
->
url
(
'test'
),
"Action only"
);
$this
->
assertEquals
(
'./?_task=cli&_action=test&_a=AA'
,
$rcmail
->
url
(
array
(
'action'
=>
'test'
,
'a'
=>
'AA'
)),
"Unprefixed parameters"
);
$this
->
assertEquals
(
'./?_task=cli&_action=test&_b=BB'
,
$rcmail
->
url
(
array
(
'_action'
=>
'test'
,
'_b'
=>
'BB'
,
'_c'
=>
null
)),
"Prefixed parameters (skip empty)"
);
$this
->
assertEquals
(
'/sub/?_task=cli&_action=test&_mode=ABS'
,
$rcmail
->
url
(
array
(
'_action'
=>
'test'
,
'_mode'
=>
'ABS'
),
true
),
"Absolute URL"
);
$this
->
assertEquals
(
'https://mail.example.org/sub/?_task=calendar&_action=test&_mode=FQ'
,
$rcmail
->
url
(
array
(
'task'
=>
'calendar'
,
'_action'
=>
'test'
,
'_mode'
=>
'FQ'
),
true
,
true
),
"Fully Qualified URL"
);
// with different SCRIPT_NAME values
$_SERVER
[
'SCRIPT_NAME'
]
=
'index.php'
;
$this
->
assertEquals
(
'/?_task=cli&_action=test&_mode=ABS'
,
$rcmail
->
url
(
array
(
'_action'
=>
'test'
,
'_mode'
=>
'ABS'
),
true
),
"Absolute URL (root)"
);
$_SERVER
[
'SCRIPT_NAME'
]
=
''
;
$this
->
assertEquals
(
'/?_task=cli&_action=test&_mode=ABS'
,
$rcmail
->
url
(
array
(
'_action'
=>
'test'
,
'_mode'
=>
'ABS'
),
true
),
"Absolute URL (root)"
);
$_SERVER
[
'HTTPS'
]
=
false
;
$_SERVER
[
'SERVER_PORT'
]
=
'8080'
;
$this
->
assertEquals
(
'http://mail.example.org:8080/?_task=cli&_action=test&_mode=ABS'
,
$rcmail
->
url
(
array
(
'_action'
=>
'test'
,
'_mode'
=>
'ABS'
),
true
,
true
),
"Full URL with port"
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Apr 4, 2:37 AM (5 d, 21 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
56/67/a6db2d707e313433ea5fb735a30f
Default Alt Text
RcmailFunc.php (2 KB)
Attached To
Mode
R113 roundcubemail
Attached
Detach File
Event Timeline