123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Björn Schießle <bjoern@schiessle.org>
- * @author call-me-matt <nextcloud@matthiasheinisch.de>
- * @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 Roeland Jago Douma <roeland@famdouma.nl>
- * @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 OCA\DAV\CardDAV\AddressBook;
- use OCA\DAV\CardDAV\AddressBookImpl;
- use OCA\DAV\CardDAV\CardDavBackend;
- use OCP\IURLGenerator;
- use Sabre\VObject\Component\VCard;
- use Sabre\VObject\Property\Text;
- //use Sabre\VObject\Property\;
- use Test\TestCase;
- class AddressBookImplTest extends TestCase {
- /** @var AddressBookImpl */
- private $addressBookImpl;
- /** @var array */
- private $addressBookInfo;
- /** @var AddressBook | \PHPUnit\Framework\MockObject\MockObject */
- private $addressBook;
- /** @var IURLGenerator | \PHPUnit\Framework\MockObject\MockObject */
- private $urlGenerator;
- /** @var CardDavBackend | \PHPUnit\Framework\MockObject\MockObject */
- private $backend;
- /** @var VCard | \PHPUnit\Framework\MockObject\MockObject */
- private $vCard;
- protected function setUp(): void {
- parent::setUp();
- $this->addressBookInfo = [
- 'id' => 42,
- 'uri' => 'system',
- 'principaluri' => 'principals/system/system',
- '{DAV:}displayname' => 'display name',
- ];
- $this->addressBook = $this->getMockBuilder(AddressBook::class)
- ->disableOriginalConstructor()->getMock();
- $this->backend = $this->getMockBuilder(CardDavBackend::class)
- ->disableOriginalConstructor()->getMock();
- $this->vCard = $this->createMock(VCard::class);
- $this->urlGenerator = $this->createMock(IURLGenerator::class);
- $this->addressBookImpl = new AddressBookImpl(
- $this->addressBook,
- $this->addressBookInfo,
- $this->backend,
- $this->urlGenerator
- );
- }
- public function testGetKey(): void {
- $this->assertSame($this->addressBookInfo['id'],
- $this->addressBookImpl->getKey());
- }
- public function testGetDisplayName(): void {
- $this->assertSame($this->addressBookInfo['{DAV:}displayname'],
- $this->addressBookImpl->getDisplayName());
- }
- public function testSearch(): void {
- /** @var \PHPUnit\Framework\MockObject\MockObject | AddressBookImpl $addressBookImpl */
- $addressBookImpl = $this->getMockBuilder(AddressBookImpl::class)
- ->setConstructorArgs(
- [
- $this->addressBook,
- $this->addressBookInfo,
- $this->backend,
- $this->urlGenerator,
- ]
- )
- ->setMethods(['vCard2Array', 'readCard'])
- ->getMock();
- $pattern = 'pattern';
- $searchProperties = 'properties';
- $this->backend->expects($this->once())->method('search')
- ->with($this->addressBookInfo['id'], $pattern, $searchProperties)
- ->willReturn(
- [
- ['uri' => 'foo.vcf', 'carddata' => 'cardData1'],
- ['uri' => 'bar.vcf', 'carddata' => 'cardData2']
- ]
- );
- $addressBookImpl->expects($this->exactly(2))->method('readCard')
- ->willReturn($this->vCard);
- $addressBookImpl->expects($this->exactly(2))->method('vCard2Array')
- ->withConsecutive(
- ['foo.vcf', $this->vCard],
- ['bar.vcf', $this->vCard]
- )->willReturn('vCard');
- $result = $addressBookImpl->search($pattern, $searchProperties, []);
- $this->assertTrue((is_array($result)));
- $this->assertSame(2, count($result));
- }
- /**
- * @dataProvider dataTestCreate
- *
- * @param array $properties
- */
- public function testCreate($properties): void {
- $uid = 'uid';
- /** @var \PHPUnit\Framework\MockObject\MockObject | AddressBookImpl $addressBookImpl */
- $addressBookImpl = $this->getMockBuilder(AddressBookImpl::class)
- ->setConstructorArgs(
- [
- $this->addressBook,
- $this->addressBookInfo,
- $this->backend,
- $this->urlGenerator,
- ]
- )
- ->setMethods(['vCard2Array', 'createUid', 'createEmptyVCard'])
- ->getMock();
- $expectedProperties = 0;
- foreach ($properties as $data) {
- if (is_string($data)) {
- $expectedProperties++;
- } else {
- $expectedProperties += count($data);
- }
- }
- $addressBookImpl->expects($this->once())->method('createUid')
- ->willReturn($uid);
- $addressBookImpl->expects($this->once())->method('createEmptyVCard')
- ->with($uid)->willReturn($this->vCard);
- $this->vCard->expects($this->exactly($expectedProperties))
- ->method('createProperty');
- $this->backend->expects($this->once())->method('createCard');
- $this->backend->expects($this->never())->method('updateCard');
- $this->backend->expects($this->never())->method('getCard');
- $addressBookImpl->expects($this->once())->method('vCard2Array')
- ->with('uid.vcf', $this->vCard)->willReturn(true);
- $this->assertTrue($addressBookImpl->createOrUpdate($properties));
- }
- public function dataTestCreate() {
- return [
- [[]],
- [['FN' => 'John Doe']],
- [['FN' => 'John Doe', 'EMAIL' => ['john@doe.cloud', 'john.doe@example.org']]],
- ];
- }
- public function testUpdate(): void {
- $uid = 'uid';
- $uri = 'bla.vcf';
- $properties = ['URI' => $uri, 'UID' => $uid, 'FN' => 'John Doe'];
- /** @var \PHPUnit\Framework\MockObject\MockObject | AddressBookImpl $addressBookImpl */
- $addressBookImpl = $this->getMockBuilder(AddressBookImpl::class)
- ->setConstructorArgs(
- [
- $this->addressBook,
- $this->addressBookInfo,
- $this->backend,
- $this->urlGenerator,
- ]
- )
- ->setMethods(['vCard2Array', 'createUid', 'createEmptyVCard', 'readCard'])
- ->getMock();
- $addressBookImpl->expects($this->never())->method('createUid');
- $addressBookImpl->expects($this->never())->method('createEmptyVCard');
- $this->backend->expects($this->once())->method('getCard')
- ->with($this->addressBookInfo['id'], $uri)
- ->willReturn(['carddata' => 'data']);
- $addressBookImpl->expects($this->once())->method('readCard')
- ->with('data')->willReturn($this->vCard);
- $this->vCard->expects($this->exactly(count($properties) - 1))
- ->method('createProperty');
- $this->backend->expects($this->never())->method('createCard');
- $this->backend->expects($this->once())->method('updateCard');
- $addressBookImpl->expects($this->once())->method('vCard2Array')
- ->with($uri, $this->vCard)->willReturn(true);
- $this->assertTrue($addressBookImpl->createOrUpdate($properties));
- }
- public function testUpdateWithTypes(): void {
- $uid = 'uid';
- $uri = 'bla.vcf';
- $properties = ['URI' => $uri, 'UID' => $uid, 'FN' => 'John Doe', 'ADR' => [['type' => 'HOME', 'value' => ';;street;city;;;country']]];
- $vCard = new vCard;
- $textProperty = $vCard->createProperty('KEY', 'value');
- /** @var \PHPUnit\Framework\MockObject\MockObject | AddressBookImpl $addressBookImpl */
- $addressBookImpl = $this->getMockBuilder(AddressBookImpl::class)
- ->setConstructorArgs(
- [
- $this->addressBook,
- $this->addressBookInfo,
- $this->backend,
- $this->urlGenerator,
- ]
- )
- ->setMethods(['vCard2Array', 'createUid', 'createEmptyVCard', 'readCard'])
- ->getMock();
- $this->backend->expects($this->once())->method('getCard')
- ->with($this->addressBookInfo['id'], $uri)
- ->willReturn(['carddata' => 'data']);
- $addressBookImpl->expects($this->once())->method('readCard')
- ->with('data')->willReturn($this->vCard);
- $this->vCard->method('createProperty')->willReturn($textProperty);
- $this->vCard->expects($this->exactly(count($properties) - 1))
- ->method('createProperty');
- $this->vCard->expects($this->once())->method('remove')
- ->with('ADR');
- $this->vCard->expects($this->once())->method('add');
- $addressBookImpl->createOrUpdate($properties);
- }
- /**
- * @dataProvider dataTestGetPermissions
- *
- * @param array $permissions
- * @param int $expected
- */
- public function testGetPermissions($permissions, $expected): void {
- $this->addressBook->expects($this->once())->method('getACL')
- ->willReturn($permissions);
- $this->assertSame($expected,
- $this->addressBookImpl->getPermissions()
- );
- }
- public function dataTestGetPermissions() {
- return [
- [[], 0],
- [[['privilege' => '{DAV:}read']], 1],
- [[['privilege' => '{DAV:}write']], 6],
- [[['privilege' => '{DAV:}all']], 31],
- [[['privilege' => '{DAV:}read'],['privilege' => '{DAV:}write']], 7],
- [[['privilege' => '{DAV:}read'],['privilege' => '{DAV:}all']], 31],
- [[['privilege' => '{DAV:}all'],['privilege' => '{DAV:}write']], 31],
- [[['privilege' => '{DAV:}read'],['privilege' => '{DAV:}write'],['privilege' => '{DAV:}all']], 31],
- [[['privilege' => '{DAV:}all'],['privilege' => '{DAV:}read'],['privilege' => '{DAV:}write']], 31],
- ];
- }
- public function testDelete(): void {
- $cardId = 1;
- $cardUri = 'cardUri';
- $this->backend->expects($this->once())->method('getCardUri')
- ->with($cardId)->willReturn($cardUri);
- $this->backend->expects($this->once())->method('deleteCard')
- ->with($this->addressBookInfo['id'], $cardUri)
- ->willReturn(true);
- $this->assertTrue($this->addressBookImpl->delete($cardId));
- }
- public function testReadCard(): void {
- $vCard = new VCard();
- $vCard->add(new Text($vCard, 'UID', 'uid'));
- $vCardSerialized = $vCard->serialize();
- $result = $this->invokePrivate($this->addressBookImpl, 'readCard', [$vCardSerialized]);
- $resultSerialized = $result->serialize();
- $this->assertSame($vCardSerialized, $resultSerialized);
- }
- public function testCreateUid(): void {
- /** @var \PHPUnit\Framework\MockObject\MockObject | AddressBookImpl $addressBookImpl */
- $addressBookImpl = $this->getMockBuilder(AddressBookImpl::class)
- ->setConstructorArgs(
- [
- $this->addressBook,
- $this->addressBookInfo,
- $this->backend,
- $this->urlGenerator,
- ]
- )
- ->setMethods(['getUid'])
- ->getMock();
- $addressBookImpl->expects($this->exactly(2))
- ->method('getUid')
- ->willReturnOnConsecutiveCalls(
- 'uid0',
- 'uid1',
- );
- // simulate that 'uid0' already exists, so the second uid will be returned
- $this->backend->expects($this->exactly(2))->method('getContact')
- ->willReturnCallback(
- function ($id, $uid) {
- return ($uid === 'uid0.vcf');
- }
- );
- $this->assertSame('uid1',
- $this->invokePrivate($addressBookImpl, 'createUid', [])
- );
- }
- public function testCreateEmptyVCard(): void {
- $uid = 'uid';
- $expectedVCard = new VCard();
- $expectedVCard->UID = $uid;
- $expectedVCardSerialized = $expectedVCard->serialize();
- $result = $this->invokePrivate($this->addressBookImpl, 'createEmptyVCard', [$uid]);
- $resultSerialized = $result->serialize();
- $this->assertSame($expectedVCardSerialized, $resultSerialized);
- }
- public function testVCard2Array(): void {
- $vCard = new VCard();
- $vCard->add($vCard->createProperty('FN', 'Full Name'));
- // Multi-value properties
- $vCard->add($vCard->createProperty('CLOUD', 'cloud-user1@localhost'));
- $vCard->add($vCard->createProperty('CLOUD', 'cloud-user2@example.tld'));
- $vCard->add($vCard->createProperty('EMAIL', 'email-user1@localhost'));
- $vCard->add($vCard->createProperty('EMAIL', 'email-user2@example.tld'));
- $vCard->add($vCard->createProperty('IMPP', 'impp-user1@localhost'));
- $vCard->add($vCard->createProperty('IMPP', 'impp-user2@example.tld'));
- $vCard->add($vCard->createProperty('TEL', '+49 123456789'));
- $vCard->add($vCard->createProperty('TEL', '+1 555 123456789'));
- $vCard->add($vCard->createProperty('URL', 'https://localhost'));
- $vCard->add($vCard->createProperty('URL', 'https://example.tld'));
- // Type depending properties
- $property = $vCard->createProperty('X-SOCIALPROFILE', 'tw-example');
- $property->add('TYPE', 'twitter');
- $vCard->add($property);
- $property = $vCard->createProperty('X-SOCIALPROFILE', 'tw-example-2');
- $property->add('TYPE', 'twitter');
- $vCard->add($property);
- $property = $vCard->createProperty('X-SOCIALPROFILE', 'fb-example');
- $property->add('TYPE', 'facebook');
- $vCard->add($property);
- $array = $this->invokePrivate($this->addressBookImpl, 'vCard2Array', ['uri', $vCard]);
- unset($array['PRODID']);
- unset($array['UID']);
- $this->assertEquals([
- 'URI' => 'uri',
- 'VERSION' => '4.0',
- 'FN' => 'Full Name',
- 'CLOUD' => [
- 'cloud-user1@localhost',
- 'cloud-user2@example.tld',
- ],
- 'EMAIL' => [
- 'email-user1@localhost',
- 'email-user2@example.tld',
- ],
- 'IMPP' => [
- 'impp-user1@localhost',
- 'impp-user2@example.tld',
- ],
- 'TEL' => [
- '+49 123456789',
- '+1 555 123456789',
- ],
- 'URL' => [
- 'https://localhost',
- 'https://example.tld',
- ],
- 'X-SOCIALPROFILE' => [
- 'tw-example',
- 'tw-example-2',
- 'fb-example',
- ],
- 'isLocalSystemBook' => true,
- ], $array);
- }
- public function testVCard2ArrayWithTypes(): void {
- $vCard = new VCard();
- $vCard->add($vCard->createProperty('FN', 'Full Name'));
- // Multi-value properties
- $vCard->add($vCard->createProperty('CLOUD', 'cloud-user1@localhost'));
- $vCard->add($vCard->createProperty('CLOUD', 'cloud-user2@example.tld'));
- $property = $vCard->createProperty('EMAIL', 'email-user1@localhost');
- $property->add('TYPE', 'HOME');
- $vCard->add($property);
- $property = $vCard->createProperty('EMAIL', 'email-user2@example.tld');
- $property->add('TYPE', 'WORK');
- $vCard->add($property);
- $vCard->add($vCard->createProperty('IMPP', 'impp-user1@localhost'));
- $vCard->add($vCard->createProperty('IMPP', 'impp-user2@example.tld'));
- $property = $vCard->createProperty('TEL', '+49 123456789');
- $property->add('TYPE', 'HOME,VOICE');
- $vCard->add($property);
- $property = $vCard->createProperty('TEL', '+1 555 123456789');
- $property->add('TYPE', 'WORK');
- $vCard->add($property);
- $vCard->add($vCard->createProperty('URL', 'https://localhost'));
- $vCard->add($vCard->createProperty('URL', 'https://example.tld'));
- // Type depending properties
- $property = $vCard->createProperty('X-SOCIALPROFILE', 'tw-example');
- $property->add('TYPE', 'twitter');
- $vCard->add($property);
- $property = $vCard->createProperty('X-SOCIALPROFILE', 'tw-example-2');
- $property->add('TYPE', 'twitter');
- $vCard->add($property);
- $property = $vCard->createProperty('X-SOCIALPROFILE', 'fb-example');
- $property->add('TYPE', 'facebook');
- $vCard->add($property);
- $array = $this->invokePrivate($this->addressBookImpl, 'vCard2Array', ['uri', $vCard, true]);
- unset($array['PRODID']);
- unset($array['UID']);
- $this->assertEquals([
- 'URI' => 'uri',
- 'VERSION' => '4.0',
- 'FN' => 'Full Name',
- 'CLOUD' => [
- ['type' => '', 'value' => 'cloud-user1@localhost'],
- ['type' => '', 'value' => 'cloud-user2@example.tld'],
- ],
- 'EMAIL' => [
- ['type' => 'HOME', 'value' => 'email-user1@localhost'],
- ['type' => 'WORK', 'value' => 'email-user2@example.tld'],
- ],
- 'IMPP' => [
- ['type' => '', 'value' => 'impp-user1@localhost'],
- ['type' => '', 'value' => 'impp-user2@example.tld'],
- ],
- 'TEL' => [
- ['type' => 'HOME,VOICE', 'value' => '+49 123456789'],
- ['type' => 'WORK', 'value' => '+1 555 123456789'],
- ],
- 'URL' => [
- ['type' => '', 'value' => 'https://localhost'],
- ['type' => '', 'value' => 'https://example.tld'],
- ],
- 'X-SOCIALPROFILE' => [
- ['type' => 'twitter', 'value' => 'tw-example'],
- ['type' => 'twitter', 'value' => 'tw-example-2'],
- ['type' => 'facebook', 'value' => 'fb-example'],
- ],
- 'isLocalSystemBook' => true,
- ], $array);
- }
- public function testIsSystemAddressBook(): void {
- $addressBookInfo = [
- '{http://owncloud.org/ns}owner-principal' => 'principals/system/system',
- 'principaluri' => 'principals/system/system',
- '{DAV:}displayname' => 'display name',
- 'id' => 666,
- 'uri' => 'system',
- ];
- $addressBookImpl = new AddressBookImpl(
- $this->addressBook,
- $addressBookInfo,
- $this->backend,
- $this->urlGenerator
- );
- $this->assertTrue($addressBookImpl->isSystemAddressBook());
- }
- public function testIsShared(): void {
- $addressBookInfo = [
- '{http://owncloud.org/ns}owner-principal' => 'user1',
- '{DAV:}displayname' => 'Test address book',
- 'principaluri' => 'user2',
- 'id' => 666,
- 'uri' => 'default',
- ];
- $addressBookImpl = new AddressBookImpl(
- $this->addressBook,
- $addressBookInfo,
- $this->backend,
- $this->urlGenerator
- );
- $this->assertFalse($addressBookImpl->isSystemAddressBook());
- $this->assertTrue($addressBookImpl->isShared());
- }
- public function testIsNotShared(): void {
- $addressBookInfo = [
- '{http://owncloud.org/ns}owner-principal' => 'user1',
- '{DAV:}displayname' => 'Test address book',
- 'principaluri' => 'user1',
- 'id' => 666,
- 'uri' => 'default',
- ];
- $addressBookImpl = new AddressBookImpl(
- $this->addressBook,
- $addressBookInfo,
- $this->backend,
- $this->urlGenerator
- );
- $this->assertFalse($addressBookImpl->isSystemAddressBook());
- $this->assertFalse($addressBookImpl->isShared());
- }
- }
|