123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Björn Schießle <bjoern@schiessle.org>
- * @author Joas Schilling <coding@schilljs.com>
- *
- * @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\BackgroundJob;
- use OCA\Federation\BackgroundJob\RequestSharedSecret;
- use OCA\Federation\DbHandler;
- use OCA\Federation\TrustedServers;
- use OCP\AppFramework\Http;
- use OCP\BackgroundJob\IJobList;
- use OCP\Http\Client\IClient;
- use OCP\Http\Client\IResponse;
- use OCP\IURLGenerator;
- use Test\TestCase;
- class RequestSharedSecretTest extends TestCase {
- /** @var \PHPUnit_Framework_MockObject_MockObject | IClient */
- private $httpClient;
- /** @var \PHPUnit_Framework_MockObject_MockObject | IJobList */
- private $jobList;
- /** @var \PHPUnit_Framework_MockObject_MockObject | IURLGenerator */
- private $urlGenerator;
- /** @var \PHPUnit_Framework_MockObject_MockObject | DbHandler */
- private $dbHandler;
- /** @var \PHPUnit_Framework_MockObject_MockObject | TrustedServers */
- private $trustedServers;
- /** @var \PHPUnit_Framework_MockObject_MockObject | IResponse */
- private $response;
- /** @var RequestSharedSecret */
- private $requestSharedSecret;
- public function setUp() {
- parent::setUp();
- $this->httpClient = $this->getMock('OCP\Http\Client\IClient');
- $this->jobList = $this->getMock('OCP\BackgroundJob\IJobList');
- $this->urlGenerator = $this->getMock('OCP\IURLGenerator');
- $this->trustedServers = $this->getMockBuilder('OCA\Federation\TrustedServers')
- ->disableOriginalConstructor()->getMock();
- $this->dbHandler = $this->getMockBuilder('OCA\Federation\DbHandler')
- ->disableOriginalConstructor()->getMock();
- $this->response = $this->getMock('OCP\Http\Client\IResponse');
- $this->requestSharedSecret = new RequestSharedSecret(
- $this->httpClient,
- $this->urlGenerator,
- $this->jobList,
- $this->trustedServers,
- $this->dbHandler
- );
- }
- /**
- * @dataProvider dataTestExecute
- *
- * @param bool $isTrustedServer
- * @param bool $retainBackgroundJob
- */
- public function testExecute($isTrustedServer, $retainBackgroundJob) {
- /** @var RequestSharedSecret |\PHPUnit_Framework_MockObject_MockObject $requestSharedSecret */
- $requestSharedSecret = $this->getMockBuilder('OCA\Federation\BackgroundJob\RequestSharedSecret')
- ->setConstructorArgs(
- [
- $this->httpClient,
- $this->urlGenerator,
- $this->jobList,
- $this->trustedServers,
- $this->dbHandler
- ]
- )->setMethods(['parentExecute'])->getMock();
- $this->invokePrivate($requestSharedSecret, 'argument', [['url' => 'url']]);
- $this->trustedServers->expects($this->once())->method('isTrustedServer')
- ->with('url')->willReturn($isTrustedServer);
- if ($isTrustedServer) {
- $requestSharedSecret->expects($this->once())->method('parentExecute');
- } else {
- $requestSharedSecret->expects($this->never())->method('parentExecute');
- }
- $this->invokePrivate($requestSharedSecret, 'retainJob', [$retainBackgroundJob]);
- if ($retainBackgroundJob) {
- $this->jobList->expects($this->never())->method('remove');
- } else {
- $this->jobList->expects($this->once())->method('remove');
- }
- $requestSharedSecret->execute($this->jobList);
- }
- public function dataTestExecute() {
- return [
- [true, true],
- [true, false],
- [false, false],
- ];
- }
- /**
- * @dataProvider dataTestRun
- *
- * @param int $statusCode
- */
- public function testRun($statusCode) {
- $target = 'targetURL';
- $source = 'sourceURL';
- $token = 'token';
- $argument = ['url' => $target, 'token' => $token];
- $this->urlGenerator->expects($this->once())->method('getAbsoluteURL')->with('/')
- ->willReturn($source);
- $this->httpClient->expects($this->once())->method('post')
- ->with(
- $target . '/ocs/v2.php/apps/federation/api/v1/request-shared-secret?format=json',
- [
- 'body' =>
- [
- 'url' => $source,
- 'token' => $token
- ],
- 'timeout' => 3,
- 'connect_timeout' => 3,
- ]
- )->willReturn($this->response);
- $this->response->expects($this->once())->method('getStatusCode')
- ->willReturn($statusCode);
- if (
- $statusCode !== Http::STATUS_OK
- && $statusCode !== Http::STATUS_FORBIDDEN
- ) {
- $this->dbHandler->expects($this->never())->method('addToken');
- }
- if ($statusCode === Http::STATUS_FORBIDDEN) {
- $this->dbHandler->expects($this->once())->method('addToken')->with($target, '');
- }
- $this->invokePrivate($this->requestSharedSecret, 'run', [$argument]);
- if (
- $statusCode !== Http::STATUS_OK
- && $statusCode !== Http::STATUS_FORBIDDEN
- ) {
- $this->assertTrue($this->invokePrivate($this->requestSharedSecret, 'retainJob'));
- } else {
- $this->assertFalse($this->invokePrivate($this->requestSharedSecret, 'retainJob'));
- }
- }
- public function dataTestRun() {
- return [
- [Http::STATUS_OK],
- [Http::STATUS_FORBIDDEN],
- [Http::STATUS_CONFLICT],
- ];
- }
- }
|