friendica-addons/dav/SabreDAV/tests/Sabre/CalDAV/Property/SupportedCollationSetTest.php
2012-06-03 18:19:28 +00:00

43 lines
1.2 KiB
PHP

<?php
class Sabre_CalDAV_Property_SupportedCollationSetTest extends PHPUnit_Framework_TestCase {
function testSimple() {
$scs = new Sabre_CalDAV_Property_SupportedCollationSet();
}
/**
* @depends testSimple
*/
function testSerialize() {
$property = new Sabre_CalDAV_Property_SupportedCollationSet();
$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);
$objectTree = new Sabre_DAV_ObjectTree(new Sabre_DAV_SimpleCollection('rootdir'));
$server = new Sabre_DAV_Server($objectTree);
$property->serialize($server, $root);
$xml = $doc->saveXML();
$this->assertEquals(
'<?xml version="1.0"?>
<d:root xmlns:d="DAV:" xmlns:cal="' . Sabre_CalDAV_Plugin::NS_CALDAV . '">' .
'<cal:supported-collation>i;ascii-casemap</cal:supported-collation>' .
'<cal:supported-collation>i;octet</cal:supported-collation>' .
'<cal:supported-collation>i;unicode-casemap</cal:supported-collation>' .
'</d:root>
', $xml);
}
}