diff options
Diffstat (limited to 'tests/lib/Contacts/ContactsMenu/ActionProviderStoreTest.php')
-rw-r--r-- | tests/lib/Contacts/ContactsMenu/ActionProviderStoreTest.php | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/tests/lib/Contacts/ContactsMenu/ActionProviderStoreTest.php b/tests/lib/Contacts/ContactsMenu/ActionProviderStoreTest.php new file mode 100644 index 00000000000..8738e19b513 --- /dev/null +++ b/tests/lib/Contacts/ContactsMenu/ActionProviderStoreTest.php @@ -0,0 +1,134 @@ +<?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); + } + +} |