diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-11-29 10:39:01 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-11-29 10:39:01 +0100 |
commit | 6734e871717d0008b71b8b969878363c14be87c4 (patch) | |
tree | e9fb86c7b7b4866fc390aeb30238c8cf991cec31 /tests/Core | |
parent | 5e4990faddfd05a1f368e4d6d6070a9d1ff55dfc (diff) | |
download | nextcloud-server-6734e871717d0008b71b8b969878363c14be87c4.tar.gz nextcloud-server-6734e871717d0008b71b8b969878363c14be87c4.zip |
Fix tests
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'tests/Core')
-rw-r--r-- | tests/Core/Controller/ClientFlowLoginControllerTest.php | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/tests/Core/Controller/ClientFlowLoginControllerTest.php b/tests/Core/Controller/ClientFlowLoginControllerTest.php index b54897ddc44..ba9caabd0b0 100644 --- a/tests/Core/Controller/ClientFlowLoginControllerTest.php +++ b/tests/Core/Controller/ClientFlowLoginControllerTest.php @@ -242,70 +242,6 @@ class ClientFlowLoginControllerTest extends TestCase { $this->assertEquals($expected, $this->clientFlowLoginController->showAuthPickerPage('MyClientIdentifier')); } - public function testRedirectPageWithInvalidToken() { - $this->session - ->expects($this->once()) - ->method('get') - ->with('client.flow.state.token') - ->willReturn('OtherToken'); - - $expected = new TemplateResponse( - 'core', - '403', - [ - 'file' => 'State token does not match', - ], - 'guest' - ); - $expected->setStatus(Http::STATUS_FORBIDDEN); - $this->assertEquals($expected, $this->clientFlowLoginController->redirectPage('MyStateToken')); - } - - public function testRedirectPageWithoutToken() { - $this->session - ->expects($this->once()) - ->method('get') - ->with('client.flow.state.token') - ->willReturn(null); - - $expected = new TemplateResponse( - 'core', - '403', - [ - 'file' => 'State token does not match', - ], - 'guest' - ); - $expected->setStatus(Http::STATUS_FORBIDDEN); - $this->assertEquals($expected, $this->clientFlowLoginController->redirectPage('MyStateToken')); - } - - public function testRedirectPage() { - $this->session - ->expects($this->at(0)) - ->method('get') - ->with('client.flow.state.token') - ->willReturn('MyStateToken'); - $this->session - ->expects($this->at(1)) - ->method('get') - ->with('oauth.state') - ->willReturn('MyOauthStateToken'); - - $expected = new TemplateResponse( - 'core', - 'loginflow/redirect', - [ - 'urlGenerator' => $this->urlGenerator, - 'stateToken' => 'MyStateToken', - 'clientIdentifier' => 'Identifier', - 'oauthState' => 'MyOauthStateToken', - ], - 'guest' - ); - $this->assertEquals($expected, $this->clientFlowLoginController->redirectPage('MyStateToken', 'Identifier')); - } - public function testGenerateAppPasswordWithInvalidToken() { $this->session ->expects($this->once()) |