mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 08:58: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
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
|
||||
class Sabre_DAVACL_Exception_AceConflictTest extends PHPUnit_Framework_TestCase {
|
||||
|
||||
function testSerialize() {
|
||||
|
||||
$ex = new Sabre_DAVACL_Exception_AceConflict('message');
|
||||
|
||||
$server = new Sabre_DAV_Server();
|
||||
$dom = new DOMDocument('1.0','utf-8');
|
||||
$root = $dom->createElementNS('DAV:','d:root');
|
||||
$dom->appendChild($root);
|
||||
|
||||
$ex->serialize($server, $root);
|
||||
|
||||
$xpaths = array(
|
||||
'/d:root' => 1,
|
||||
'/d:root/d:no-ace-conflict' => 1,
|
||||
);
|
||||
|
||||
// Reloading because PHP DOM sucks
|
||||
$dom2 = new DOMDocument('1.0', 'utf-8');
|
||||
$dom2->loadXML($dom->saveXML());
|
||||
|
||||
$dxpath = new DOMXPath($dom2);
|
||||
$dxpath->registerNamespace('d','DAV:');
|
||||
foreach($xpaths as $xpath=>$count) {
|
||||
|
||||
$this->assertEquals($count, $dxpath->query($xpath)->length, 'Looking for : ' . $xpath . ', we could only find ' . $dxpath->query($xpath)->length . ' elements, while we expected ' . $count);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue