forked from friendica/friendica-addons
147 lines
4.6 KiB
PHP
147 lines
4.6 KiB
PHP
<?php
|
|
|
|
require_once 'Sabre/DAVACL/MockPrincipalBackend.php';
|
|
require_once 'Sabre/CardDAV/AbstractPluginTest.php';
|
|
|
|
class Sabre_CardDAV_PluginTest extends Sabre_CardDAV_AbstractPluginTest {
|
|
|
|
function testConstruct() {
|
|
|
|
$this->assertEquals('card', $this->server->xmlNamespaces[Sabre_CardDAV_Plugin::NS_CARDDAV]);
|
|
$this->assertEquals('{' . Sabre_CardDAV_Plugin::NS_CARDDAV . '}addressbook', $this->server->resourceTypeMapping['Sabre_CardDAV_IAddressBook']);
|
|
|
|
$this->assertTrue(in_array('addressbook', $this->plugin->getFeatures()));
|
|
|
|
}
|
|
|
|
function testSupportedReportSet() {
|
|
|
|
$this->assertEquals(array(
|
|
'{' . Sabre_CardDAV_Plugin::NS_CARDDAV . '}addressbook-multiget',
|
|
'{' . Sabre_CardDAV_Plugin::NS_CARDDAV . '}addressbook-query',
|
|
), $this->plugin->getSupportedReportSet('addressbooks/user1/book1'));
|
|
|
|
}
|
|
|
|
function testSupportedReportSetEmpty() {
|
|
|
|
$this->assertEquals(array(
|
|
), $this->plugin->getSupportedReportSet(''));
|
|
|
|
}
|
|
|
|
function testAddressBookHomeSet() {
|
|
|
|
$result = $this->server->getProperties('principals/user1', array('{' . Sabre_CardDAV_Plugin::NS_CARDDAV . '}addressbook-home-set'));
|
|
|
|
$this->assertEquals(1, count($result));
|
|
$this->assertTrue(isset($result['{' . Sabre_CardDAV_Plugin::NS_CARDDAV . '}addressbook-home-set']));
|
|
$this->assertEquals('addressbooks/user1/', $result['{' . Sabre_CardDAV_Plugin::NS_CARDDAV . '}addressbook-home-set']->getHref());
|
|
|
|
}
|
|
|
|
function testMeCardTest() {
|
|
|
|
$result = $this->server->getProperties(
|
|
'addressbooks/user1',
|
|
array(
|
|
'{http://calendarserver.org/ns/}me-card',
|
|
)
|
|
);
|
|
|
|
$this->assertEquals(
|
|
array(
|
|
'{http://calendarserver.org/ns/}me-card' =>
|
|
new Sabre_DAV_Property_Href('addressbooks/user1/book1/vcard1.vcf')
|
|
),
|
|
$result
|
|
);
|
|
|
|
}
|
|
|
|
function testDirectoryGateway() {
|
|
|
|
$result = $this->server->getProperties('principals/user1', array('{' . Sabre_CardDAV_Plugin::NS_CARDDAV . '}directory-gateway'));
|
|
|
|
$this->assertEquals(1, count($result));
|
|
$this->assertTrue(isset($result['{' . Sabre_CardDAV_Plugin::NS_CARDDAV . '}directory-gateway']));
|
|
$this->assertEquals(array('directory'), $result['{' . Sabre_CardDAV_Plugin::NS_CARDDAV . '}directory-gateway']->getHrefs());
|
|
|
|
}
|
|
|
|
function testReportPassThrough() {
|
|
|
|
$this->assertNull($this->plugin->report('{DAV:}foo', new DomDocument()));
|
|
|
|
}
|
|
|
|
function testHTMLActionsPanel() {
|
|
|
|
$output = '';
|
|
$r = $this->server->broadcastEvent('onHTMLActionsPanel', array($this->server->tree->getNodeForPath('addressbooks/user1'), &$output));
|
|
$this->assertFalse($r);
|
|
|
|
$this->assertTrue(!!strpos($output,'Display name'));
|
|
|
|
}
|
|
|
|
function testBrowserPostAction() {
|
|
|
|
$r = $this->server->broadcastEvent('onBrowserPostAction', array('addressbooks/user1', 'mkaddressbook', array(
|
|
'name' => 'NEWADDRESSBOOK',
|
|
'{DAV:}displayname' => 'foo',
|
|
)));
|
|
$this->assertFalse($r);
|
|
|
|
$addressbooks = $this->backend->getAddressBooksforUser('principals/user1');
|
|
$this->assertEquals(2, count($addressbooks));
|
|
|
|
$newAddressBook = null;
|
|
foreach($addressbooks as $addressbook) {
|
|
if ($addressbook['uri'] === 'NEWADDRESSBOOK') {
|
|
$newAddressBook = $addressbook;
|
|
break;
|
|
}
|
|
}
|
|
if (!$newAddressBook)
|
|
$this->fail('Could not find newly created addressbook');
|
|
|
|
}
|
|
|
|
function testUpdatePropertiesMeCard() {
|
|
|
|
$result = $this->server->updateProperties('addressbooks/user1', array(
|
|
'{http://calendarserver.org/ns/}me-card' => new Sabre_DAV_Property_Href('/addressbooks/user1/book1/vcard2',true),
|
|
));
|
|
|
|
$this->assertEquals(
|
|
array(
|
|
'href' => 'addressbooks/user1',
|
|
200 => array(
|
|
'{http://calendarserver.org/ns/}me-card' => null,
|
|
),
|
|
),
|
|
$result
|
|
);
|
|
|
|
}
|
|
|
|
function testUpdatePropertiesMeCardBadValue() {
|
|
|
|
$result = $this->server->updateProperties('addressbooks/user1', array(
|
|
'{http://calendarserver.org/ns/}me-card' => new Sabre_DAV_Property_HrefList(array()),
|
|
));
|
|
|
|
$this->assertEquals(
|
|
array(
|
|
'href' => 'addressbooks/user1',
|
|
400 => array(
|
|
'{http://calendarserver.org/ns/}me-card' => null,
|
|
),
|
|
),
|
|
$result
|
|
);
|
|
|
|
}
|
|
}
|