| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/Dolibarr/htdocs/includes/sabre/sabre/vobject/tests/VObject/Splitter/ |
Upload File : |
<?php
namespace Sabre\VObject\Splitter;
class VCardTest extends \PHPUnit_Framework_TestCase {
function createStream($data) {
$stream = fopen('php://memory', 'r+');
fwrite($stream, $data);
rewind($stream);
return $stream;
}
function testVCardImportValidVCard() {
$data = <<<EOT
BEGIN:VCARD
UID:foo
END:VCARD
EOT;
$tempFile = $this->createStream($data);
$objects = new VCard($tempFile);
$count = 0;
while ($objects->getNext()) {
$count++;
}
$this->assertEquals(1, $count);
}
/**
* @expectedException Sabre\VObject\ParseException
*/
function testVCardImportWrongType() {
$event[] = <<<EOT
BEGIN:VEVENT
UID:foo1
DTSTAMP:20140122T233226Z
DTSTART:20140101T050000Z
END:VEVENT
EOT;
$event[] = <<<EOT
BEGIN:VEVENT
UID:foo2
DTSTAMP:20140122T233226Z
DTSTART:20140101T060000Z
END:VEVENT
EOT;
$data = <<<EOT
BEGIN:VCALENDAR
$event[0]
$event[1]
END:VCALENDAR
EOT;
$tempFile = $this->createStream($data);
$splitter = new VCard($tempFile);
while ($object = $splitter->getNext()) {
}
}
function testVCardImportValidVCardsWithCategories() {
$data = <<<EOT
BEGIN:VCARD
UID:card-in-foo1-and-foo2
CATEGORIES:foo1,foo2
END:VCARD
BEGIN:VCARD
UID:card-in-foo1
CATEGORIES:foo1
END:VCARD
BEGIN:VCARD
UID:card-in-foo3
CATEGORIES:foo3
END:VCARD
BEGIN:VCARD
UID:card-in-foo1-and-foo3
CATEGORIES:foo1\,foo3
END:VCARD
EOT;
$tempFile = $this->createStream($data);
$splitter = new VCard($tempFile);
$count = 0;
while ($object = $splitter->getNext()) {
$count++;
}
$this->assertEquals(4, $count);
}
function testVCardImportEndOfData() {
$data = <<<EOT
BEGIN:VCARD
UID:foo
END:VCARD
EOT;
$tempFile = $this->createStream($data);
$objects = new VCard($tempFile);
$object = $objects->getNext();
$this->assertNull($objects->getNext());
}
/**
* @expectedException \Sabre\VObject\ParseException
*/
function testVCardImportCheckInvalidArgumentException() {
$data = <<<EOT
BEGIN:FOO
END:FOO
EOT;
$tempFile = $this->createStream($data);
$objects = new VCard($tempFile);
while ($objects->getNext()) { }
}
function testVCardImportMultipleValidVCards() {
$data = <<<EOT
BEGIN:VCARD
UID:foo
END:VCARD
BEGIN:VCARD
UID:foo
END:VCARD
EOT;
$tempFile = $this->createStream($data);
$objects = new VCard($tempFile);
$count = 0;
while ($objects->getNext()) {
$count++;
}
$this->assertEquals(2, $count);
}
function testImportMultipleSeparatedWithNewLines() {
$data = <<<EOT
BEGIN:VCARD
UID:foo
END:VCARD
BEGIN:VCARD
UID:foo
END:VCARD
EOT;
$tempFile = $this->createStream($data);
$objects = new VCard($tempFile);
$count = 0;
while ($objects->getNext()) {
$count++;
}
$this->assertEquals(2, $count);
}
function testVCardImportVCardWithoutUID() {
$data = <<<EOT
BEGIN:VCARD
END:VCARD
EOT;
$tempFile = $this->createStream($data);
$objects = new VCard($tempFile);
$count = 0;
while ($objects->getNext()) {
$count++;
}
$this->assertEquals(1, $count);
}
}