aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/tests/Sabre/CardDAV/AddressBookTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/sabre/dav/tests/Sabre/CardDAV/AddressBookTest.php')
-rw-r--r--vendor/sabre/dav/tests/Sabre/CardDAV/AddressBookTest.php171
1 files changed, 0 insertions, 171 deletions
diff --git a/vendor/sabre/dav/tests/Sabre/CardDAV/AddressBookTest.php b/vendor/sabre/dav/tests/Sabre/CardDAV/AddressBookTest.php
deleted file mode 100644
index e985c54ff..000000000
--- a/vendor/sabre/dav/tests/Sabre/CardDAV/AddressBookTest.php
+++ /dev/null
@@ -1,171 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-namespace Sabre\CardDAV;
-
-use Sabre\DAV\PropPatch;
-
-class AddressBookTest extends \PHPUnit\Framework\TestCase
-{
- use \Sabre\DAV\DbTestHelperTrait;
-
- /**
- * @var Sabre\CardDAV\AddressBook
- */
- protected $ab;
- protected $backend;
-
- public function setup(): void
- {
- $this->backend = new Backend\Mock();
- $this->ab = new AddressBook(
- $this->backend,
- [
- 'uri' => 'book1',
- 'id' => 'foo',
- '{DAV:}displayname' => 'd-name',
- 'principaluri' => 'principals/user1',
- ]
- );
- }
-
- public function testGetName()
- {
- $this->assertEquals('book1', $this->ab->getName());
- }
-
- public function testGetChild()
- {
- $card = $this->ab->getChild('card1');
- $this->assertInstanceOf('Sabre\\CardDAV\\Card', $card);
- $this->assertEquals('card1', $card->getName());
- }
-
- public function testGetChildNotFound()
- {
- $this->expectException('Sabre\DAV\Exception\NotFound');
- $card = $this->ab->getChild('card3');
- }
-
- public function testGetChildren()
- {
- $cards = $this->ab->getChildren();
- $this->assertEquals(2, count($cards));
-
- $this->assertEquals('card1', $cards[0]->getName());
- $this->assertEquals('card2', $cards[1]->getName());
- }
-
- public function testCreateDirectory()
- {
- $this->expectException('Sabre\DAV\Exception\MethodNotAllowed');
- $this->ab->createDirectory('name');
- }
-
- public function testCreateFile()
- {
- $file = fopen('php://memory', 'r+');
- fwrite($file, 'foo');
- rewind($file);
- $this->ab->createFile('card2', $file);
-
- $this->assertEquals('foo', $this->backend->cards['foo']['card2']);
- }
-
- public function testDelete()
- {
- $this->ab->delete();
- $this->assertEquals(1, count($this->backend->addressBooks));
- }
-
- public function testSetName()
- {
- $this->expectException('Sabre\DAV\Exception\MethodNotAllowed');
- $this->ab->setName('foo');
- }
-
- public function testGetLastModified()
- {
- $this->assertNull($this->ab->getLastModified());
- }
-
- public function testUpdateProperties()
- {
- $propPatch = new PropPatch([
- '{DAV:}displayname' => 'barrr',
- ]);
- $this->ab->propPatch($propPatch);
- $this->assertTrue($propPatch->commit());
-
- $this->assertEquals('barrr', $this->backend->addressBooks[0]['{DAV:}displayname']);
- }
-
- public function testGetProperties()
- {
- $props = $this->ab->getProperties(['{DAV:}displayname']);
- $this->assertEquals([
- '{DAV:}displayname' => 'd-name',
- ], $props);
- }
-
- public function testACLMethods()
- {
- $this->assertEquals('principals/user1', $this->ab->getOwner());
- $this->assertNull($this->ab->getGroup());
- $this->assertEquals([
- [
- 'privilege' => '{DAV:}all',
- 'principal' => '{DAV:}owner',
- 'protected' => true,
- ],
- ], $this->ab->getACL());
- }
-
- public function testSetACL()
- {
- $this->expectException('Sabre\DAV\Exception\Forbidden');
- $this->ab->setACL([]);
- }
-
- public function testGetSupportedPrivilegeSet()
- {
- $this->assertNull(
- $this->ab->getSupportedPrivilegeSet()
- );
- }
-
- public function testGetSyncTokenNoSyncSupport()
- {
- $this->assertNull($this->ab->getSyncToken());
- }
-
- public function testGetChangesNoSyncSupport()
- {
- $this->assertNull($this->ab->getChanges(1, null));
- }
-
- public function testGetSyncToken()
- {
- $this->driver = 'sqlite';
- $this->dropTables(['addressbooks', 'cards', 'addressbookchanges']);
- $this->createSchema('addressbooks');
- $backend = new Backend\PDO(
- $this->getPDO()
- );
- $ab = new AddressBook($backend, ['id' => 1, '{DAV:}sync-token' => 2]);
- $this->assertEquals(2, $ab->getSyncToken());
- }
-
- public function testGetSyncToken2()
- {
- $this->driver = 'sqlite';
- $this->dropTables(['addressbooks', 'cards', 'addressbookchanges']);
- $this->createSchema('addressbooks');
- $backend = new Backend\PDO(
- $this->getPDO()
- );
- $ab = new AddressBook($backend, ['id' => 1, '{http://sabredav.org/ns}sync-token' => 2]);
- $this->assertEquals(2, $ab->getSyncToken());
- }
-}