123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <?php
- declare(strict_types=1);
- /**
- * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace Test\Authentication\Token;
- use OC\Authentication\Events\RemoteWipeFinished;
- use OC\Authentication\Events\RemoteWipeStarted;
- use OC\Authentication\Exceptions\WipeTokenException;
- use OC\Authentication\Token\IProvider;
- use OC\Authentication\Token\IProvider as ITokenProvider;
- use OC\Authentication\Token\IToken;
- use OC\Authentication\Token\IWipeableToken;
- use OC\Authentication\Token\RemoteWipe;
- use OCP\EventDispatcher\IEventDispatcher;
- use OCP\IUser;
- use PHPUnit\Framework\MockObject\MockObject;
- use Psr\Log\LoggerInterface;
- use Test\TestCase;
- class RemoteWipeTest extends TestCase {
- /** @var ITokenProvider|MockObject */
- private $tokenProvider;
- /** @var IEventDispatcher|MockObject */
- private $eventDispatcher;
- /** @var LoggerInterface|MockObject */
- private $logger;
- /** @var RemoteWipe */
- private $remoteWipe;
- protected function setUp(): void {
- parent::setUp();
- $this->tokenProvider = $this->createMock(IProvider::class);
- $this->eventDispatcher = $this->createMock(IEventDispatcher::class);
- $this->logger = $this->createMock(LoggerInterface::class);
- $this->remoteWipe = new RemoteWipe(
- $this->tokenProvider,
- $this->eventDispatcher,
- $this->logger
- );
- }
- public function testMarkNonWipableTokenForWipe(): void {
- $token = $this->createMock(IToken::class);
- $result = $this->remoteWipe->markTokenForWipe($token);
- $this->assertFalse($result);
- }
- public function testMarkTokenForWipe(): void {
- $token = $this->createMock(IWipeableToken::class);
- $token->expects($this->once())
- ->method('wipe');
- $this->tokenProvider->expects($this->once())
- ->method('updateToken')
- ->with($token);
- $result = $this->remoteWipe->markTokenForWipe($token);
- $this->assertTrue($result);
- }
- 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);
- }
- public function testStartWipingNotAWipeToken(): void {
- $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(): void {
- $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(): void {
- $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);
- }
- }
|