mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
168 lines
4.3 KiB
PHP
168 lines
4.3 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
*
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
*
|
|
* @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 OCA\Federation\TrustedServers;
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
use OCP\IL10N;
|
|
use OCP\IRequest;
|
|
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;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
|
|
$this->request = $this->getMockBuilder(IRequest::class)->getMock();
|
|
$this->l10n = $this->getMockBuilder(IL10N::class)->getMock();
|
|
$this->trustedServers = $this->getMockBuilder(TrustedServers::class)
|
|
->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
|
|
*
|
|
* @param bool $isTrustedServer
|
|
* @param bool $isOwnCloud
|
|
*/
|
|
public function testAddServerFail($isTrustedServer, $isOwnCloud) {
|
|
$this->expectException(\OC\HintException::class);
|
|
|
|
$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
|
|
*
|
|
* @param bool $isTrustedServer
|
|
* @param bool $isOwnCloud
|
|
*/
|
|
public function testCheckServerFail($isTrustedServer, $isOwnCloud) {
|
|
$this->expectException(\OC\HintException::class);
|
|
|
|
$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]
|
|
];
|
|
}
|
|
}
|