forked from friendica/friendica-addons
264 lines
8.8 KiB
PHP
264 lines
8.8 KiB
PHP
<?php
|
|
|
|
class Sabre_VObject_ReaderTest extends PHPUnit_Framework_TestCase {
|
|
|
|
function testReadComponent() {
|
|
|
|
$data = "BEGIN:VCALENDAR\r\nEND:VCALENDAR";
|
|
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Component', $result);
|
|
$this->assertEquals('VCALENDAR', $result->name);
|
|
$this->assertEquals(0, count($result->children));
|
|
|
|
}
|
|
|
|
function testReadComponentUnixNewLine() {
|
|
|
|
$data = "BEGIN:VCALENDAR\nEND:VCALENDAR";
|
|
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Component', $result);
|
|
$this->assertEquals('VCALENDAR', $result->name);
|
|
$this->assertEquals(0, count($result->children));
|
|
|
|
}
|
|
|
|
function testReadComponentMacNewLine() {
|
|
|
|
$data = "BEGIN:VCALENDAR\rEND:VCALENDAR";
|
|
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Component', $result);
|
|
$this->assertEquals('VCALENDAR', $result->name);
|
|
$this->assertEquals(0, count($result->children));
|
|
|
|
}
|
|
|
|
function testReadComponentLineFold() {
|
|
|
|
$data = "BEGIN:\r\n\tVCALENDAR\r\nE\r\n ND:VCALENDAR";
|
|
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Component', $result);
|
|
$this->assertEquals('VCALENDAR', $result->name);
|
|
$this->assertEquals(0, count($result->children));
|
|
|
|
}
|
|
|
|
/**
|
|
* @expectedException Sabre_VObject_ParseException
|
|
*/
|
|
function testReadCorruptComponent() {
|
|
|
|
$data = "BEGIN:VCALENDAR\r\nEND:FOO";
|
|
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
}
|
|
|
|
function testReadProperty() {
|
|
|
|
$data = "PROPNAME:propValue";
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Property', $result);
|
|
$this->assertEquals('PROPNAME', $result->name);
|
|
$this->assertEquals('propValue', $result->value);
|
|
|
|
}
|
|
|
|
function testReadPropertyWithNewLine() {
|
|
|
|
$data = 'PROPNAME:Line1\\nLine2\\NLine3\\\\Not the 4th line!';
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Property', $result);
|
|
$this->assertEquals('PROPNAME', $result->name);
|
|
$this->assertEquals("Line1\nLine2\nLine3\\Not the 4th line!", $result->value);
|
|
|
|
}
|
|
|
|
function testReadMappedProperty() {
|
|
|
|
$data = "DTSTART:20110529";
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Property_DateTime', $result);
|
|
$this->assertEquals('DTSTART', $result->name);
|
|
$this->assertEquals('20110529', $result->value);
|
|
|
|
}
|
|
|
|
function testReadMappedPropertyGrouped() {
|
|
|
|
$data = "foo.DTSTART:20110529";
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Property_DateTime', $result);
|
|
$this->assertEquals('DTSTART', $result->name);
|
|
$this->assertEquals('20110529', $result->value);
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* @expectedException Sabre_VObject_ParseException
|
|
*/
|
|
function testReadBrokenLine() {
|
|
|
|
$data = "PROPNAME;propValue";
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
}
|
|
|
|
function testReadPropertyInComponent() {
|
|
|
|
$data = array(
|
|
"BEGIN:VCALENDAR",
|
|
"PROPNAME:propValue",
|
|
"END:VCALENDAR"
|
|
);
|
|
|
|
$result = Sabre_VObject_Reader::read(implode("\r\n",$data));
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Component', $result);
|
|
$this->assertEquals('VCALENDAR', $result->name);
|
|
$this->assertEquals(1, count($result->children));
|
|
$this->assertInstanceOf('Sabre_VObject_Property', $result->children[0]);
|
|
$this->assertEquals('PROPNAME', $result->children[0]->name);
|
|
$this->assertEquals('propValue', $result->children[0]->value);
|
|
|
|
|
|
}
|
|
function testReadNestedComponent() {
|
|
|
|
$data = array(
|
|
"BEGIN:VCALENDAR",
|
|
"BEGIN:VTIMEZONE",
|
|
"BEGIN:DAYLIGHT",
|
|
"END:DAYLIGHT",
|
|
"END:VTIMEZONE",
|
|
"END:VCALENDAR"
|
|
);
|
|
|
|
$result = Sabre_VObject_Reader::read(implode("\r\n",$data));
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Component', $result);
|
|
$this->assertEquals('VCALENDAR', $result->name);
|
|
$this->assertEquals(1, count($result->children));
|
|
$this->assertInstanceOf('Sabre_VObject_Component', $result->children[0]);
|
|
$this->assertEquals('VTIMEZONE', $result->children[0]->name);
|
|
$this->assertEquals(1, count($result->children[0]->children));
|
|
$this->assertInstanceOf('Sabre_VObject_Component', $result->children[0]->children[0]);
|
|
$this->assertEquals('DAYLIGHT', $result->children[0]->children[0]->name);
|
|
|
|
|
|
}
|
|
|
|
function testReadPropertyParameter() {
|
|
|
|
$data = "PROPNAME;PARAMNAME=paramvalue:propValue";
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Property', $result);
|
|
$this->assertEquals('PROPNAME', $result->name);
|
|
$this->assertEquals('propValue', $result->value);
|
|
$this->assertEquals(1, count($result->parameters));
|
|
$this->assertEquals('PARAMNAME', $result->parameters[0]->name);
|
|
$this->assertEquals('paramvalue', $result->parameters[0]->value);
|
|
|
|
}
|
|
|
|
function testReadPropertyNoValue() {
|
|
|
|
$data = "PROPNAME;PARAMNAME:propValue";
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Property', $result);
|
|
$this->assertEquals('PROPNAME', $result->name);
|
|
$this->assertEquals('propValue', $result->value);
|
|
$this->assertEquals(1, count($result->parameters));
|
|
$this->assertEquals('PARAMNAME', $result->parameters[0]->name);
|
|
$this->assertEquals('', $result->parameters[0]->value);
|
|
|
|
}
|
|
|
|
function testReadPropertyParameterExtraColon() {
|
|
|
|
$data = "PROPNAME;PARAMNAME=paramvalue:propValue:anotherrandomstring";
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Property', $result);
|
|
$this->assertEquals('PROPNAME', $result->name);
|
|
$this->assertEquals('propValue:anotherrandomstring', $result->value);
|
|
$this->assertEquals(1, count($result->parameters));
|
|
$this->assertEquals('PARAMNAME', $result->parameters[0]->name);
|
|
$this->assertEquals('paramvalue', $result->parameters[0]->value);
|
|
|
|
}
|
|
|
|
function testReadProperty2Parameters() {
|
|
|
|
$data = "PROPNAME;PARAMNAME=paramvalue;PARAMNAME2=paramvalue2:propValue";
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Property', $result);
|
|
$this->assertEquals('PROPNAME', $result->name);
|
|
$this->assertEquals('propValue', $result->value);
|
|
$this->assertEquals(2, count($result->parameters));
|
|
$this->assertEquals('PARAMNAME', $result->parameters[0]->name);
|
|
$this->assertEquals('paramvalue', $result->parameters[0]->value);
|
|
$this->assertEquals('PARAMNAME2', $result->parameters[1]->name);
|
|
$this->assertEquals('paramvalue2', $result->parameters[1]->value);
|
|
|
|
}
|
|
|
|
function testReadPropertyParameterQuoted() {
|
|
|
|
$data = "PROPNAME;PARAMNAME=\"paramvalue\":propValue";
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Property', $result);
|
|
$this->assertEquals('PROPNAME', $result->name);
|
|
$this->assertEquals('propValue', $result->value);
|
|
$this->assertEquals(1, count($result->parameters));
|
|
$this->assertEquals('PARAMNAME', $result->parameters[0]->name);
|
|
$this->assertEquals('paramvalue', $result->parameters[0]->value);
|
|
|
|
}
|
|
function testReadPropertyParameterNewLines() {
|
|
|
|
$data = "PROPNAME;PARAMNAME=paramvalue1\\nvalue2\\\\nvalue3:propValue";
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Property', $result);
|
|
$this->assertEquals('PROPNAME', $result->name);
|
|
$this->assertEquals('propValue', $result->value);
|
|
|
|
$this->assertEquals(1, count($result->parameters));
|
|
$this->assertEquals('PARAMNAME', $result->parameters[0]->name);
|
|
$this->assertEquals("paramvalue1\nvalue2\\nvalue3", $result->parameters[0]->value);
|
|
|
|
}
|
|
|
|
function testReadPropertyParameterQuotedColon() {
|
|
|
|
$data = "PROPNAME;PARAMNAME=\"param:value\":propValue";
|
|
$result = Sabre_VObject_Reader::read($data);
|
|
|
|
$this->assertInstanceOf('Sabre_VObject_Property', $result);
|
|
$this->assertEquals('PROPNAME', $result->name);
|
|
$this->assertEquals('propValue', $result->value);
|
|
$this->assertEquals(1, count($result->parameters));
|
|
$this->assertEquals('PARAMNAME', $result->parameters[0]->name);
|
|
$this->assertEquals('param:value', $result->parameters[0]->value);
|
|
|
|
}
|
|
|
|
}
|