123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?php
- /**
- * @copyright 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
- *
- * @author 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * 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
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- namespace Tests\Contacts\ContactsMenu;
- use Exception;
- use OC\App\AppManager;
- use OC\Contacts\ContactsMenu\ActionProviderStore;
- use OC\Contacts\ContactsMenu\Providers\EMailProvider;
- use OCP\App\IAppManager;
- use OCP\AppFramework\QueryException;
- use OCP\Contacts\ContactsMenu\IProvider;
- use OCP\ILogger;
- use OCP\IServerContainer;
- use OCP\IUser;
- use PHPUnit_Framework_MockObject_MockObject;
- use Test\TestCase;
- class ActionProviderStoreTest extends TestCase {
- /** @var IServerContainer|PHPUnit_Framework_MockObject_MockObject */
- private $serverContainer;
- /** @var IAppManager|PHPUnit_Framework_MockObject_MockObject */
- private $appManager;
- /** @var ILogger|PHPUnit_Framework_MockObject_MockObject */
- private $logger;
- /** @var ActionProviderStore */
- private $actionProviderStore;
- protected function setUp() {
- parent::setUp();
- $this->serverContainer = $this->createMock(IServerContainer::class);
- $this->appManager = $this->createMock(AppManager::class);
- $this->logger = $this->createMock(ILogger::class);
- $this->actionProviderStore = new ActionProviderStore($this->serverContainer, $this->appManager, $this->logger);
- }
- public function testGetProviders() {
- $user = $this->createMock(IUser::class);
- $provider1 = $this->createMock(EMailProvider::class);
- $provider2 = $this->createMock(IProvider::class);
- $this->appManager->expects($this->once())
- ->method('getEnabledAppsForUser')
- ->with($user)
- ->willReturn(['contacts']);
- $this->appManager->expects($this->once())
- ->method('getAppInfo')
- ->with('contacts')
- ->willReturn([
- 'contactsmenu' => [
- 'OCA\Contacts\Provider1',
- ],
- ]);
- $this->serverContainer->expects($this->exactly(2))
- ->method('query')
- ->will($this->returnValueMap([
- [EMailProvider::class, $provider1],
- ['OCA\Contacts\Provider1', $provider2]
- ]));
- $providers = $this->actionProviderStore->getProviders($user);
- $this->assertCount(2, $providers);
- $this->assertInstanceOf(EMailProvider::class, $providers[0]);
- }
- public function testGetProvidersOfAppWithIncompleInfo() {
- $user = $this->createMock(IUser::class);
- $provider1 = $this->createMock(EMailProvider::class);
- $this->appManager->expects($this->once())
- ->method('getEnabledAppsForUser')
- ->with($user)
- ->willReturn(['contacts']);
- $this->appManager->expects($this->once())
- ->method('getAppInfo')
- ->with('contacts')
- ->willReturn([/* Empty info.xml */]);
- $this->serverContainer->expects($this->once())
- ->method('query')
- ->will($this->returnValueMap([
- [EMailProvider::class, $provider1],
- ]));
- $providers = $this->actionProviderStore->getProviders($user);
- $this->assertCount(1, $providers);
- $this->assertInstanceOf(EMailProvider::class, $providers[0]);
- }
- /**
- * @expectedException Exception
- */
- public function testGetProvidersWithQueryException() {
- $user = $this->createMock(IUser::class);
- $this->appManager->expects($this->once())
- ->method('getEnabledAppsForUser')
- ->with($user)
- ->willReturn([]);
- $this->serverContainer->expects($this->once())
- ->method('query')
- ->willThrowException(new QueryException());
- $this->actionProviderStore->getProviders($user);
- }
- }
|