2017-01-24 09:47:14 +03:00
|
|
|
<?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;
|
|
|
|
|
2017-04-03 19:04:14 +03:00
|
|
|
use OC\App\AppManager;
|
2017-01-24 09:47:14 +03:00
|
|
|
use OC\Contacts\ContactsMenu\ActionProviderStore;
|
|
|
|
use OC\Contacts\ContactsMenu\Providers\EMailProvider;
|
2017-04-03 19:04:14 +03:00
|
|
|
use OCP\App\IAppManager;
|
2017-01-24 09:47:14 +03:00
|
|
|
use OCP\AppFramework\QueryException;
|
2017-04-03 19:04:14 +03:00
|
|
|
use OCP\Contacts\ContactsMenu\IProvider;
|
2017-01-24 09:47:14 +03:00
|
|
|
use OCP\ILogger;
|
|
|
|
use OCP\IServerContainer;
|
2017-04-03 19:04:14 +03:00
|
|
|
use OCP\IUser;
|
2017-01-24 09:47:14 +03:00
|
|
|
use PHPUnit_Framework_MockObject_MockObject;
|
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
class ActionProviderStoreTest extends TestCase {
|
|
|
|
|
|
|
|
/** @var IServerContainer|PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $serverContainer;
|
|
|
|
|
2017-04-03 19:04:14 +03:00
|
|
|
/** @var IAppManager|PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $appManager;
|
|
|
|
|
2017-01-24 09:47:14 +03:00
|
|
|
/** @var ILogger|PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $logger;
|
|
|
|
|
|
|
|
/** @var ActionProviderStore */
|
|
|
|
private $actionProviderStore;
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2017-01-24 09:47:14 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->serverContainer = $this->createMock(IServerContainer::class);
|
2017-04-03 19:04:14 +03:00
|
|
|
$this->appManager = $this->createMock(AppManager::class);
|
2017-01-24 09:47:14 +03:00
|
|
|
$this->logger = $this->createMock(ILogger::class);
|
2017-04-03 19:04:14 +03:00
|
|
|
|
|
|
|
$this->actionProviderStore = new ActionProviderStore($this->serverContainer, $this->appManager, $this->logger);
|
2017-01-24 09:47:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetProviders() {
|
2017-04-03 19:04:14 +03:00
|
|
|
$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',
|
|
|
|
],
|
2020-04-09 10:22:29 +03:00
|
|
|
]);
|
2017-01-24 09:47:14 +03:00
|
|
|
$this->serverContainer->expects($this->exactly(2))
|
|
|
|
->method('query')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturnMap([
|
2020-04-09 10:22:29 +03:00
|
|
|
[EMailProvider::class, true, $provider1],
|
|
|
|
['OCA\Contacts\Provider1', true, $provider2]
|
|
|
|
]);
|
2017-04-03 19:04:14 +03:00
|
|
|
|
|
|
|
$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')
|
2020-03-26 00:21:27 +03:00
|
|
|
->willReturnMap([
|
2020-04-09 10:22:29 +03:00
|
|
|
[EMailProvider::class, true, $provider1],
|
|
|
|
]);
|
2017-01-24 09:47:14 +03:00
|
|
|
|
2017-04-03 19:04:14 +03:00
|
|
|
$providers = $this->actionProviderStore->getProviders($user);
|
2017-01-24 09:47:14 +03:00
|
|
|
|
|
|
|
$this->assertCount(1, $providers);
|
|
|
|
$this->assertInstanceOf(EMailProvider::class, $providers[0]);
|
|
|
|
}
|
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
|
2017-01-24 09:47:14 +03:00
|
|
|
public function testGetProvidersWithQueryException() {
|
2019-11-27 17:27:18 +03:00
|
|
|
$this->expectException(\Exception::class);
|
|
|
|
|
2017-04-03 19:04:14 +03:00
|
|
|
$user = $this->createMock(IUser::class);
|
|
|
|
$this->appManager->expects($this->once())
|
|
|
|
->method('getEnabledAppsForUser')
|
|
|
|
->with($user)
|
|
|
|
->willReturn([]);
|
2017-01-24 09:47:14 +03:00
|
|
|
$this->serverContainer->expects($this->once())
|
|
|
|
->method('query')
|
|
|
|
->willThrowException(new QueryException());
|
|
|
|
|
2017-04-03 19:04:14 +03:00
|
|
|
$this->actionProviderStore->getProviders($user);
|
2017-01-24 09:47:14 +03:00
|
|
|
}
|
|
|
|
}
|