2012-06-03 18:19:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class Sabre_DAV_Property_HrefListTest extends PHPUnit_Framework_TestCase {
|
|
|
|
|
|
|
|
function testConstruct() {
|
|
|
|
|
|
|
|
$href = new Sabre_DAV_Property_HrefList(array('foo','bar'));
|
|
|
|
$this->assertEquals(array('foo','bar'),$href->getHrefs());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function testSerialize() {
|
|
|
|
|
|
|
|
$href = new Sabre_DAV_Property_HrefList(array('foo','bar'));
|
|
|
|
$this->assertEquals(array('foo','bar'),$href->getHrefs());
|
|
|
|
|
|
|
|
$doc = new DOMDocument();
|
|
|
|
$root = $doc->createElement('d:anything');
|
|
|
|
$root->setAttribute('xmlns:d','DAV:');
|
|
|
|
|
|
|
|
$doc->appendChild($root);
|
|
|
|
$server = new Sabre_DAV_Server();
|
|
|
|
$server->setBaseUri('/bla/');
|
|
|
|
|
|
|
|
$href->serialize($server, $root);
|
|
|
|
|
|
|
|
$xml = $doc->saveXML();
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
'<?xml version="1.0"?>
|
|
|
|
<d:anything xmlns:d="DAV:"><d:href>/bla/foo</d:href><d:href>/bla/bar</d:href></d:anything>
|
|
|
|
', $xml);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function testSerializeNoPrefix() {
|
|
|
|
|
|
|
|
$href = new Sabre_DAV_Property_HrefList(array('foo','bar'), false);
|
|
|
|
$this->assertEquals(array('foo','bar'),$href->getHrefs());
|
|
|
|
|
|
|
|
$doc = new DOMDocument();
|
|
|
|
$root = $doc->createElement('d:anything');
|
|
|
|
$root->setAttribute('xmlns:d','DAV:');
|
|
|
|
|
|
|
|
$doc->appendChild($root);
|
|
|
|
$server = new Sabre_DAV_Server();
|
|
|
|
$server->setBaseUri('/bla/');
|
|
|
|
|
|
|
|
$href->serialize($server, $root);
|
|
|
|
|
|
|
|
$xml = $doc->saveXML();
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
'<?xml version="1.0"?>
|
|
|
|
<d:anything xmlns:d="DAV:"><d:href>foo</d:href><d:href>bar</d:href></d:anything>
|
|
|
|
', $xml);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function testUnserialize() {
|
|
|
|
|
|
|
|
$xml = '<?xml version="1.0"?>
|
2012-07-23 21:15:47 +00:00
|
|
|
<d:anything xmlns:d="DAV:"><d:href>/bla/foo</d:href><d:href>/bla/bar</d:href></d:anything>
|
2012-06-03 18:19:28 +00:00
|
|
|
';
|
|
|
|
|
|
|
|
$dom = new DOMDocument();
|
|
|
|
$dom->loadXML($xml);
|
|
|
|
|
|
|
|
$href = Sabre_DAV_Property_HrefList::unserialize($dom->firstChild);
|
|
|
|
$this->assertEquals(array('/bla/foo','/bla/bar'),$href->getHrefs());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function testUnserializeIncompatible() {
|
|
|
|
|
|
|
|
$xml = '<?xml version="1.0"?>
|
2012-07-23 21:15:47 +00:00
|
|
|
<d:anything xmlns:d="DAV:"><d:href2>/bla/foo</d:href2></d:anything>
|
2012-06-03 18:19:28 +00:00
|
|
|
';
|
|
|
|
|
|
|
|
$dom = new DOMDocument();
|
|
|
|
$dom->loadXML($xml);
|
|
|
|
|
|
|
|
$href = Sabre_DAV_Property_HrefList::unserialize($dom->firstChild);
|
|
|
|
$this->assertEquals(array(), $href->getHrefs());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|