request = $this->createMock(IRequest::class); $this->loginFlowV2Service = $this->createMock(LoginFlowV2Service::class); $this->urlGenerator = $this->createMock(IURLGenerator::class); $this->session = $this->createMock(ISession::class); $this->userSession = $this->createMock(IUserSession::class); $this->random = $this->createMock(ISecureRandom::class); $this->defaults = $this->createMock(Defaults::class); $this->l = $this->createMock(IL10N::class); $this->controller = new ClientFlowLoginV2Controller( 'core', $this->request, $this->loginFlowV2Service, $this->urlGenerator, $this->session, $this->userSession, $this->random, $this->defaults, 'user', $this->l ); } public function testPollInvalid(): void { $this->loginFlowV2Service->method('poll') ->with('token') ->willThrowException(new LoginFlowV2NotFoundException()); $result = $this->controller->poll('token'); $this->assertSame([], $result->getData()); $this->assertSame(Http::STATUS_NOT_FOUND, $result->getStatus()); } public function testPollValid(): void { $creds = new LoginFlowV2Credentials('server', 'login', 'pass'); $this->loginFlowV2Service->method('poll') ->with('token') ->willReturn($creds); $result = $this->controller->poll('token'); $this->assertSame($creds->jsonSerialize(), $result->getData()); $this->assertSame(Http::STATUS_OK, $result->getStatus()); } public function testLandingInvalid(): void { $this->session->expects($this->never()) ->method($this->anything()); $this->loginFlowV2Service->method('startLoginFlow') ->with('token') ->willReturn(false); $result = $this->controller->landing('token'); $this->assertSame(Http::STATUS_FORBIDDEN, $result->getStatus()); $this->assertInstanceOf(Http\StandaloneTemplateResponse::class, $result); } public function testLandingValid(): void { $this->session->expects($this->once()) ->method('set') ->with('client.flow.v2.login.token', 'token'); $this->loginFlowV2Service->method('startLoginFlow') ->with('token') ->willReturn(true); $this->urlGenerator->method('linkToRouteAbsolute') ->with('core.ClientFlowLoginV2.showAuthPickerPage') ->willReturn('https://server/path'); $result = $this->controller->landing('token'); $this->assertInstanceOf(Http\RedirectResponse::class, $result); $this->assertSame(Http::STATUS_SEE_OTHER, $result->getStatus()); $this->assertSame('https://server/path', $result->getRedirectURL()); } public function testShowAuthPickerNoLoginToken(): void { $this->session->method('get') ->willReturn(null); $result = $this->controller->showAuthPickerPage(); $this->assertSame(Http::STATUS_FORBIDDEN, $result->getStatus()); } public function testShowAuthPickerInvalidLoginToken(): void { $this->session->method('get') ->with('client.flow.v2.login.token') ->willReturn('loginToken'); $this->loginFlowV2Service->method('getByLoginToken') ->with('loginToken') ->willThrowException(new LoginFlowV2NotFoundException()); $result = $this->controller->showAuthPickerPage(); $this->assertSame(Http::STATUS_FORBIDDEN, $result->getStatus()); } public function testShowAuthPickerValidLoginToken(): void { $this->session->method('get') ->with('client.flow.v2.login.token') ->willReturn('loginToken'); $flow = new LoginFlowV2(); $this->loginFlowV2Service->method('getByLoginToken') ->with('loginToken') ->willReturn($flow); $this->random->method('generate') ->with(64, ISecureRandom::CHAR_LOWER.ISecureRandom::CHAR_UPPER.ISecureRandom::CHAR_DIGITS) ->willReturn('random'); $this->session->expects($this->once()) ->method('set') ->with('client.flow.v2.state.token', 'random'); $this->controller->showAuthPickerPage(); } public function testGrantPageNoStateToken(): void { $result = $this->controller->grantPage(null); $this->assertSame(Http::STATUS_FORBIDDEN, $result->getStatus()); } public function testGrantPageInvalidStateToken(): void { $this->session->method('get') ->willReturnCallback(function ($name) { return null; }); $result = $this->controller->grantPage('stateToken'); $this->assertSame(Http::STATUS_FORBIDDEN, $result->getStatus()); } public function testGrantPageInvalidLoginToken(): void { $this->session->method('get') ->willReturnCallback(function ($name) { if ($name === 'client.flow.v2.state.token') { return 'stateToken'; } if ($name === 'client.flow.v2.login.token') { return 'loginToken'; } return null; }); $this->loginFlowV2Service->method('getByLoginToken') ->with('loginToken') ->willThrowException(new LoginFlowV2NotFoundException()); $result = $this->controller->grantPage('stateToken'); $this->assertSame(Http::STATUS_FORBIDDEN, $result->getStatus()); } public function testGrantPageValid(): void { $this->session->method('get') ->willReturnCallback(function ($name) { if ($name === 'client.flow.v2.state.token') { return 'stateToken'; } if ($name === 'client.flow.v2.login.token') { return 'loginToken'; } return null; }); $user = $this->createMock(IUser::class); $user->method('getUID') ->willReturn('uid'); $user->method('getDisplayName') ->willReturn('display name'); $this->userSession->method('getUser') ->willReturn($user); $flow = new LoginFlowV2(); $this->loginFlowV2Service->method('getByLoginToken') ->with('loginToken') ->willReturn($flow); $result = $this->controller->grantPage('stateToken'); $this->assertSame(Http::STATUS_OK, $result->getStatus()); } public function testGenerateAppPasswordInvalidStateToken(): void { $this->session->method('get') ->willReturnCallback(function ($name) { return null; }); $result = $this->controller->generateAppPassword('stateToken'); $this->assertSame(Http::STATUS_FORBIDDEN, $result->getStatus()); } public function testGenerateAppPassworInvalidLoginToken(): void { $this->session->method('get') ->willReturnCallback(function ($name) { if ($name === 'client.flow.v2.state.token') { return 'stateToken'; } if ($name === 'client.flow.v2.login.token') { return 'loginToken'; } return null; }); $this->loginFlowV2Service->method('getByLoginToken') ->with('loginToken') ->willThrowException(new LoginFlowV2NotFoundException()); $result = $this->controller->generateAppPassword('stateToken'); $this->assertSame(Http::STATUS_FORBIDDEN, $result->getStatus()); } public function testGenerateAppPassworValid(): void { $this->session->method('get') ->willReturnCallback(function ($name) { if ($name === 'client.flow.v2.state.token') { return 'stateToken'; } if ($name === 'client.flow.v2.login.token') { return 'loginToken'; } return null; }); $flow = new LoginFlowV2(); $this->loginFlowV2Service->method('getByLoginToken') ->with('loginToken') ->willReturn($flow); $clearedState = false; $clearedLogin = false; $this->session->method('remove') ->willReturnCallback(function ($name) use (&$clearedLogin, &$clearedState) { if ($name === 'client.flow.v2.state.token') { $clearedState = true; } if ($name === 'client.flow.v2.login.token') { $clearedLogin = true; } }); $this->session->method('getId') ->willReturn('sessionId'); $this->loginFlowV2Service->expects($this->once()) ->method('flowDone') ->with( 'loginToken', 'sessionId', 'https://server', 'user' )->willReturn(true); $this->request->method('getServerProtocol') ->willReturn('https'); $this->request->method('getRequestUri') ->willReturn('/login/v2'); $this->request->method('getServerHost') ->willReturn('server'); $result = $this->controller->generateAppPassword('stateToken'); $this->assertSame(Http::STATUS_OK, $result->getStatus()); $this->assertTrue($clearedLogin); $this->assertTrue($clearedState); } }