2016-01-11 16:34:17 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-01-11 16:34:17 +03: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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-05-25 17:04:15 +03:00
|
|
|
namespace OCA\DAV\Tests\unit\AppInfo;
|
2016-01-11 16:34:17 +03:00
|
|
|
|
2016-05-12 10:42:40 +03:00
|
|
|
use OCA\DAV\AppInfo\Application;
|
2016-09-20 02:15:24 +03:00
|
|
|
use OCA\DAV\CardDAV\CardDavBackend;
|
|
|
|
use OCA\DAV\CardDAV\ContactsManager;
|
2016-01-11 16:34:17 +03:00
|
|
|
use OCP\Contacts\IManager;
|
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ApplicationTest
|
|
|
|
*
|
|
|
|
* @group DB
|
|
|
|
*
|
|
|
|
* @package OCA\DAV\Tests\Unit\AppInfo
|
|
|
|
*/
|
|
|
|
class ApplicationTest extends TestCase {
|
|
|
|
public function test() {
|
|
|
|
$app = new Application();
|
2016-01-28 17:02:01 +03:00
|
|
|
$c = $app->getContainer();
|
2016-01-11 16:34:17 +03:00
|
|
|
|
|
|
|
// assert service instances in the container are properly setup
|
2016-09-20 02:15:24 +03:00
|
|
|
$s = $c->query(ContactsManager::class);
|
2016-01-11 16:34:17 +03:00
|
|
|
$this->assertInstanceOf('OCA\DAV\CardDAV\ContactsManager', $s);
|
2016-09-20 02:15:24 +03:00
|
|
|
$s = $c->query(CardDavBackend::class);
|
2016-01-11 16:34:17 +03:00
|
|
|
$this->assertInstanceOf('OCA\DAV\CardDAV\CardDavBackend', $s);
|
2016-01-28 17:02:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testContactsManagerSetup() {
|
|
|
|
$app = new Application();
|
|
|
|
$c = $app->getContainer();
|
2016-09-20 15:28:17 +03:00
|
|
|
$c->registerService(CardDavBackend::class, function() {
|
|
|
|
$service = $this->createMock(CardDavBackend::class);
|
2016-01-28 17:02:01 +03:00
|
|
|
$service->method('getAddressBooksForUser')->willReturn([]);
|
|
|
|
return $service;
|
|
|
|
});
|
2016-01-11 16:34:17 +03:00
|
|
|
|
|
|
|
// assert setupContactsProvider() is proper
|
2016-09-20 15:28:17 +03:00
|
|
|
/** @var IManager|\PHPUnit_Framework_MockObject_MockObject $cm */
|
|
|
|
$cm = $this->createMock(IManager::class);
|
2016-01-28 17:02:01 +03:00
|
|
|
$app->setupContactsProvider($cm, 'xxx');
|
2018-01-25 13:23:12 +03:00
|
|
|
$this->addToAssertionCount(1);
|
2016-01-11 16:34:17 +03:00
|
|
|
}
|
|
|
|
}
|