Aleksander Machniak
2013-01-05 2c777be5dd5741579736b4efcd629eee3eb25e20
Add test for vCard issue (#1488896)
1 files modified
13 ■■■■■ changed files
tests/Framework/VCard.php 13 ●●●●● patch | view | raw | blame | history
tests/Framework/VCard.php
@@ -50,6 +50,19 @@
        $this->assertRegExp('/TEL;TYPE=CELL:\+987654321/', $vcf, "Return CELL instead of MOBILE (set)");
    }
    /**
     * Backslash escaping test (#1488896)
     */
    function test_parse_four()
    {
        $vcard = "BEGIN:VCARD\nVERSION:3.0\nN:last\\;;first\\\\;middle;;\nFN:test\nEND:VCARD";
        $vcard = new rcube_vcard($vcard, null);
        $this->assertEquals("last;", $vcard->surname, "Decode backslash character");
        $this->assertEquals("first\\", $vcard->firstname, "Decode backslash character");
        $this->assertEquals("middle", $vcard->middlename, "Decode backslash character");
    }
    function test_import()
    {
        $input = file_get_contents($this->_srcpath('apple.vcf'));