Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F120834904
Qrcode.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
Qrcode.php
View Options
<?php
/**
* Test class to test rcmail_action_contacts_qrcode
*
* @package Tests
*/
class
Actions_Contacts_Qrcode
extends
ActionTestCase
{
/**
* Test run() method
*/
function
test_run
()
{
$action
=
new
rcmail_action_contacts_qrcode
;
$output
=
$this
->
initOutput
(
rcmail_action
::
MODE_HTTP
,
'contacts'
,
'qrcode'
);
$this
->
assertInstanceOf
(
'rcmail_action'
,
$action
);
$this
->
assertTrue
(
$action
->
checks
());
$this
->
runAndAssert
(
$action
,
OutputJsonMock
::
E_EXIT
);
$result
=
$output
->
getOutput
();
$this
->
assertSame
([
'HTTP/1.0 404 Contact not found'
],
$output
->
headers
);
$this
->
assertSame
(
''
,
$result
);
$type
=
$action
->
check_support
();
if
(!
$type
)
{
$this
->
markTestSkipped
();
}
$db
=
rcmail
::
get_instance
()->
get_dbh
();
$query
=
$db
->
query
(
'SELECT `contact_id` FROM `contacts` WHERE `user_id` = 1 LIMIT 1'
);
$contact
=
$db
->
fetch_assoc
(
$query
);
$_GET
=
[
'_cid'
=>
$contact
[
'contact_id'
],
'_source'
=>
'0'
];
$this
->
runAndAssert
(
$action
,
OutputJsonMock
::
E_EXIT
);
$result
=
$output
->
getOutput
();
if
(
$type
==
'image/png'
)
{
$this
->
assertSame
(
'Content-Type: image/png'
,
$output
->
headers
[
0
]);
$this
->
assertMatchesRegularExpression
(
'/^
\x
89
\x
50
\x
4E
\x
47/'
,
$result
);
}
else
{
$this
->
assertSame
(
'Content-Type: image/svg+xml'
,
$output
->
headers
[
0
]);
$this
->
assertMatchesRegularExpression
(
'/^<
\?
xml/'
,
$result
);
$this
->
assertMatchesRegularExpression
(
'/<svg /'
,
$result
);
$this
->
assertMatchesRegularExpression
(
'/<rect /'
,
$result
);
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Apr 24, 1:10 PM (5 d, 23 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18844627
Default Alt Text
Qrcode.php (1 KB)
Attached To
Mode
R113 roundcubemail
Attached
Detach File
Event Timeline