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() { $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); } }