get($portalUrl.'/login'); $response->assertStatus(200); }); test('users can authenticate using the login screen', function () { /** @var TestCase $this */ $user = User::factory()->create(); $response = LivewireVolt::test('auth.login') ->set('email', $user->email) ->set('password', 'password') ->call('login'); $response ->assertHasNoErrors() ->assertRedirect(route('dashboard', absolute: false)); $this->assertAuthenticated(); $user->refresh(); expect($user->last_login_at)->not->toBeNull(); expect($user->last_login_ip)->toBe('127.0.0.1'); }); test('users can not authenticate with invalid password', function () { /** @var TestCase $this */ $user = User::factory()->create(); $response = LivewireVolt::test('auth.login') ->set('email', $user->email) ->set('password', 'wrong-password') ->call('login'); $response->assertHasErrors('email'); $this->assertGuest(); }); test('users can logout', function () { /** @var TestCase $this */ $user = User::factory()->create(); $response = $this->actingAs($user)->post('/logout'); $response->assertRedirect('/'); $this->assertGuest(); });