Fixed: Resolve login from cache

This commit is contained in:
philipp lang 2021-11-17 00:33:45 +01:00
parent 2519d63929
commit 23e0a27f9a
1 changed files with 20 additions and 0 deletions
tests/Feature

View File

@ -53,6 +53,26 @@ class LoginTest extends TestCase
Http::assertSentCount(2);
}
public function testItResolvesTheLoginFromTheCache()
{
$this->withoutExceptionHandling();
app('nami.backend')->fakeLogin(123, [], 'cookie-123');
$this->post('/login', [
'mglnr' => 123,
'password' => 'secret'
]);
auth()->setUser(null);
$this->post('/login', [
'mglnr' => 123,
'password' => 'secret'
]);
$this->assertTrue(auth()->check());
Http::assertSentCount(2);
}
public function testItThrowsExceptionWhenLoginFailed()
{
app('nami.backend')->fakeFailedLogin(123);