|
|
|
|
@ -25,11 +25,15 @@ |
|
|
|
|
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; |
|
|
|
|
|
|
|
|
|
@ -38,6 +42,9 @@ 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; |
|
|
|
|
|
|
|
|
|
@ -48,19 +55,61 @@ class ActionProviderStoreTest extends TestCase { |
|
|
|
|
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->logger); |
|
|
|
|
|
|
|
|
|
$this->actionProviderStore = new ActionProviderStore($this->serverContainer, $this->appManager, $this->logger); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public function testGetProviders() { |
|
|
|
|
$emailProvider = $this->createMock(EMailProvider::class); |
|
|
|
|
$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, $emailProvider], |
|
|
|
|
[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(); |
|
|
|
|
$providers = $this->actionProviderStore->getProviders($user); |
|
|
|
|
|
|
|
|
|
$this->assertCount(1, $providers); |
|
|
|
|
$this->assertInstanceOf(EMailProvider::class, $providers[0]); |
|
|
|
|
@ -70,13 +119,16 @@ class ActionProviderStoreTest extends TestCase { |
|
|
|
|
* @expectedException Exception |
|
|
|
|
*/ |
|
|
|
|
public function testGetProvidersWithQueryException() { |
|
|
|
|
$emailProvider = $this->createMock(EMailProvider::class); |
|
|
|
|
$detailsProvider = $this->createMock(DetailsProvider::class); |
|
|
|
|
$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()); |
|
|
|
|
|
|
|
|
|
$providers = $this->actionProviderStore->getProviders(); |
|
|
|
|
$this->actionProviderStore->getProviders($user); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|