Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117881168
VCard.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
VCard.php
View Options
<?php
/**
* Unit tests for class rcube_vcard
*
* @package Tests
*/
class
Framework_VCard
extends
PHPUnit_Framework_TestCase
{
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
->
assertTrue
(
$vcard
->
business
,
"Identify as business record"
);
$this
->
assertEquals
(
"Apple Computer AG"
,
$vcard
->
displayname
,
"FN => displayname"
);
$this
->
assertEquals
(
""
,
$vcard
->
firstname
,
"No person name set"
);
}
function
test_parse_two
()
{
$vcard
=
new
rcube_vcard
(
file_get_contents
(
$this
->
_srcpath
(
'johndoe.vcf'
)),
null
);
$this
->
assertFalse
(
$vcard
->
business
,
"Identify as private record"
);
$this
->
assertEquals
(
"John Doë"
,
$vcard
->
displayname
,
"Decode according to charset attribute"
);
$this
->
assertEquals
(
"roundcube.net"
,
$vcard
->
organization
,
"Test organization field"
);
$this
->
assertCount
(
2
,
$vcard
->
email
,
"List two e-mail addresses"
);
$this
->
assertEquals
(
"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
->
assertCount
(
2
,
$vcards
,
"Detected 2 vcards"
);
$this
->
assertEquals
(
"Apple Computer AG"
,
$vcards
[
0
]->
displayname
,
"FN => displayname"
);
$this
->
assertEquals
(
"John Doë"
,
$vcards
[
1
]->
displayname
,
"Displayname with correct charset"
);
// http://trac.roundcube.net/ticket/1485542
$vcards2
=
rcube_vcard
::
import
(
file_get_contents
(
$this
->
_srcpath
(
'thebat.vcf'
)));
$this
->
assertEquals
(
"Iksiñski"
,
$vcards2
[
0
]->
surname
,
"Detect charset in encoded values"
);
}
function
test_encodings
()
{
$input
=
file_get_contents
(
$this
->
_srcpath
(
'utf-16_sample.vcf'
));
$vcards
=
rcube_vcard
::
import
(
$input
);
$this
->
assertEquals
(
"Ǽgean ĽdaMonté"
,
$vcards
[
0
]->
displayname
,
"Decoded from UTF-16"
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Apr 5, 11:44 PM (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18786216
Default Alt Text
VCard.php (2 KB)
Attached To
Mode
R113 roundcubemail
Attached
Detach File
Event Timeline