2016-01-11 08:34:17 -05:00
|
|
|
<?php
|
|
|
|
|
/**
|
2016-07-21 10:49:16 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2020-04-29 05:57:22 -04:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 14:15:27 -05:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2016-07-21 10:49:16 -04:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-11-06 09:56:42 -05:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-01-11 08:34:17 -05:00
|
|
|
* @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,
|
2019-12-03 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-01-11 08:34:17 -05:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2016-05-25 10:04:15 -04:00
|
|
|
namespace OCA\DAV\Tests\unit\CardDAV;
|
2016-01-11 08:34:17 -05:00
|
|
|
|
|
|
|
|
use OCA\DAV\CardDAV\CardDavBackend;
|
|
|
|
|
use OCA\DAV\CardDAV\ContactsManager;
|
|
|
|
|
use OCP\Contacts\IManager;
|
2016-09-20 12:59:14 -04:00
|
|
|
use OCP\IL10N;
|
2017-10-24 09:26:53 -04:00
|
|
|
use OCP\IURLGenerator;
|
2016-01-11 08:34:17 -05:00
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
|
|
class ContactsManagerTest extends TestCase {
|
|
|
|
|
public function test() {
|
|
|
|
|
/** @var IManager | \PHPUnit_Framework_MockObject_MockObject $cm */
|
2017-10-24 09:26:53 -04:00
|
|
|
$cm = $this->getMockBuilder(IManager::class)->disableOriginalConstructor()->getMock();
|
2016-01-28 09:02:01 -05:00
|
|
|
$cm->expects($this->exactly(2))->method('registerAddressBook');
|
2017-10-24 09:26:53 -04:00
|
|
|
$urlGenerator = $this->getMockBuilder(IURLGenerator::class)->disableOriginalConstructor()->getMock();
|
2016-01-11 08:34:17 -05:00
|
|
|
/** @var CardDavBackend | \PHPUnit_Framework_MockObject_MockObject $backEnd */
|
2017-10-24 09:26:53 -04:00
|
|
|
$backEnd = $this->getMockBuilder(CardDavBackend::class)->disableOriginalConstructor()->getMock();
|
2016-01-11 08:34:17 -05:00
|
|
|
$backEnd->method('getAddressBooksForUser')->willReturn([
|
2020-04-09 03:22:29 -04:00
|
|
|
['{DAV:}displayname' => 'Test address book', 'uri' => 'default'],
|
|
|
|
|
]);
|
2016-01-11 08:34:17 -05:00
|
|
|
|
2016-09-20 12:59:14 -04:00
|
|
|
$l = $this->createMock(IL10N::class);
|
|
|
|
|
$app = new ContactsManager($backEnd, $l);
|
2016-06-21 09:25:44 -04:00
|
|
|
$app->setupContactsProvider($cm, 'user01', $urlGenerator);
|
2016-01-11 08:34:17 -05:00
|
|
|
}
|
|
|
|
|
}
|