Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117749965
MimeDecode.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
MimeDecode.php
View Options
<?php
/**
* Test class to test rcube_mime_decode class
*
* @package Tests
*/
class
Framework_MimeDecode
extends
PHPUnit\Framework\TestCase
{
/**
* Test mail decode
*/
function
test_decode
()
{
$mail
=
file_get_contents
(
TESTS_DIR
.
'src/mail0.eml'
);
$decoder
=
new
rcube_mime_decode
();
$result
=
$decoder
->
decode
(
$mail
);
$this
->
assertInstanceOf
(
'rcube_message_part'
,
$result
);
$this
->
assertSame
(
'multipart/mixed'
,
$result
->
mimetype
);
$this
->
assertSame
(
'=_8853bfb47b7da1852ac882e69cc724f3'
,
$result
->
ctype_parameters
[
'boundary'
]);
$this
->
assertSame
(
'8bit'
,
$result
->
encoding
);
$this
->
assertSame
(
1413
,
$result
->
size
);
$this
->
assertCount
(
13
,
$result
->
headers
);
$this
->
assertSame
(
'thomas@roundcube.net'
,
$result
->
headers
[
'x-sender'
]);
$this
->
assertSame
(
'=_8853bfb47b7da1852ac882e69cc724f3'
,
$result
->
ctype_parameters
[
'boundary'
]);
$this
->
assertCount
(
3
,
$result
->
parts
);
$this
->
assertSame
(
11
,
$result
->
parts
[
2
]->
size
);
$this
->
assertSame
(
'text/plain'
,
$result
->
parts
[
2
]->
mimetype
);
$this
->
assertSame
(
'lines_lf.txt'
,
$result
->
parts
[
2
]->
filename
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Apr 4, 1:56 AM (1 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
70/f5/be77077e5b619ac66b71b4a557e3
Default Alt Text
MimeDecode.php (1 KB)
Attached To
Mode
R113 roundcubemail
Attached
Detach File
Event Timeline