assertEquals(array('VEVENT'), $sccs->getValue()); } /** * @depends testSimple */ function testSerialize() { $property = new SupportedCalendarComponentSet(array('VEVENT','VJOURNAL')); $doc = new \DOMDocument(); $root = $doc->createElement('d:root'); $root->setAttribute('xmlns:d','DAV:'); $root->setAttribute('xmlns:cal',\Sabre\CalDAV\Plugin::NS_CALDAV); $doc->appendChild($root); $server = new \Sabre\DAV\Server(); $property->serialize($server, $root); $xml = $doc->saveXML(); $this->assertEquals( ' ' . '' . '' . ' ', $xml); } /** * @depends testSimple */ function testUnserializer() { $xml = ' ' . '' . '' . ''; $dom = \Sabre\DAV\XMLUtil::loadDOMDocument($xml); $property = SupportedCalendarComponentSet::unserialize($dom->firstChild); $this->assertTrue($property instanceof SupportedCalendarComponentSet); $this->assertEquals(array( 'VEVENT', 'VJOURNAL', ), $property->getValue()); } }