123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arne Hamann <kontakt+github@arne.email>
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Björn Schießle <bjoern@schiessle.org>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author John Molakvoæ <skjnldsv@protonmail.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Thomas Citharel <nextcloud@tcit.fr>
- * @author Thomas Müller <thomas.mueller@tmit.eu>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OCA\DAV\Tests\unit\CardDAV;
- use OC\KnownUser\KnownUserService;
- use OCA\DAV\CalDAV\Proxy\ProxyMapper;
- use OCA\DAV\CardDAV\AddressBook;
- use OCA\DAV\CardDAV\CardDavBackend;
- use OCA\DAV\CardDAV\Sharing\Backend;
- use OCA\DAV\CardDAV\Sharing\Service;
- use OCA\DAV\Connector\Sabre\Principal;
- use OCA\DAV\DAV\Sharing\SharingMapper;
- use OCP\Accounts\IAccountManager;
- use OCP\App\IAppManager;
- use OCP\DB\QueryBuilder\IQueryBuilder;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\ICacheFactory;
- use OCP\IConfig;
- use OCP\IDBConnection;
- use OCP\IGroupManager;
- use OCP\IL10N;
- use OCP\IUserManager;
- use OCP\IUserSession;
- use OCP\L10N\IFactory;
- use OCP\Share\IManager as ShareManager;
- use Psr\Log\LoggerInterface;
- use Sabre\DAV\Exception\BadRequest;
- use Sabre\DAV\PropPatch;
- use Sabre\VObject\Component\VCard;
- use Sabre\VObject\Property\Text;
- use Test\TestCase;
- use function time;
- /**
- * Class CardDavBackendTest
- *
- * @group DB
- *
- * @package OCA\DAV\Tests\unit\CardDAV
- */
- class CardDavBackendTest extends TestCase {
- /** @var CardDavBackend */
- private $backend;
- /** @var Principal | \PHPUnit\Framework\MockObject\MockObject */
- private $principal;
- /** @var IUserManager|\PHPUnit\Framework\MockObject\MockObject */
- private $userManager;
- /** @var IGroupManager|\PHPUnit\Framework\MockObject\MockObject */
- private $groupManager;
- /** @var IEventDispatcher|MockObject */
- private $dispatcher;
- private Backend $sharingBackend;
- /** @var IDBConnection */
- private $db;
- /** @var string */
- private $dbCardsTable = 'cards';
- /** @var string */
- private $dbCardsPropertiesTable = 'cards_properties';
- public const UNIT_TEST_USER = 'principals/users/carddav-unit-test';
- public const UNIT_TEST_USER1 = 'principals/users/carddav-unit-test1';
- public const UNIT_TEST_GROUP = 'principals/groups/carddav-unit-test-group';
- private $vcardTest0 = 'BEGIN:VCARD'.PHP_EOL.
- 'VERSION:3.0'.PHP_EOL.
- 'PRODID:-//Sabre//Sabre VObject 4.1.2//EN'.PHP_EOL.
- 'UID:Test'.PHP_EOL.
- 'FN:Test'.PHP_EOL.
- 'N:Test;;;;'.PHP_EOL.
- 'END:VCARD';
- private $vcardTest1 = 'BEGIN:VCARD'.PHP_EOL.
- 'VERSION:3.0'.PHP_EOL.
- 'PRODID:-//Sabre//Sabre VObject 4.1.2//EN'.PHP_EOL.
- 'UID:Test2'.PHP_EOL.
- 'FN:Test2'.PHP_EOL.
- 'N:Test2;;;;'.PHP_EOL.
- 'END:VCARD';
- private $vcardTest2 = 'BEGIN:VCARD'.PHP_EOL.
- 'VERSION:3.0'.PHP_EOL.
- 'PRODID:-//Sabre//Sabre VObject 4.1.2//EN'.PHP_EOL.
- 'UID:Test3'.PHP_EOL.
- 'FN:Test3'.PHP_EOL.
- 'N:Test3;;;;'.PHP_EOL.
- 'END:VCARD';
- private $vcardTestNoUID = 'BEGIN:VCARD'.PHP_EOL.
- 'VERSION:3.0'.PHP_EOL.
- 'PRODID:-//Sabre//Sabre VObject 4.1.2//EN'.PHP_EOL.
- 'FN:TestNoUID'.PHP_EOL.
- 'N:TestNoUID;;;;'.PHP_EOL.
- 'END:VCARD';
- protected function setUp(): void {
- parent::setUp();
- $this->userManager = $this->createMock(IUserManager::class);
- $this->groupManager = $this->createMock(IGroupManager::class);
- $this->principal = $this->getMockBuilder(Principal::class)
- ->setConstructorArgs([
- $this->userManager,
- $this->groupManager,
- $this->createMock(IAccountManager::class),
- $this->createMock(ShareManager::class),
- $this->createMock(IUserSession::class),
- $this->createMock(IAppManager::class),
- $this->createMock(ProxyMapper::class),
- $this->createMock(KnownUserService::class),
- $this->createMock(IConfig::class),
- $this->createMock(IFactory::class)
- ])
- ->setMethods(['getPrincipalByPath', 'getGroupMembership', 'findByUri'])
- ->getMock();
- $this->principal->method('getPrincipalByPath')
- ->willReturn([
- 'uri' => 'principals/best-friend',
- '{DAV:}displayname' => 'User\'s displayname',
- ]);
- $this->principal->method('getGroupMembership')
- ->withAnyParameters()
- ->willReturn([self::UNIT_TEST_GROUP]);
- $this->dispatcher = $this->createMock(IEventDispatcher::class);
- $this->db = \OC::$server->getDatabaseConnection();
- $this->sharingBackend = new Backend($this->userManager,
- $this->groupManager,
- $this->principal,
- $this->createMock(ICacheFactory::class),
- new Service(new SharingMapper($this->db)),
- $this->createMock(LoggerInterface::class)
- );
- $this->backend = new CardDavBackend($this->db,
- $this->principal,
- $this->userManager,
- $this->dispatcher,
- $this->sharingBackend,
- );
- // start every test with a empty cards_properties and cards table
- $query = $this->db->getQueryBuilder();
- $query->delete('cards_properties')->execute();
- $query = $this->db->getQueryBuilder();
- $query->delete('cards')->execute();
- $this->tearDown();
- }
- protected function tearDown(): void {
- parent::tearDown();
- if (is_null($this->backend)) {
- return;
- }
- $this->principal->method('getGroupMembership')
- ->withAnyParameters()
- ->willReturn([self::UNIT_TEST_GROUP]);
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER);
- foreach ($books as $book) {
- $this->backend->deleteAddressBook($book['id']);
- }
- }
- public function testAddressBookOperations(): void {
- // create a new address book
- $this->backend->createAddressBook(self::UNIT_TEST_USER, 'Example', []);
- $this->assertEquals(1, $this->backend->getAddressBooksForUserCount(self::UNIT_TEST_USER));
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER);
- $this->assertEquals(1, count($books));
- $this->assertEquals('Example', $books[0]['{DAV:}displayname']);
- $this->assertEquals('User\'s displayname', $books[0]['{http://nextcloud.com/ns}owner-displayname']);
- // update its display name
- $patch = new PropPatch([
- '{DAV:}displayname' => 'Unit test',
- '{urn:ietf:params:xml:ns:carddav}addressbook-description' => 'Addressbook used for unit testing'
- ]);
- $this->backend->updateAddressBook($books[0]['id'], $patch);
- $patch->commit();
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER);
- $this->assertEquals(1, count($books));
- $this->assertEquals('Unit test', $books[0]['{DAV:}displayname']);
- $this->assertEquals('Addressbook used for unit testing', $books[0]['{urn:ietf:params:xml:ns:carddav}addressbook-description']);
- // delete the address book
- $this->backend->deleteAddressBook($books[0]['id']);
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER);
- $this->assertEquals(0, count($books));
- }
- public function testAddressBookSharing(): void {
- $this->userManager->expects($this->any())
- ->method('userExists')
- ->willReturn(true);
- $this->groupManager->expects($this->any())
- ->method('groupExists')
- ->willReturn(true);
- $this->principal->expects(self::atLeastOnce())
- ->method('findByUri')
- ->willReturnOnConsecutiveCalls(self::UNIT_TEST_USER1, self::UNIT_TEST_GROUP);
- $this->backend->createAddressBook(self::UNIT_TEST_USER, 'Example', []);
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER);
- $this->assertEquals(1, count($books));
- $l = $this->createMock(IL10N::class);
- $addressBook = new AddressBook($this->backend, $books[0], $l);
- $this->backend->updateShares($addressBook, [
- [
- 'href' => 'principal:' . self::UNIT_TEST_USER1,
- ],
- [
- 'href' => 'principal:' . self::UNIT_TEST_GROUP,
- ]
- ], []);
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER1);
- $this->assertEquals(1, count($books));
- // delete the address book
- $this->backend->deleteAddressBook($books[0]['id']);
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER);
- $this->assertEquals(0, count($books));
- }
- public function testCardOperations(): void {
- /** @var CardDavBackend | \PHPUnit\Framework\MockObject\MockObject $backend */
- $backend = $this->getMockBuilder(CardDavBackend::class)
- ->setConstructorArgs([$this->db, $this->principal, $this->userManager, $this->dispatcher, $this->sharingBackend])
- ->onlyMethods(['updateProperties', 'purgeProperties'])->getMock();
- // create a new address book
- $backend->createAddressBook(self::UNIT_TEST_USER, 'Example', []);
- $books = $backend->getAddressBooksForUser(self::UNIT_TEST_USER);
- $this->assertEquals(1, count($books));
- $bookId = $books[0]['id'];
- $uri = $this->getUniqueID('card');
- // updateProperties is expected twice, once for createCard and once for updateCard
- $backend->expects($this->exactly(2))
- ->method('updateProperties')
- ->withConsecutive(
- [$bookId, $uri, $this->vcardTest0],
- [$bookId, $uri, $this->vcardTest1],
- );
- // Expect event
- $this->dispatcher
- ->expects($this->exactly(3))
- ->method('dispatchTyped');
- // create a card
- $backend->createCard($bookId, $uri, $this->vcardTest0);
- // get all the cards
- $cards = $backend->getCards($bookId);
- $this->assertEquals(1, count($cards));
- $this->assertEquals($this->vcardTest0, $cards[0]['carddata']);
- // get the cards
- $card = $backend->getCard($bookId, $uri);
- $this->assertNotNull($card);
- $this->assertArrayHasKey('id', $card);
- $this->assertArrayHasKey('uri', $card);
- $this->assertArrayHasKey('lastmodified', $card);
- $this->assertArrayHasKey('etag', $card);
- $this->assertArrayHasKey('size', $card);
- $this->assertEquals($this->vcardTest0, $card['carddata']);
- // update the card
- $backend->updateCard($bookId, $uri, $this->vcardTest1);
- $card = $backend->getCard($bookId, $uri);
- $this->assertEquals($this->vcardTest1, $card['carddata']);
- // delete the card
- $backend->expects($this->once())->method('purgeProperties')->with($bookId, $card['id']);
- $backend->deleteCard($bookId, $uri);
- $cards = $backend->getCards($bookId);
- $this->assertEquals(0, count($cards));
- }
- public function testMultiCard(): void {
- $this->backend = $this->getMockBuilder(CardDavBackend::class)
- ->setConstructorArgs([$this->db, $this->principal, $this->userManager, $this->dispatcher, $this->sharingBackend])
- ->setMethods(['updateProperties'])->getMock();
- // create a new address book
- $this->backend->createAddressBook(self::UNIT_TEST_USER, 'Example', []);
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER);
- $this->assertEquals(1, count($books));
- $bookId = $books[0]['id'];
- // create a card
- $uri0 = self::getUniqueID('card');
- $this->backend->createCard($bookId, $uri0, $this->vcardTest0);
- $uri1 = self::getUniqueID('card');
- $this->backend->createCard($bookId, $uri1, $this->vcardTest1);
- $uri2 = self::getUniqueID('card');
- $this->backend->createCard($bookId, $uri2, $this->vcardTest2);
- // get all the cards
- $cards = $this->backend->getCards($bookId);
- $this->assertEquals(3, count($cards));
- usort($cards, function ($a, $b) {
- return $a['id'] < $b['id'] ? -1 : 1;
- });
- $this->assertEquals($this->vcardTest0, $cards[0]['carddata']);
- $this->assertEquals($this->vcardTest1, $cards[1]['carddata']);
- $this->assertEquals($this->vcardTest2, $cards[2]['carddata']);
- // get the cards 1 & 2 (not 0)
- $cards = $this->backend->getMultipleCards($bookId, [$uri1, $uri2]);
- $this->assertEquals(2, count($cards));
- usort($cards, function ($a, $b) {
- return $a['id'] < $b['id'] ? -1 : 1;
- });
- foreach ($cards as $index => $card) {
- $this->assertArrayHasKey('id', $card);
- $this->assertArrayHasKey('uri', $card);
- $this->assertArrayHasKey('lastmodified', $card);
- $this->assertArrayHasKey('etag', $card);
- $this->assertArrayHasKey('size', $card);
- $this->assertEquals($this->{ 'vcardTest'.($index + 1) }, $card['carddata']);
- }
- // delete the card
- $this->backend->deleteCard($bookId, $uri0);
- $this->backend->deleteCard($bookId, $uri1);
- $this->backend->deleteCard($bookId, $uri2);
- $cards = $this->backend->getCards($bookId);
- $this->assertEquals(0, count($cards));
- }
- public function testMultipleUIDOnDifferentAddressbooks(): void {
- $this->backend = $this->getMockBuilder(CardDavBackend::class)
- ->setConstructorArgs([$this->db, $this->principal, $this->userManager, $this->dispatcher, $this->sharingBackend])
- ->onlyMethods(['updateProperties'])->getMock();
- // create 2 new address books
- $this->backend->createAddressBook(self::UNIT_TEST_USER, 'Example', []);
- $this->backend->createAddressBook(self::UNIT_TEST_USER, 'Example2', []);
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER);
- $this->assertEquals(2, count($books));
- $bookId0 = $books[0]['id'];
- $bookId1 = $books[1]['id'];
- // create a card
- $uri0 = $this->getUniqueID('card');
- $this->backend->createCard($bookId0, $uri0, $this->vcardTest0);
- // create another card with same uid but in second address book
- $uri1 = $this->getUniqueID('card');
- $this->backend->createCard($bookId1, $uri1, $this->vcardTest0);
- }
- public function testMultipleUIDDenied(): void {
- $this->backend = $this->getMockBuilder(CardDavBackend::class)
- ->setConstructorArgs([$this->db, $this->principal, $this->userManager, $this->dispatcher, $this->sharingBackend])
- ->setMethods(['updateProperties'])->getMock();
- // create a new address book
- $this->backend->createAddressBook(self::UNIT_TEST_USER, 'Example', []);
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER);
- $this->assertEquals(1, count($books));
- $bookId = $books[0]['id'];
- // create a card
- $uri0 = $this->getUniqueID('card');
- $this->backend->createCard($bookId, $uri0, $this->vcardTest0);
- // create another card with same uid
- $uri1 = $this->getUniqueID('card');
- $this->expectException(BadRequest::class);
- $test = $this->backend->createCard($bookId, $uri1, $this->vcardTest0);
- }
- public function testNoValidUID(): void {
- $this->backend = $this->getMockBuilder(CardDavBackend::class)
- ->setConstructorArgs([$this->db, $this->principal, $this->userManager, $this->dispatcher, $this->sharingBackend])
- ->setMethods(['updateProperties'])->getMock();
- // create a new address book
- $this->backend->createAddressBook(self::UNIT_TEST_USER, 'Example', []);
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER);
- $this->assertEquals(1, count($books));
- $bookId = $books[0]['id'];
- // create a card without uid
- $uri1 = $this->getUniqueID('card');
- $this->expectException(BadRequest::class);
- $test = $this->backend->createCard($bookId, $uri1, $this->vcardTestNoUID);
- }
- public function testDeleteWithoutCard(): void {
- $this->backend = $this->getMockBuilder(CardDavBackend::class)
- ->setConstructorArgs([$this->db, $this->principal, $this->userManager, $this->dispatcher, $this->sharingBackend])
- ->onlyMethods([
- 'getCardId',
- 'addChange',
- 'purgeProperties',
- 'updateProperties',
- ])
- ->getMock();
- // create a new address book
- $this->backend->createAddressBook(self::UNIT_TEST_USER, 'Example', []);
- $books = $this->backend->getUsersOwnAddressBooks(self::UNIT_TEST_USER);
- $this->assertEquals(1, count($books));
- $bookId = $books[0]['id'];
- $uri = $this->getUniqueID('card');
- // create a new address book
- $this->backend->expects($this->once())
- ->method('getCardId')
- ->with($bookId, $uri)
- ->willThrowException(new \InvalidArgumentException());
- $this->backend->expects($this->exactly(2))
- ->method('addChange')
- ->withConsecutive(
- [$bookId, $uri, 1],
- [$bookId, $uri, 3]
- );
- $this->backend->expects($this->never())
- ->method('purgeProperties');
- // create a card
- $this->backend->createCard($bookId, $uri, $this->vcardTest0);
- // delete the card
- $this->assertTrue($this->backend->deleteCard($bookId, $uri));
- }
- public function testSyncSupport(): void {
- $this->backend = $this->getMockBuilder(CardDavBackend::class)
- ->setConstructorArgs([$this->db, $this->principal, $this->userManager, $this->dispatcher, $this->sharingBackend])
- ->setMethods(['updateProperties'])->getMock();
- // create a new address book
- $this->backend->createAddressBook(self::UNIT_TEST_USER, 'Example', []);
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER);
- $this->assertEquals(1, count($books));
- $bookId = $books[0]['id'];
- // fist call without synctoken
- $changes = $this->backend->getChangesForAddressBook($bookId, '', 1);
- $syncToken = $changes['syncToken'];
- // add a change
- $uri0 = $this->getUniqueID('card');
- $this->backend->createCard($bookId, $uri0, $this->vcardTest0);
- // look for changes
- $changes = $this->backend->getChangesForAddressBook($bookId, $syncToken, 1);
- $this->assertEquals($uri0, $changes['added'][0]);
- }
- public function testSharing(): void {
- $this->userManager->expects($this->any())
- ->method('userExists')
- ->willReturn(true);
- $this->groupManager->expects($this->any())
- ->method('groupExists')
- ->willReturn(true);
- $this->principal->expects(self::any())
- ->method('findByUri')
- ->willReturn(self::UNIT_TEST_USER1);
- $this->backend->createAddressBook(self::UNIT_TEST_USER, 'Example', []);
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER);
- $this->assertEquals(1, count($books));
- $l = $this->createMock(IL10N::class);
- $exampleBook = new AddressBook($this->backend, $books[0], $l);
- $this->backend->updateShares($exampleBook, [['href' => 'principal:' . self::UNIT_TEST_USER1]], []);
- $shares = $this->backend->getShares($exampleBook->getResourceId());
- $this->assertEquals(1, count($shares));
- // adding the same sharee again has no effect
- $this->backend->updateShares($exampleBook, [['href' => 'principal:' . self::UNIT_TEST_USER1]], []);
- $shares = $this->backend->getShares($exampleBook->getResourceId());
- $this->assertEquals(1, count($shares));
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER1);
- $this->assertEquals(1, count($books));
- $this->backend->updateShares($exampleBook, [], ['principal:' . self::UNIT_TEST_USER1]);
- $shares = $this->backend->getShares($exampleBook->getResourceId());
- $this->assertEquals(0, count($shares));
- $books = $this->backend->getAddressBooksForUser(self::UNIT_TEST_USER1);
- $this->assertEquals(0, count($books));
- }
- public function testUpdateProperties(): void {
- $bookId = 42;
- $cardUri = 'card-uri';
- $cardId = 2;
- $backend = $this->getMockBuilder(CardDavBackend::class)
- ->setConstructorArgs([$this->db, $this->principal, $this->userManager, $this->dispatcher, $this->sharingBackend])
- ->onlyMethods(['getCardId'])->getMock();
- $backend->expects($this->any())->method('getCardId')->willReturn($cardId);
- // add properties for new vCard
- $vCard = new VCard();
- $vCard->UID = $cardUri;
- $vCard->FN = 'John Doe';
- $this->invokePrivate($backend, 'updateProperties', [$bookId, $cardUri, $vCard->serialize()]);
- $query = $this->db->getQueryBuilder();
- $query->select('*')
- ->from('cards_properties');
- $qResult = $query->execute();
- $result = $qResult->fetchAll();
- $qResult->closeCursor();
- $this->assertSame(2, count($result));
- $this->assertSame('UID', $result[0]['name']);
- $this->assertSame($cardUri, $result[0]['value']);
- $this->assertSame($bookId, (int)$result[0]['addressbookid']);
- $this->assertSame($cardId, (int)$result[0]['cardid']);
- $this->assertSame('FN', $result[1]['name']);
- $this->assertSame('John Doe', $result[1]['value']);
- $this->assertSame($bookId, (int)$result[1]['addressbookid']);
- $this->assertSame($cardId, (int)$result[1]['cardid']);
- // update properties for existing vCard
- $vCard = new VCard();
- $vCard->UID = $cardUri;
- $this->invokePrivate($backend, 'updateProperties', [$bookId, $cardUri, $vCard->serialize()]);
- $query = $this->db->getQueryBuilder();
- $query->select('*')
- ->from('cards_properties');
- $qResult = $query->execute();
- $result = $qResult->fetchAll();
- $qResult->closeCursor();
- $this->assertSame(1, count($result));
- $this->assertSame('UID', $result[0]['name']);
- $this->assertSame($cardUri, $result[0]['value']);
- $this->assertSame($bookId, (int)$result[0]['addressbookid']);
- $this->assertSame($cardId, (int)$result[0]['cardid']);
- }
- public function testPurgeProperties(): void {
- $query = $this->db->getQueryBuilder();
- $query->insert('cards_properties')
- ->values(
- [
- 'addressbookid' => $query->createNamedParameter(1),
- 'cardid' => $query->createNamedParameter(1),
- 'name' => $query->createNamedParameter('name1'),
- 'value' => $query->createNamedParameter('value1'),
- 'preferred' => $query->createNamedParameter(0)
- ]
- );
- $query->execute();
- $query = $this->db->getQueryBuilder();
- $query->insert('cards_properties')
- ->values(
- [
- 'addressbookid' => $query->createNamedParameter(1),
- 'cardid' => $query->createNamedParameter(2),
- 'name' => $query->createNamedParameter('name2'),
- 'value' => $query->createNamedParameter('value2'),
- 'preferred' => $query->createNamedParameter(0)
- ]
- );
- $query->execute();
- $this->invokePrivate($this->backend, 'purgeProperties', [1, 1]);
- $query = $this->db->getQueryBuilder();
- $query->select('*')
- ->from('cards_properties');
- $qResult = $query->execute();
- $result = $qResult->fetchAll();
- $qResult->closeCursor();
- $this->assertSame(1, count($result));
- $this->assertSame(1, (int)$result[0]['addressbookid']);
- $this->assertSame(2, (int)$result[0]['cardid']);
- }
- public function testGetCardId(): void {
- $query = $this->db->getQueryBuilder();
- $query->insert('cards')
- ->values(
- [
- 'addressbookid' => $query->createNamedParameter(1),
- 'carddata' => $query->createNamedParameter(''),
- 'uri' => $query->createNamedParameter('uri'),
- 'lastmodified' => $query->createNamedParameter(4738743),
- 'etag' => $query->createNamedParameter('etag'),
- 'size' => $query->createNamedParameter(120)
- ]
- );
- $query->execute();
- $id = $query->getLastInsertId();
- $this->assertSame($id,
- $this->invokePrivate($this->backend, 'getCardId', [1, 'uri']));
- }
- public function testGetCardIdFailed(): void {
- $this->expectException(\InvalidArgumentException::class);
- $this->invokePrivate($this->backend, 'getCardId', [1, 'uri']);
- }
- /**
- * @dataProvider dataTestSearch
- *
- * @param string $pattern
- * @param array $properties
- * @param array $options
- * @param array $expected
- */
- public function testSearch($pattern, $properties, $options, $expected): void {
- /** @var VCard $vCards */
- $vCards = [];
- $vCards[0] = new VCard();
- $vCards[0]->add(new Text($vCards[0], 'UID', 'uid'));
- $vCards[0]->add(new Text($vCards[0], 'FN', 'John Doe'));
- $vCards[0]->add(new Text($vCards[0], 'CLOUD', 'john@nextcloud.com'));
- $vCards[1] = new VCard();
- $vCards[1]->add(new Text($vCards[1], 'UID', 'uid'));
- $vCards[1]->add(new Text($vCards[1], 'FN', 'John M. Doe'));
- $vCards[2] = new VCard();
- $vCards[2]->add(new Text($vCards[2], 'UID', 'uid'));
- $vCards[2]->add(new Text($vCards[2], 'FN', 'find without options'));
- $vCards[2]->add(new Text($vCards[2], 'CLOUD', 'peter_pan@nextcloud.com'));
- $vCardIds = [];
- $query = $this->db->getQueryBuilder();
- for ($i = 0; $i < 3; $i++) {
- $query->insert($this->dbCardsTable)
- ->values(
- [
- 'addressbookid' => $query->createNamedParameter(0),
- 'carddata' => $query->createNamedParameter($vCards[$i]->serialize(), IQueryBuilder::PARAM_LOB),
- 'uri' => $query->createNamedParameter('uri' . $i),
- 'lastmodified' => $query->createNamedParameter(time()),
- 'etag' => $query->createNamedParameter('etag' . $i),
- 'size' => $query->createNamedParameter(120),
- ]
- );
- $query->execute();
- $vCardIds[] = $query->getLastInsertId();
- }
- $query->insert($this->dbCardsPropertiesTable)
- ->values(
- [
- 'addressbookid' => $query->createNamedParameter(0),
- 'cardid' => $query->createNamedParameter($vCardIds[0]),
- 'name' => $query->createNamedParameter('FN'),
- 'value' => $query->createNamedParameter('John Doe'),
- 'preferred' => $query->createNamedParameter(0)
- ]
- );
- $query->execute();
- $query->insert($this->dbCardsPropertiesTable)
- ->values(
- [
- 'addressbookid' => $query->createNamedParameter(0),
- 'cardid' => $query->createNamedParameter($vCardIds[0]),
- 'name' => $query->createNamedParameter('CLOUD'),
- 'value' => $query->createNamedParameter('John@nextcloud.com'),
- 'preferred' => $query->createNamedParameter(0)
- ]
- );
- $query->execute();
- $query->insert($this->dbCardsPropertiesTable)
- ->values(
- [
- 'addressbookid' => $query->createNamedParameter(0),
- 'cardid' => $query->createNamedParameter($vCardIds[1]),
- 'name' => $query->createNamedParameter('FN'),
- 'value' => $query->createNamedParameter('John M. Doe'),
- 'preferred' => $query->createNamedParameter(0)
- ]
- );
- $query->execute();
- $query->insert($this->dbCardsPropertiesTable)
- ->values(
- [
- 'addressbookid' => $query->createNamedParameter(0),
- 'cardid' => $query->createNamedParameter($vCardIds[2]),
- 'name' => $query->createNamedParameter('FN'),
- 'value' => $query->createNamedParameter('find without options'),
- 'preferred' => $query->createNamedParameter(0)
- ]
- );
- $query->execute();
- $query->insert($this->dbCardsPropertiesTable)
- ->values(
- [
- 'addressbookid' => $query->createNamedParameter(0),
- 'cardid' => $query->createNamedParameter($vCardIds[2]),
- 'name' => $query->createNamedParameter('CLOUD'),
- 'value' => $query->createNamedParameter('peter_pan@nextcloud.com'),
- 'preferred' => $query->createNamedParameter(0)
- ]
- );
- $query->execute();
- $result = $this->backend->search(0, $pattern, $properties, $options);
- // check result
- $this->assertSame(count($expected), count($result));
- $found = [];
- foreach ($result as $r) {
- foreach ($expected as $exp) {
- if ($r['uri'] === $exp[0] && strpos($r['carddata'], $exp[1]) > 0) {
- $found[$exp[1]] = true;
- break;
- }
- }
- }
- $this->assertSame(count($expected), count($found));
- }
- public function dataTestSearch() {
- return [
- ['John', ['FN'], [], [['uri0', 'John Doe'], ['uri1', 'John M. Doe']]],
- ['M. Doe', ['FN'], [], [['uri1', 'John M. Doe']]],
- ['Do', ['FN'], [], [['uri0', 'John Doe'], ['uri1', 'John M. Doe']]],
- 'check if duplicates are handled correctly' => ['John', ['FN', 'CLOUD'], [], [['uri0', 'John Doe'], ['uri1', 'John M. Doe']]],
- 'case insensitive' => ['john', ['FN'], [], [['uri0', 'John Doe'], ['uri1', 'John M. Doe']]],
- 'limit' => ['john', ['FN'], ['limit' => 1], [['uri0', 'John Doe']]],
- 'limit and offset' => ['john', ['FN'], ['limit' => 1, 'offset' => 1], [['uri1', 'John M. Doe']]],
- 'find "_" escaped' => ['_', ['CLOUD'], [], [['uri2', 'find without options']]],
- 'find not empty CLOUD' => ['%_%', ['CLOUD'], ['escape_like_param' => false], [['uri0', 'John Doe'], ['uri2', 'find without options']]],
- ];
- }
- public function testGetCardUri(): void {
- $query = $this->db->getQueryBuilder();
- $query->insert($this->dbCardsTable)
- ->values(
- [
- 'addressbookid' => $query->createNamedParameter(1),
- 'carddata' => $query->createNamedParameter('carddata', IQueryBuilder::PARAM_LOB),
- 'uri' => $query->createNamedParameter('uri'),
- 'lastmodified' => $query->createNamedParameter(5489543),
- 'etag' => $query->createNamedParameter('etag'),
- 'size' => $query->createNamedParameter(120),
- ]
- );
- $query->execute();
- $id = $query->getLastInsertId();
- $this->assertSame('uri', $this->backend->getCardUri($id));
- }
- public function testGetCardUriFailed(): void {
- $this->expectException(\InvalidArgumentException::class);
- $this->backend->getCardUri(1);
- }
- public function testGetContact(): void {
- $query = $this->db->getQueryBuilder();
- for ($i = 0; $i < 2; $i++) {
- $query->insert($this->dbCardsTable)
- ->values(
- [
- 'addressbookid' => $query->createNamedParameter($i),
- 'carddata' => $query->createNamedParameter('carddata' . $i, IQueryBuilder::PARAM_LOB),
- 'uri' => $query->createNamedParameter('uri' . $i),
- 'lastmodified' => $query->createNamedParameter(5489543),
- 'etag' => $query->createNamedParameter('etag' . $i),
- 'size' => $query->createNamedParameter(120),
- ]
- );
- $query->execute();
- }
- $result = $this->backend->getContact(0, 'uri0');
- $this->assertSame(8, count($result));
- $this->assertSame(0, (int)$result['addressbookid']);
- $this->assertSame('uri0', $result['uri']);
- $this->assertSame(5489543, (int)$result['lastmodified']);
- $this->assertSame('"etag0"', $result['etag']);
- $this->assertSame(120, (int)$result['size']);
- // this shouldn't return any result because 'uri1' is in address book 1
- // see https://github.com/nextcloud/server/issues/229
- $result = $this->backend->getContact(0, 'uri1');
- $this->assertEmpty($result);
- }
- public function testGetContactFail(): void {
- $this->assertEmpty($this->backend->getContact(0, 'uri'));
- }
- public function testCollectCardProperties(): void {
- $query = $this->db->getQueryBuilder();
- $query->insert($this->dbCardsPropertiesTable)
- ->values(
- [
- 'addressbookid' => $query->createNamedParameter(666),
- 'cardid' => $query->createNamedParameter(777),
- 'name' => $query->createNamedParameter('FN'),
- 'value' => $query->createNamedParameter('John Doe'),
- 'preferred' => $query->createNamedParameter(0)
- ]
- )
- ->execute();
- $result = $this->backend->collectCardProperties(666, 'FN');
- $this->assertEquals(['John Doe'], $result);
- }
- /**
- * @throws \OCP\DB\Exception
- * @throws \Sabre\DAV\Exception\BadRequest
- */
- public function testPruneOutdatedSyncTokens(): void {
- $addressBookId = $this->backend->createAddressBook(self::UNIT_TEST_USER, 'Example', []);
- $changes = $this->backend->getChangesForAddressBook($addressBookId, '', 1);
- $syncToken = $changes['syncToken'];
- $uri = $this->getUniqueID('card');
- $this->backend->createCard($addressBookId, $uri, $this->vcardTest0);
- $this->backend->updateCard($addressBookId, $uri, $this->vcardTest1);
- // Do not delete anything if week data as old as ts=0
- $deleted = $this->backend->pruneOutdatedSyncTokens(0, 0);
- self::assertSame(0, $deleted);
- $deleted = $this->backend->pruneOutdatedSyncTokens(0, time());
- // At least one from the object creation and one from the object update
- $this->assertGreaterThanOrEqual(2, $deleted);
- $changes = $this->backend->getChangesForAddressBook($addressBookId, $syncToken, 1);
- $this->assertEmpty($changes['added']);
- $this->assertEmpty($changes['modified']);
- $this->assertEmpty($changes['deleted']);
- // Test that objects remain
- // Currently changes are empty
- $changes = $this->backend->getChangesForAddressBook($addressBookId, $syncToken, 100);
- $this->assertEquals(0, count($changes['added'] + $changes['modified'] + $changes['deleted']));
- // Create card
- $uri = $this->getUniqueID('card');
- $this->backend->createCard($addressBookId, $uri, $this->vcardTest0);
- // We now have one add
- $changes = $this->backend->getChangesForAddressBook($addressBookId, $syncToken, 100);
- $this->assertEquals(1, count($changes['added']));
- $this->assertEmpty($changes['modified']);
- $this->assertEmpty($changes['deleted']);
- // Update card
- $this->backend->updateCard($addressBookId, $uri, $this->vcardTest1);
- // One add, one modify, but shortened to modify
- $changes = $this->backend->getChangesForAddressBook($addressBookId, $syncToken, 100);
- $this->assertEmpty($changes['added']);
- $this->assertEquals(1, count($changes['modified']));
- $this->assertEmpty($changes['deleted']);
- // Delete all but last change
- $deleted = $this->backend->pruneOutdatedSyncTokens(1, time());
- $this->assertEquals(1, $deleted); // We had two changes before, now one
- // Only update should remain
- $changes = $this->backend->getChangesForAddressBook($addressBookId, $syncToken, 100);
- $this->assertEmpty($changes['added']);
- $this->assertEquals(1, count($changes['modified']));
- $this->assertEmpty($changes['deleted']);
- // Check that no crash occurs when prune is called without current changes
- $deleted = $this->backend->pruneOutdatedSyncTokens(1, time());
- }
- }
|