2020-04-09 12:50:14 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2019-05-28 18:56:01 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
*
|
|
|
|
* @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
*
|
|
|
|
* @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 Test\Authentication\Token;
|
|
|
|
|
|
|
|
use OC\Authentication\Events\RemoteWipeFinished;
|
|
|
|
use OC\Authentication\Events\RemoteWipeStarted;
|
|
|
|
use OC\Authentication\Exceptions\WipeTokenException;
|
|
|
|
use OC\Authentication\Token\IProvider;
|
2019-11-22 22:52:10 +03:00
|
|
|
use OC\Authentication\Token\IProvider as ITokenProvider;
|
2019-05-28 18:56:01 +03:00
|
|
|
use OC\Authentication\Token\IToken;
|
2019-07-03 10:44:37 +03:00
|
|
|
use OC\Authentication\Token\IWipeableToken;
|
2019-05-28 18:56:01 +03:00
|
|
|
use OC\Authentication\Token\RemoteWipe;
|
|
|
|
use OCP\EventDispatcher\IEventDispatcher;
|
2019-07-03 11:10:56 +03:00
|
|
|
use OCP\IUser;
|
2019-05-28 18:56:01 +03:00
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
2020-10-12 18:14:25 +03:00
|
|
|
use Psr\Log\LoggerInterface;
|
2019-05-28 18:56:01 +03:00
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
class RemoteWipeTest extends TestCase {
|
|
|
|
|
|
|
|
/** @var ITokenProvider|MockObject */
|
|
|
|
private $tokenProvider;
|
|
|
|
|
|
|
|
/** @var IEventDispatcher|MockObject */
|
|
|
|
private $eventDispatcher;
|
|
|
|
|
2020-10-12 18:14:25 +03:00
|
|
|
/** @var LoggerInterface|MockObject */
|
2019-05-28 18:56:01 +03:00
|
|
|
private $logger;
|
|
|
|
|
|
|
|
/** @var RemoteWipe */
|
|
|
|
private $remoteWipe;
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2019-05-28 18:56:01 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->tokenProvider = $this->createMock(IProvider::class);
|
|
|
|
$this->eventDispatcher = $this->createMock(IEventDispatcher::class);
|
2020-10-12 18:14:25 +03:00
|
|
|
$this->logger = $this->createMock(LoggerInterface::class);
|
2019-05-28 18:56:01 +03:00
|
|
|
|
|
|
|
$this->remoteWipe = new RemoteWipe(
|
|
|
|
$this->tokenProvider,
|
|
|
|
$this->eventDispatcher,
|
|
|
|
$this->logger
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-07-03 10:44:37 +03:00
|
|
|
public function testMarkNonWipableTokenForWipe(): void {
|
|
|
|
$token = $this->createMock(IToken::class);
|
2020-03-16 10:52:46 +03:00
|
|
|
$result = $this->remoteWipe->markTokenForWipe($token);
|
2019-07-03 10:44:37 +03:00
|
|
|
$this->assertFalse($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testMarkTokenForWipe(): void {
|
|
|
|
$token = $this->createMock(IWipeableToken::class);
|
|
|
|
$token->expects($this->once())
|
|
|
|
->method('wipe');
|
2020-03-16 10:52:46 +03:00
|
|
|
|
2019-07-03 10:44:37 +03:00
|
|
|
$this->tokenProvider->expects($this->once())
|
|
|
|
->method('updateToken')
|
|
|
|
->with($token);
|
|
|
|
|
2020-03-16 10:52:46 +03:00
|
|
|
$result = $this->remoteWipe->markTokenForWipe($token);
|
2019-07-03 10:44:37 +03:00
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
|
|
|
|
2019-07-03 11:10:56 +03:00
|
|
|
public function testMarkAllTokensForWipeNoWipeableToken(): void {
|
|
|
|
/** @var IUser|MockObject $user */
|
|
|
|
$user = $this->createMock(IUser::class);
|
|
|
|
$user->method('getUID')->willReturn('user123');
|
|
|
|
$token1 = $this->createMock(IToken::class);
|
|
|
|
$token2 = $this->createMock(IToken::class);
|
|
|
|
$this->tokenProvider->expects($this->once())
|
|
|
|
->method('getTokenByUser')
|
|
|
|
->with('user123')
|
|
|
|
->willReturn([$token1, $token2]);
|
|
|
|
|
|
|
|
$result = $this->remoteWipe->markAllTokensForWipe($user);
|
|
|
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testMarkAllTokensForWipe(): void {
|
|
|
|
/** @var IUser|MockObject $user */
|
|
|
|
$user = $this->createMock(IUser::class);
|
|
|
|
$user->method('getUID')->willReturn('user123');
|
|
|
|
$token1 = $this->createMock(IToken::class);
|
|
|
|
$token2 = $this->createMock(IWipeableToken::class);
|
|
|
|
$this->tokenProvider->expects($this->once())
|
|
|
|
->method('getTokenByUser')
|
|
|
|
->with('user123')
|
|
|
|
->willReturn([$token1, $token2]);
|
|
|
|
$token2->expects($this->once())
|
|
|
|
->method('wipe');
|
|
|
|
$this->tokenProvider->expects($this->once())
|
|
|
|
->method('updateToken')
|
|
|
|
->with($token2);
|
|
|
|
|
|
|
|
$result = $this->remoteWipe->markAllTokensForWipe($user);
|
|
|
|
|
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
|
|
|
|
2019-05-28 18:56:01 +03:00
|
|
|
public function testStartWipingNotAWipeToken() {
|
|
|
|
$token = $this->createMock(IToken::class);
|
|
|
|
$this->tokenProvider->expects($this->once())
|
|
|
|
->method('getToken')
|
|
|
|
->with('tk1')
|
|
|
|
->willReturn($token);
|
|
|
|
$this->eventDispatcher->expects($this->never())
|
|
|
|
->method('dispatch');
|
|
|
|
|
|
|
|
$result = $this->remoteWipe->start('tk1');
|
|
|
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testStartWiping() {
|
|
|
|
$token = $this->createMock(IToken::class);
|
|
|
|
$this->tokenProvider->expects($this->once())
|
|
|
|
->method('getToken')
|
|
|
|
->with('tk1')
|
|
|
|
->willThrowException(new WipeTokenException($token));
|
|
|
|
$this->eventDispatcher->expects($this->once())
|
|
|
|
->method('dispatch');
|
|
|
|
$this->eventDispatcher->expects($this->once())
|
|
|
|
->method('dispatch')
|
|
|
|
->with(RemoteWipeStarted::class, $this->equalTo(new RemoteWipeStarted($token)));
|
|
|
|
|
|
|
|
$result = $this->remoteWipe->start('tk1');
|
|
|
|
|
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFinishWipingNotAWipeToken() {
|
|
|
|
$token = $this->createMock(IToken::class);
|
|
|
|
$this->tokenProvider->expects($this->once())
|
|
|
|
->method('getToken')
|
|
|
|
->with('tk1')
|
|
|
|
->willReturn($token);
|
|
|
|
$this->eventDispatcher->expects($this->never())
|
|
|
|
->method('dispatch');
|
|
|
|
|
|
|
|
$result = $this->remoteWipe->finish('tk1');
|
|
|
|
|
|
|
|
$this->assertFalse($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function startFinishWiping() {
|
|
|
|
$token = $this->createMock(IToken::class);
|
|
|
|
$this->tokenProvider->expects($this->once())
|
|
|
|
->method('getToken')
|
|
|
|
->with('tk1')
|
|
|
|
->willThrowException(new WipeTokenException($token));
|
|
|
|
$this->eventDispatcher->expects($this->once())
|
|
|
|
->method('dispatch');
|
|
|
|
$this->tokenProvider->expects($this->once())
|
|
|
|
->method('invalidateToken')
|
|
|
|
->with($token);
|
|
|
|
$this->eventDispatcher->expects($this->once())
|
|
|
|
->method('dispatch')
|
|
|
|
->with(RemoteWipeFinished::class, $this->equalTo(new RemoteWipeFinished($token)));
|
|
|
|
|
|
|
|
$result = $this->remoteWipe->finish('tk1');
|
|
|
|
|
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
|
|
|
}
|