summaryrefslogtreecommitdiffstats
path: root/tests/Core
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-11-29 10:39:01 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-11-29 10:39:01 +0100
commit6734e871717d0008b71b8b969878363c14be87c4 (patch)
treee9fb86c7b7b4866fc390aeb30238c8cf991cec31 /tests/Core
parent5e4990faddfd05a1f368e4d6d6070a9d1ff55dfc (diff)
downloadnextcloud-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.php64
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())