Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117751497
Imap.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
4 KB
Referenced Files
None
Subscribers
None
Imap.php
View Options
<?php
/**
* Test class to test rcube_imap class
*
* @package Tests
*/
class
Framework_Imap
extends
PHPUnit\Framework\TestCase
{
/**
* Class constructor
*/
function
test_class
()
{
$object
=
new
rcube_imap
;
$this
->
assertInstanceOf
(
'rcube_imap'
,
$object
,
"Class constructor"
);
}
/**
* Test convert_criteria()
*/
function
test_convert_criteria
()
{
$this
->
assertSame
(
"FLAGGED SINCE 1-Feb-1994 NOT FROM
\"
Smith
\"
"
,
rcube_imap
::
convert_criteria
(
"FLAGGED SINCE 1-Feb-1994 NOT FROM
\"
Smith
\"
"
,
RCUBE_CHARSET
)
);
$this
->
assertSame
(
"ALL TEXT el"
,
rcube_imap
::
convert_criteria
(
"ALL TEXT {4}
\r\n
żel"
,
RCUBE_CHARSET
)
);
$this
->
assertSame
(
"ALL TEXT {4}
\r\n
żel"
,
rcube_imap
::
convert_criteria
(
"ALL TEXT {4}
\r\n
żel"
,
RCUBE_CHARSET
,
RCUBE_CHARSET
)
);
}
/**
* Folder sorting
*/
function
test_sort_folder_list
()
{
$_SESSION
[
'imap_delimiter'
]
=
'.'
;
$_SESSION
[
'imap_namespace'
]
=
[
'personal'
=>
null
,
'other'
=>
[[
'Other Users.'
,
'.'
]],
'shared'
=>
[[
'Shared.'
,
'.'
]],
];
foreach
([
'drafts'
,
'sent'
,
'junk'
,
'trash'
]
as
$mbox
)
{
rcube
::
get_instance
()->
config
->
set
(
"{$mbox}_mbox"
,
ucfirst
(
$mbox
));
}
$object
=
new
rcube_imap
;
$result
=
$object
->
sort_folder_list
([]);
$this
->
assertSame
([],
$result
);
$result
=
$object
->
sort_folder_list
([
'B'
,
'A'
]);
$this
->
assertSame
([
'A'
,
'B'
],
$result
);
$folders
=
[
'Trash'
,
'Sent'
,
'ABC'
,
'Drafts'
,
'INBOX.Trash'
,
'INBOX.Junk'
,
'INBOX.Sent'
,
'INBOX.Drafts'
,
'Shared.Test1'
,
'Other Users.Test2'
,
'Junk'
,
'INBOX'
,
'DEF'
,
];
$expected
=
[
'INBOX'
,
'INBOX.Drafts'
,
'INBOX.Junk'
,
'INBOX.Sent'
,
'INBOX.Trash'
,
'Drafts'
,
'Sent'
,
'Junk'
,
'Trash'
,
'ABC'
,
'DEF'
,
'Other Users.Test2'
,
'Shared.Test1'
,
];
$result
=
$object
->
sort_folder_list
(
$folders
);
$this
->
assertSame
(
$expected
,
$result
);
}
/**
* BODYSTRUCTURE parsing
*/
function
test_bodystructure
()
{
// A sample from #8803
$str
=
'(("TEXT" "PLAIN" ("CHARSET" "utf-8") NIL NIL "8bit" 232 7)'
.
'("MESSAGE" "DISPOSITION-NOTIFICATION" ("NAME" "ATT-3.dat") NIL NIL "7bit" 269 NIL ("ATTACHMENT" ("FILENAME" "ATT-3.dat")))'
.
'("MESSAGE" "RFC822" ("NAME" "Test mail.eml") NIL NIL "7bit" 3953 ("Fri, 25 Nov 2022 18:08:05 +0000" "Test mail"'
.
' (("Sender" NIL "sender" "hostname.tld"))'
.
' (("Sender" NIL "sender" "hostname.tld"))'
.
' (("Sender" NIL "sender" "hostname.tld"))'
.
' (("Recipient A" NIL "extmail" "exthost.tld"))'
.
' (("Recipient B" NIL "otherusr" "hostname.tld"))'
.
' NIL NIL "<960564af959918c2a7b2e59bde1ebb79@hostname.tld>")'
.
' ( "MIXED" ("BOUNDARY" "=_0cc01990d46dea96cd7d692970fcbf82") NIL NIL) 1 NIL ("ATTACHMENT" ("FILENAME" "Test mail.eml")))'
.
' "REPORT" ("BOUNDARY" "=_RrjQxjLYBqTMnoYWobuYlwN") NIL NIL)'
;
$structure
=
rcube_imap_generic
::
tokenizeResponse
(
$str
,
1
);
$imap
=
new
rcube_imap
();
$result
=
invokeMethod
(
$imap
,
'structure_part'
,
[
$structure
]);
$this
->
assertSame
(
'0'
,
$result
->
mime_id
);
$this
->
assertSame
(
'multipart'
,
$result
->
ctype_primary
);
$this
->
assertSame
(
'report'
,
$result
->
ctype_secondary
);
$this
->
assertSame
(
'multipart/report'
,
$result
->
mimetype
);
$this
->
assertSame
([
'boundary'
=>
'=_RrjQxjLYBqTMnoYWobuYlwN'
],
$result
->
ctype_parameters
);
$this
->
assertSame
([],
$result
->
d_parameters
);
$this
->
assertSame
(
'8bit'
,
$result
->
encoding
);
$this
->
assertCount
(
3
,
$result
->
parts
);
$part
=
$result
->
parts
[
2
];
$this
->
assertSame
(
'3'
,
$part
->
mime_id
);
$this
->
assertSame
(
'message/rfc822'
,
$part
->
mimetype
);
$this
->
assertSame
(
'multipart/mixed'
,
$part
->
real_mimetype
);
$this
->
assertSame
(
3953
,
$part
->
size
);
$this
->
assertCount
(
1
,
$part
->
parts
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Apr 4, 3:12 AM (15 h, 39 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
e1/57/3266cbbe00f051b8577cdb8d50fb
Default Alt Text
Imap.php (4 KB)
Attached To
Mode
R113 roundcubemail
Attached
Detach File
Event Timeline