userManager = $this->createMock(IUserManager::class); $this->jobList = $this->createMock(IJobList::class); $this->registry = $this->createMock(IRegistry::class); $this->manager = $this->createMock(Manager::class); $this->user = $this->createMock(IUser::class); $this->userManager->method('callForSeenUsers') ->willReturnCallback(function (\Closure $e) { $e($this->user); }); $this->checkBackupCodes = new CheckBackupCodes( $this->createMock(ITimeFactory::class), $this->userManager, $this->jobList, $this->manager, $this->registry ); } public function testRunAlreadyGenerated() { $this->user->method('isEnabled') ->willReturn(true); $this->registry->method('getProviderStates') ->with($this->user) ->willReturn(['backup_codes' => true]); $this->manager->method('isTwoFactorAuthenticated') ->with($this->user) ->willReturn(true); $this->jobList->expects($this->never()) ->method($this->anything()); $this->invokePrivate($this->checkBackupCodes, 'run', [[]]); } public function testRun() { $this->user->method('getUID') ->willReturn('myUID'); $this->user->method('isEnabled') ->willReturn(true); $this->registry->expects($this->once()) ->method('getProviderStates') ->with($this->user) ->willReturn([ 'backup_codes' => false, ]); $this->jobList->expects($this->once()) ->method('add') ->with( $this->equalTo(RememberBackupCodesJob::class), ['uid' => 'myUID'] ); $this->manager->method('isTwoFactorAuthenticated') ->with($this->user) ->willReturn(true); $this->invokePrivate($this->checkBackupCodes, 'run', [[]]); } public function testRunDisabledUser() { $this->user->method('getUID') ->willReturn('myUID'); $this->user->method('isEnabled') ->willReturn(false); $this->registry->expects($this->never()) ->method('getProviderStates') ->with($this->user); $this->jobList->expects($this->never()) ->method('add'); $this->invokePrivate($this->checkBackupCodes, 'run', [[]]); } public function testRunNoProviders() { $this->user->method('isEnabled') ->willReturn(true); $this->registry->expects($this->once()) ->method('getProviderStates') ->with($this->user) ->willReturn([ 'backup_codes' => false, ]); $this->jobList->expects($this->never()) ->method($this->anything()); $this->manager->method('isTwoFactorAuthenticated') ->with($this->user) ->willReturn(false); $this->invokePrivate($this->checkBackupCodes, 'run', [[]]); } }