get(route('login')); $response->assertStatus(200); } public function test_users_can_authenticate_using_the_login_screen(): void { $user = User::factory()->withoutTwoFactor()->create(); $response = LivewireVolt::test('auth.login') ->set('email', $user->email) ->set('password', 'password') ->call('login'); $response ->assertHasNoErrors() ->assertRedirect(route('dashboard', absolute: false)); $this->assertAuthenticated(); } public function test_users_can_not_authenticate_with_invalid_password(): void { $user = User::factory()->create(); $response = LivewireVolt::test('auth.login') ->set('email', $user->email) ->set('password', 'wrong-password') ->call('login'); $response->assertHasErrors('email'); $this->assertGuest(); } public function test_users_with_two_factor_enabled_are_redirected_to_two_factor_challenge(): void { if (! Features::canManageTwoFactorAuthentication()) { $this->markTestSkipped('Two-factor authentication is not enabled.'); } Features::twoFactorAuthentication([ 'confirm' => true, 'confirmPassword' => true, ]); $user = User::factory()->create(); $user->forceFill([ 'two_factor_secret' => encrypt('test-secret'), 'two_factor_recovery_codes' => encrypt(json_encode(['code1', 'code2'])), 'two_factor_confirmed_at' => now(), ])->save(); $response = LivewireVolt::test('auth.login') ->set('email', $user->email) ->set('password', 'password') ->call('login'); $response->assertRedirect(route('two-factor.login')); $response->assertSessionHas('login.id', $user->id); $this->assertGuest(); } public function test_users_can_logout(): void { $user = User::factory()->create(); $response = $this->actingAs($user)->post(route('logout')); $response->assertRedirect(route('home')); $this->assertGuest(); } }