123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384 |
- <?php
- /**
- * @copyright Copyright (c) 2016 Joas Schilling <coding@schilljs.com>
- *
- * @author Joas Schilling <coding@schilljs.com>
- *
- * @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 OCA\Provisioning_API\Tests\Controller;
- use OCA\Provisioning_API\Controller\AppConfigController;
- use OCP\AppFramework\Http;
- use OCP\AppFramework\Http\DataResponse;
- use OCP\IAppConfig;
- use OCP\IConfig;
- use OCP\IRequest;
- use Test\TestCase;
- /**
- * Class AppConfigControllerTest
- *
- * @package OCA\Provisioning_API\Tests
- */
- class AppConfigControllerTest extends TestCase {
- /** @var IConfig|\PHPUnit_Framework_MockObject_MockObject */
- private $config;
- /** @var IAppConfig|\PHPUnit_Framework_MockObject_MockObject */
- private $appConfig;
- protected function setUp() {
- parent::setUp();
- $this->config = $this->createMock(IConfig::class);
- $this->appConfig = $this->createMock(IAppConfig::class);
- }
- /**
- * @param string[] $methods
- * @return AppConfigController|\PHPUnit_Framework_MockObject_MockObject
- */
- protected function getInstance(array $methods = []) {
- $request = $this->createMock(IRequest::class);
- if (empty($methods)) {
- return new AppConfigController(
- 'provisioning_api',
- $request,
- $this->config,
- $this->appConfig
- );
- } else {
- return $this->getMockBuilder(AppConfigController::class)
- ->setConstructorArgs([
- 'provisioning_api',
- $request,
- $this->config,
- $this->appConfig,
- ])
- ->setMethods($methods)
- ->getMock();
- }
- }
- public function testGetApps() {
- $this->appConfig->expects($this->once())
- ->method('getApps')
- ->willReturn(['apps']);
- $result = $this->getInstance()->getApps();
- $this->assertInstanceOf(DataResponse::class, $result);
- $this->assertSame(Http::STATUS_OK, $result->getStatus());
- $this->assertEquals(['data' => ['apps']], $result->getData());
- }
- public function dataGetKeys() {
- return [
- ['app1 ', null, new \InvalidArgumentException('error'), Http::STATUS_FORBIDDEN],
- ['app2', ['keys'], null, Http::STATUS_OK],
- ];
- }
- /**
- * @dataProvider dataGetKeys
- * @param string $app
- * @param array|null $keys
- * @param \Exception|null $throws
- * @param int $status
- */
- public function testGetKeys($app, $keys, $throws, $status) {
- $api = $this->getInstance(['verifyAppId']);
- if ($throws instanceof \Exception) {
- $api->expects($this->once())
- ->method('verifyAppId')
- ->with($app)
- ->willThrowException($throws);
- $this->config->expects($this->never())
- ->method('getAppKeys');
- } else {
- $api->expects($this->once())
- ->method('verifyAppId')
- ->with($app);
- $this->config->expects($this->once())
- ->method('getAppKeys')
- ->with($app)
- ->willReturn($keys);
- }
- $result = $api->getKeys($app);
- $this->assertInstanceOf(DataResponse::class, $result);
- $this->assertSame($status, $result->getStatus());
- if ($throws instanceof \Exception) {
- $this->assertEquals(['data' => ['message' => $throws->getMessage()]], $result->getData());
- } else {
- $this->assertEquals(['data' => $keys], $result->getData());
- }
- }
- public function dataGetValue() {
- return [
- ['app1', 'key', 'default', null, new \InvalidArgumentException('error'), Http::STATUS_FORBIDDEN],
- ['app2', 'key', 'default', 'return', null, Http::STATUS_OK],
- ];
- }
- /**
- * @dataProvider dataGetValue
- * @param string $app
- * @param string|null $key
- * @param string|null $default
- * @param string|null $return
- * @param \Exception|null $throws
- * @param int $status
- */
- public function testGetValue($app, $key, $default, $return, $throws, $status) {
- $api = $this->getInstance(['verifyAppId']);
- if ($throws instanceof \Exception) {
- $api->expects($this->once())
- ->method('verifyAppId')
- ->with($app)
- ->willThrowException($throws);
- $this->config->expects($this->never())
- ->method('getAppValue');
- } else {
- $api->expects($this->once())
- ->method('verifyAppId')
- ->with($app);
- $this->config->expects($this->once())
- ->method('getAppValue')
- ->with($app, $key, $default)
- ->willReturn($return);
- }
- $result = $api->getValue($app, $key, $default);
- $this->assertInstanceOf(DataResponse::class, $result);
- $this->assertSame($status, $result->getStatus());
- if ($throws instanceof \Exception) {
- $this->assertEquals(['data' => ['message' => $throws->getMessage()]], $result->getData());
- } else {
- $this->assertEquals(['data' => $return], $result->getData());
- }
- }
- public function dataSetValue() {
- return [
- ['app1', 'key', 'default', new \InvalidArgumentException('error1'), null, Http::STATUS_FORBIDDEN],
- ['app2', 'key', 'default', null, new \InvalidArgumentException('error2'), Http::STATUS_FORBIDDEN],
- ['app2', 'key', 'default', null, null, Http::STATUS_OK],
- ];
- }
- /**
- * @dataProvider dataSetValue
- * @param string $app
- * @param string|null $key
- * @param string|null $value
- * @param \Exception|null $appThrows
- * @param \Exception|null $keyThrows
- * @param int $status
- */
- public function testSetValue($app, $key, $value, $appThrows, $keyThrows, $status) {
- $api = $this->getInstance(['verifyAppId', 'verifyConfigKey']);
- if ($appThrows instanceof \Exception) {
- $api->expects($this->once())
- ->method('verifyAppId')
- ->with($app)
- ->willThrowException($appThrows);
- $api->expects($this->never())
- ->method('verifyConfigKey');
- $this->config->expects($this->never())
- ->method('setAppValue');
- } else if ($keyThrows instanceof \Exception) {
- $api->expects($this->once())
- ->method('verifyAppId')
- ->with($app);
- $api->expects($this->once())
- ->method('verifyConfigKey')
- ->with($app, $key)
- ->willThrowException($keyThrows);
- $this->config->expects($this->never())
- ->method('setAppValue');
- } else {
- $api->expects($this->once())
- ->method('verifyAppId')
- ->with($app);
- $api->expects($this->once())
- ->method('verifyConfigKey')
- ->with($app, $key);
- $this->config->expects($this->once())
- ->method('setAppValue')
- ->with($app, $key, $value);
- }
- $result = $api->setValue($app, $key, $value);
- $this->assertInstanceOf(DataResponse::class, $result);
- $this->assertSame($status, $result->getStatus());
- if ($appThrows instanceof \Exception) {
- $this->assertEquals(['data' => ['message' => $appThrows->getMessage()]], $result->getData());
- } else if ($keyThrows instanceof \Exception) {
- $this->assertEquals(['data' => ['message' => $keyThrows->getMessage()]], $result->getData());
- } else {
- $this->assertEquals([], $result->getData());
- }
- }
- public function dataDeleteValue() {
- return [
- ['app1', 'key', new \InvalidArgumentException('error1'), null, Http::STATUS_FORBIDDEN],
- ['app2', 'key', null, new \InvalidArgumentException('error2'), Http::STATUS_FORBIDDEN],
- ['app2', 'key', null, null, Http::STATUS_OK],
- ];
- }
- /**
- * @dataProvider dataDeleteValue
- * @param string $app
- * @param string|null $key
- * @param \Exception|null $appThrows
- * @param \Exception|null $keyThrows
- * @param int $status
- */
- public function testDeleteValue($app, $key, $appThrows, $keyThrows, $status) {
- $api = $this->getInstance(['verifyAppId', 'verifyConfigKey']);
- if ($appThrows instanceof \Exception) {
- $api->expects($this->once())
- ->method('verifyAppId')
- ->with($app)
- ->willThrowException($appThrows);
- $api->expects($this->never())
- ->method('verifyConfigKey');
- $this->config->expects($this->never())
- ->method('deleteAppValue');
- } else if ($keyThrows instanceof \Exception) {
- $api->expects($this->once())
- ->method('verifyAppId')
- ->with($app);
- $api->expects($this->once())
- ->method('verifyConfigKey')
- ->with($app, $key)
- ->willThrowException($keyThrows);
- $this->config->expects($this->never())
- ->method('deleteAppValue');
- } else {
- $api->expects($this->once())
- ->method('verifyAppId')
- ->with($app);
- $api->expects($this->once())
- ->method('verifyConfigKey')
- ->with($app, $key);
- $this->config->expects($this->once())
- ->method('deleteAppValue')
- ->with($app, $key);
- }
- $result = $api->deleteKey($app, $key);
- $this->assertInstanceOf(DataResponse::class, $result);
- $this->assertSame($status, $result->getStatus());
- if ($appThrows instanceof \Exception) {
- $this->assertEquals(['data' => ['message' => $appThrows->getMessage()]], $result->getData());
- } else if ($keyThrows instanceof \Exception) {
- $this->assertEquals(['data' => ['message' => $keyThrows->getMessage()]], $result->getData());
- } else {
- $this->assertEquals([], $result->getData());
- }
- }
- public function testVerifyAppId() {
- $api = $this->getInstance();
- $this->invokePrivate($api, 'verifyAppId', ['activity']);
- $this->addToAssertionCount(1);
- }
- public function dataVerifyAppIdThrows() {
- return [
- ['activity..'],
- ['activity/'],
- ['activity\\'],
- ['activity\0'],
- ];
- }
- /**
- * @dataProvider dataVerifyAppIdThrows
- * @expectedException \InvalidArgumentException
- * @param string $app
- */
- public function testVerifyAppIdThrows($app) {
- $api = $this->getInstance();
- $this->invokePrivate($api, 'verifyAppId', [$app]);
- }
- public function dataVerifyConfigKey() {
- return [
- ['activity', 'abc'],
- ['dav', 'public_route'],
- ['files', 'remote_route'],
- ];
- }
- /**
- * @dataProvider dataVerifyConfigKey
- * @param string $app
- * @param string $key
- */
- public function testVerifyConfigKey($app, $key) {
- $api = $this->getInstance();
- $this->invokePrivate($api, 'verifyConfigKey', [$app, $key]);
- $this->addToAssertionCount(1);
- }
- public function dataVerifyConfigKeyThrows() {
- return [
- ['activity', 'installed_version'],
- ['calendar', 'enabled'],
- ['contacts', 'types'],
- ['core', 'public_files'],
- ['core', 'public_dav'],
- ['core', 'remote_files'],
- ['core', 'remote_dav'],
- ];
- }
- /**
- * @dataProvider dataVerifyConfigKeyThrows
- * @expectedException \InvalidArgumentException
- * @param string $app
- * @param string $key
- */
- public function testVerifyConfigKeyThrows($app, $key) {
- $api = $this->getInstance();
- $this->invokePrivate($api, 'verifyConfigKey', [$app, $key]);
- }
- }
|