mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-09 18:08:49 +00:00
Initial Release of the calendar plugin
This commit is contained in:
parent
45cc9885fc
commit
7115197a33
561 changed files with 189494 additions and 0 deletions
88
dav/SabreDAV/tests/Sabre/DAV/Property/HrefListTest.php
Normal file
88
dav/SabreDAV/tests/Sabre/DAV/Property/HrefListTest.php
Normal file
|
@ -0,0 +1,88 @@
|
|||
<?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"?>
|
||||
<d:anything xmlns:d="urn:DAV"><d:href>/bla/foo</d:href><d:href>/bla/bar</d:href></d:anything>
|
||||
';
|
||||
|
||||
$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"?>
|
||||
<d:anything xmlns:d="urn:DAV"><d:href2>/bla/foo</d:href2></d:anything>
|
||||
';
|
||||
|
||||
$dom = new DOMDocument();
|
||||
$dom->loadXML($xml);
|
||||
|
||||
$href = Sabre_DAV_Property_HrefList::unserialize($dom->firstChild);
|
||||
$this->assertEquals(array(), $href->getHrefs());
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue