diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-09-17 19:25:57 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-09-17 19:25:57 +0200 |
commit | e8e2e76ed987d911ec878345e88d3c611a4b7b32 (patch) | |
tree | ae43d047a288e58d7e9c8e3ac8885dc12bc436a2 /tests/Framework/VCard.php | |
parent | ba3cd80c0c61e679cef92a1f4f51e645090a1472 (diff) | |
parent | 32ba62889c1def94f555c3e683fc8087ee16c9b3 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'tests/Framework/VCard.php')
-rw-r--r-- | tests/Framework/VCard.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/Framework/VCard.php b/tests/Framework/VCard.php index a830c2cbc..56ca9d721 100644 --- a/tests/Framework/VCard.php +++ b/tests/Framework/VCard.php @@ -49,6 +49,20 @@ class Framework_VCard extends PHPUnit_Framework_TestCase $this->assertEquals("Iksiñski", $vcards2[0]->surname, "Detect charset in encoded values"); } + function test_import_photo_encoding() + { + $input = file_get_contents($this->_srcpath('photo.vcf')); + + $vcards = rcube_vcard::import($input); + $vcard = $vcards[0]->get_assoc(); + + $this->assertCount(1, $vcards, "Detected 1 vcard"); + + // ENCODING=b case (#1488683) + $this->assertEquals("/9j/4AAQSkZJRgABAQA", substr(base64_encode($vcard['photo']), 0, 19), "Photo decoding"); + $this->assertEquals("Müller", $vcard['surname'], "Unicode characters"); + } + function test_encodings() { $input = file_get_contents($this->_srcpath('utf-16_sample.vcf')); |