123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Björn Schießle <bjoern@schiessle.org>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
- */
- namespace OCA\Federation\Tests\Controller;
- use OCA\Federation\Controller\SettingsController;
- use OCP\AppFramework\Http\DataResponse;
- use Test\TestCase;
- class SettingsControllerTest extends TestCase {
- /** @var SettingsController */
- private $controller;
- /** @var \PHPUnit_Framework_MockObject_MockObject | \OCP\IRequest */
- private $request;
- /** @var \PHPUnit_Framework_MockObject_MockObject | \OCP\IL10N */
- private $l10n;
- /** @var \PHPUnit_Framework_MockObject_MockObject | \OCA\Federation\TrustedServers */
- private $trustedServers;
- public function setUp() {
- parent::setUp();
- $this->request = $this->getMock('OCP\IRequest');
- $this->l10n = $this->getMock('OCP\IL10N');
- $this->trustedServers = $this->getMockBuilder('OCA\Federation\TrustedServers')
- ->disableOriginalConstructor()->getMock();
- $this->controller = new SettingsController(
- 'SettingsControllerTest',
- $this->request,
- $this->l10n,
- $this->trustedServers
- );
- }
- public function testAddServer() {
- $this->trustedServers
- ->expects($this->once())
- ->method('isTrustedServer')
- ->with('url')
- ->willReturn(false);
- $this->trustedServers
- ->expects($this->once())
- ->method('isOwnCloudServer')
- ->with('url')
- ->willReturn(true);
- $result = $this->controller->addServer('url');
- $this->assertTrue($result instanceof DataResponse);
- $data = $result->getData();
- $this->assertSame(200, $result->getStatus());
- $this->assertSame('url', $data['url']);
- $this->assertArrayHasKey('id', $data);
- }
- /**
- * @dataProvider checkServerFails
- * @expectedException \OC\HintException
- *
- * @param bool $isTrustedServer
- * @param bool $isOwnCloud
- */
- public function testAddServerFail($isTrustedServer, $isOwnCloud) {
- $this->trustedServers
- ->expects($this->any())
- ->method('isTrustedServer')
- ->with('url')
- ->willReturn($isTrustedServer);
- $this->trustedServers
- ->expects($this->any())
- ->method('isOwnCloudServer')
- ->with('url')
- ->willReturn($isOwnCloud);
- $this->controller->addServer('url');
- }
- public function testRemoveServer() {
- $this->trustedServers->expects($this->once())->method('removeServer')
- ->with('url');
- $result = $this->controller->removeServer('url');
- $this->assertTrue($result instanceof DataResponse);
- $this->assertSame(200, $result->getStatus());
- }
- public function testCheckServer() {
- $this->trustedServers
- ->expects($this->once())
- ->method('isTrustedServer')
- ->with('url')
- ->willReturn(false);
- $this->trustedServers
- ->expects($this->once())
- ->method('isOwnCloudServer')
- ->with('url')
- ->willReturn(true);
- $this->assertTrue(
- $this->invokePrivate($this->controller, 'checkServer', ['url'])
- );
- }
- /**
- * @dataProvider checkServerFails
- * @expectedException \OC\HintException
- *
- * @param bool $isTrustedServer
- * @param bool $isOwnCloud
- */
- public function testCheckServerFail($isTrustedServer, $isOwnCloud) {
- $this->trustedServers
- ->expects($this->any())
- ->method('isTrustedServer')
- ->with('url')
- ->willReturn($isTrustedServer);
- $this->trustedServers
- ->expects($this->any())
- ->method('isOwnCloudServer')
- ->with('url')
- ->willReturn($isOwnCloud);
- $this->assertTrue(
- $this->invokePrivate($this->controller, 'checkServer', ['url'])
- );
- }
- /**
- * data to simulate checkServer fails
- *
- * @return array
- */
- public function checkServerFails() {
- return [
- [true, true],
- [false, false]
- ];
- }
- }
|