nextcloud/apps/federation/tests/Controller/OCSAuthAPIControllerTest.php

180 lines
5.1 KiB
PHP
Raw Normal View History

2015-11-10 04:50:59 -05:00
<?php
2015-11-10 04:50:59 -05:00
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
2015-11-10 04:50:59 -05:00
*/
namespace OCA\Federation\Tests\Controller;
2015-11-10 04:50:59 -05:00
use OC\BackgroundJob\JobList;
use OCA\Federation\Controller\OCSAuthAPIController;
2015-11-10 04:50:59 -05:00
use OCA\Federation\DbHandler;
use OCA\Federation\TrustedServers;
use OCP\AppFramework\OCS\OCSForbiddenException;
use OCP\AppFramework\Utility\ITimeFactory;
2015-11-10 04:50:59 -05:00
use OCP\IRequest;
use OCP\Security\Bruteforce\IThrottler;
2015-11-10 04:50:59 -05:00
use OCP\Security\ISecureRandom;
use Psr\Log\LoggerInterface;
2015-11-10 04:50:59 -05:00
use Test\TestCase;
class OCSAuthAPIControllerTest extends TestCase {
/** @var \PHPUnit\Framework\MockObject\MockObject|IRequest */
2015-11-10 04:50:59 -05:00
private $request;
/** @var \PHPUnit\Framework\MockObject\MockObject|ISecureRandom */
2015-11-10 04:50:59 -05:00
private $secureRandom;
/** @var \PHPUnit\Framework\MockObject\MockObject|JobList */
2015-11-10 04:50:59 -05:00
private $jobList;
/** @var \PHPUnit\Framework\MockObject\MockObject|TrustedServers */
2015-11-10 04:50:59 -05:00
private $trustedServers;
/** @var \PHPUnit\Framework\MockObject\MockObject|DbHandler */
2015-11-10 04:50:59 -05:00
private $dbHandler;
/** @var \PHPUnit\Framework\MockObject\MockObject|LoggerInterface */
private $logger;
/** @var \PHPUnit\Framework\MockObject\MockObject|ITimeFactory */
private $timeFactory;
/** @var \PHPUnit\Framework\MockObject\MockObject|IThrottler */
private $throttler;
private OCSAuthAPIController $ocsAuthApi;
2015-11-10 04:50:59 -05:00
/** @var int simulated timestamp */
private int $currentTime = 1234567;
protected function setUp(): void {
2015-11-10 04:50:59 -05:00
parent::setUp();
$this->request = $this->createMock(IRequest::class);
$this->secureRandom = $this->createMock(ISecureRandom::class);
$this->trustedServers = $this->createMock(TrustedServers::class);
$this->dbHandler = $this->createMock(DbHandler::class);
$this->jobList = $this->createMock(JobList::class);
$this->logger = $this->createMock(LoggerInterface::class);
$this->timeFactory = $this->createMock(ITimeFactory::class);
$this->throttler = $this->createMock(IThrottler::class);
$this->ocsAuthApi = new OCSAuthAPIController(
'federation',
$this->request,
$this->secureRandom,
$this->jobList,
$this->trustedServers,
$this->dbHandler,
$this->logger,
$this->timeFactory,
$this->throttler
);
$this->timeFactory->method('getTime')
->willReturn($this->currentTime);
2015-11-10 04:50:59 -05:00
}
/**
* @dataProvider dataTestRequestSharedSecret
*/
public function testRequestSharedSecret(string $token, string $localToken, bool $isTrustedServer, bool $ok): void {
2015-11-10 04:50:59 -05:00
$url = 'url';
$this->trustedServers
->expects($this->once())
->method('isTrustedServer')->with($url)->willReturn($isTrustedServer);
$this->dbHandler->expects($this->any())
->method('getToken')->with($url)->willReturn($localToken);
if ($ok) {
2015-11-10 04:50:59 -05:00
$this->jobList->expects($this->once())->method('add')
->with('OCA\Federation\BackgroundJob\GetSharedSecret', ['url' => $url, 'token' => $token, 'created' => $this->currentTime]);
2015-11-10 04:50:59 -05:00
} else {
$this->jobList->expects($this->never())->method('add');
$this->jobList->expects($this->never())->method('remove');
if (!$isTrustedServer) {
$this->throttler->expects($this->once())
->method('registerAttempt')
->with('federationSharedSecret');
}
2015-11-10 04:50:59 -05:00
}
try {
2016-08-19 15:41:55 -04:00
$this->ocsAuthApi->requestSharedSecret($url, $token);
$this->assertTrue($ok);
} catch (OCSForbiddenException $e) {
$this->assertFalse($ok);
}
2015-11-10 04:50:59 -05:00
}
public function dataTestRequestSharedSecret() {
return [
['token2', 'token1', true, true],
['token1', 'token2', false, false],
['token1', 'token2', true, false],
2015-11-10 04:50:59 -05:00
];
}
/**
* @dataProvider dataTestGetSharedSecret
*/
public function testGetSharedSecret(bool $isTrustedServer, bool $isValidToken, bool $ok): void {
2015-11-10 04:50:59 -05:00
$url = 'url';
$token = 'token';
$ocsAuthApi = new OCSAuthAPIController(
'federation',
$this->request,
$this->secureRandom,
$this->jobList,
$this->trustedServers,
$this->dbHandler,
$this->logger,
$this->timeFactory,
$this->throttler,
);
2015-11-10 04:50:59 -05:00
$this->trustedServers
->expects($this->any())
->method('isTrustedServer')->with($url)->willReturn($isTrustedServer);
$this->dbHandler->method('getToken')
->with($url)
->willReturn($isValidToken ? $token : 'not $token');
2015-11-10 04:50:59 -05:00
if ($ok) {
2015-11-10 04:50:59 -05:00
$this->secureRandom->expects($this->once())->method('generate')->with(32)
->willReturn('secret');
$this->trustedServers->expects($this->once())
->method('addSharedSecret')->with($url, 'secret');
2015-11-10 04:50:59 -05:00
} else {
$this->secureRandom->expects($this->never())->method('generate');
$this->trustedServers->expects($this->never())->method('addSharedSecret');
$this->throttler->expects($this->once())
->method('registerAttempt')
->with('federationSharedSecret');
2015-11-10 04:50:59 -05:00
}
try {
2016-08-19 15:41:55 -04:00
$result = $ocsAuthApi->getSharedSecret($url, $token);
$this->assertTrue($ok);
$data = $result->getData();
2015-11-10 04:50:59 -05:00
$this->assertSame('secret', $data['sharedSecret']);
} catch (OCSForbiddenException $e) {
$this->assertFalse($ok);
2015-11-10 04:50:59 -05:00
}
}
public function dataTestGetSharedSecret() {
return [
[true, true, true],
[false, true, false],
[true, false, false],
[false, false, false],
2015-11-10 04:50:59 -05:00
];
}
}