Merge pull request #6364 from nextcloud/fix_login_loop

Fix login with basic auth
This commit is contained in:
Morris Jobke 2017-09-06 17:04:00 +02:00 committed by GitHub
commit 5d4540f179
2 changed files with 5 additions and 2 deletions

View File

@ -293,7 +293,6 @@ class Manager {
return false;
}
} catch (InvalidTokenException $e) {
return true;
}
}

View File

@ -566,6 +566,8 @@ class ManagerTest extends TestCase {
}
public function testNeedsSecondFactorInvalidToken() {
$this->prepareNoProviders();
$user = $this->createMock(IUser::class);
$user->method('getUID')
->willReturn('user');
@ -579,6 +581,8 @@ class ManagerTest extends TestCase {
->with('mysessionid')
->willThrowException(new OC\Authentication\Exceptions\InvalidTokenException());
$this->assertTrue($this->manager->needsSecondFactor($user));
$this->config->method('getUserKeys')->willReturn([]);
$this->assertFalse($this->manager->needsSecondFactor($user));
}
}