Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3313619
vcards.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
vcards.php
View Options
<?php
/**
* Unit tests for class rcube_vcard
*
* @package Tests
*/
class
rcube_test_vcards
extends
UnitTestCase
{
function
__construct
()
{
$this
->
UnitTestCase
(
'Vcard encoding/decoding tests'
);
}
function
_srcpath
(
$fn
)
{
return
realpath
(
dirname
(
__FILE__
)
.
'/src/'
.
$fn
);
}
function
test_parse_one
()
{
$vcard
=
new
rcube_vcard
(
file_get_contents
(
$this
->
_srcpath
(
'apple.vcf'
)));
$this
->
assertEqual
(
true
,
$vcard
->
business
,
"Identify as business record"
);
$this
->
assertEqual
(
"Apple Computer AG"
,
$vcard
->
displayname
,
"FN => displayname"
);
$this
->
assertEqual
(
""
,
$vcard
->
firstname
,
"No person name set"
);
}
function
test_parse_two
()
{
$vcard
=
new
rcube_vcard
(
file_get_contents
(
$this
->
_srcpath
(
'johndoe.vcf'
)),
null
);
$this
->
assertEqual
(
false
,
$vcard
->
business
,
"Identify as private record"
);
$this
->
assertEqual
(
"John Doë"
,
$vcard
->
displayname
,
"Decode according to charset attribute"
);
$this
->
assertEqual
(
"roundcube.net"
,
$vcard
->
organization
,
"Test organization field"
);
$this
->
assertEqual
(
2
,
count
(
$vcard
->
email
),
"List two e-mail addresses"
);
$this
->
assertEqual
(
"roundcube@gmail.com"
,
$vcard
->
email
[
0
],
"Use PREF e-mail as primary"
);
}
function
test_import
()
{
$input
=
file_get_contents
(
$this
->
_srcpath
(
'apple.vcf'
));
$input
.=
file_get_contents
(
$this
->
_srcpath
(
'johndoe.vcf'
));
$vcards
=
rcube_vcard
::
import
(
$input
);
$this
->
assertEqual
(
2
,
count
(
$vcards
),
"Detected 2 vcards"
);
$this
->
assertEqual
(
"Apple Computer AG"
,
$vcards
[
0
]->
displayname
,
"FN => displayname"
);
$this
->
assertEqual
(
"John Doë"
,
$vcards
[
1
]->
displayname
,
"Displayname with correct charset"
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Apr 9, 2:33 PM (1 d, 2 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
463046
Default Alt Text
vcards.php (1 KB)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment