session = $this->createMock(ISession::class); $this->random = $this->createMock(ISecureRandom::class); $this->tokenProvider = $this->createMock(IProvider::class); $this->credentialStore = $this->createMock(IStore::class); $this->request = $this->createMock(IRequest::class); $this->eventDispatcher = $this->createMock(IEventDispatcher::class); $this->userSession = $this->createMock(Session::class); $this->userManager = $this->createMock(IUserManager::class); $this->throttler = $this->createMock(IThrottler::class); $this->controller = new AppPasswordController( 'core', $this->request, $this->session, $this->random, $this->tokenProvider, $this->credentialStore, $this->eventDispatcher, $this->userSession, $this->userManager, $this->throttler ); } public function testGetAppPasswordWithAppPassword() { $this->session->method('exists') ->with('app_password') ->willReturn(true); $this->expectException(OCSForbiddenException::class); $this->controller->getAppPassword(); } public function testGetAppPasswordNoLoginCreds() { $this->session->method('exists') ->with('app_password') ->willReturn(false); $this->credentialStore->method('getLoginCredentials') ->willThrowException(new CredentialsUnavailableException()); $this->expectException(OCSForbiddenException::class); $this->controller->getAppPassword(); } public function testGetAppPassword() { $credentials = $this->createMock(ICredentials::class); $this->session->method('exists') ->with('app_password') ->willReturn(false); $this->credentialStore->method('getLoginCredentials') ->willReturn($credentials); $credentials->method('getUid') ->willReturn('myUID'); $credentials->method('getPassword') ->willReturn('myPassword'); $credentials->method('getLoginName') ->willReturn('myLoginName'); $this->request->method('getHeader') ->with('USER_AGENT') ->willReturn('myUA'); $this->random->method('generate') ->with( 72, ISecureRandom::CHAR_UPPER.ISecureRandom::CHAR_LOWER.ISecureRandom::CHAR_DIGITS )->willReturn('myToken'); $this->tokenProvider->expects($this->once()) ->method('generateToken') ->with( 'myToken', 'myUID', 'myLoginName', 'myPassword', 'myUA', IToken::PERMANENT_TOKEN, IToken::DO_NOT_REMEMBER ); $this->eventDispatcher->expects($this->once()) ->method('dispatchTyped'); $this->controller->getAppPassword(); } public function testGetAppPasswordNoPassword() { $credentials = $this->createMock(ICredentials::class); $this->session->method('exists') ->with('app_password') ->willReturn(false); $this->credentialStore->method('getLoginCredentials') ->willReturn($credentials); $credentials->method('getUid') ->willReturn('myUID'); $credentials->method('getPassword') ->willThrowException(new PasswordUnavailableException()); $credentials->method('getLoginName') ->willReturn('myLoginName'); $this->request->method('getHeader') ->with('USER_AGENT') ->willReturn('myUA'); $this->random->method('generate') ->with( 72, ISecureRandom::CHAR_UPPER.ISecureRandom::CHAR_LOWER.ISecureRandom::CHAR_DIGITS )->willReturn('myToken'); $this->tokenProvider->expects($this->once()) ->method('generateToken') ->with( 'myToken', 'myUID', 'myLoginName', null, 'myUA', IToken::PERMANENT_TOKEN, IToken::DO_NOT_REMEMBER ); $this->eventDispatcher->expects($this->once()) ->method('dispatchTyped'); $this->controller->getAppPassword(); } public function testDeleteAppPasswordNoAppPassword() { $this->session->method('exists') ->with('app_password') ->willReturn(false); $this->expectException(OCSForbiddenException::class); $this->controller->deleteAppPassword(); } public function testDeleteAppPasswordFails() { $this->session->method('exists') ->with('app_password') ->willReturn(true); $this->session->method('get') ->with('app_password') ->willReturn('myAppPassword'); $this->tokenProvider->method('getToken') ->with('myAppPassword') ->willThrowException(new InvalidTokenException()); $this->expectException(OCSForbiddenException::class); $this->controller->deleteAppPassword(); } public function testDeleteAppPasswordSuccess() { $this->session->method('exists') ->with('app_password') ->willReturn(true); $this->session->method('get') ->with('app_password') ->willReturn('myAppPassword'); $token = $this->createMock(IToken::class); $this->tokenProvider->method('getToken') ->with('myAppPassword') ->willReturn($token); $token->method('getUID') ->willReturn('myUID'); $token->method('getId') ->willReturn(42); $this->tokenProvider->expects($this->once()) ->method('invalidateTokenById') ->with( 'myUID', 42 ); $result = $this->controller->deleteAppPassword(); $this->assertEquals(new DataResponse(), $result); } }