2025-10-16 14:22:46 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use App\Models\User;
|
|
|
|
|
use Laravel\Fortify\Features;
|
|
|
|
|
use Livewire\Volt\Volt as LivewireVolt;
|
|
|
|
|
|
2025-10-16 14:22:58 +02:00
|
|
|
test('login screen can be rendered', function () {
|
|
|
|
|
$response = $this->get(route('login'));
|
2025-10-16 14:22:46 +02:00
|
|
|
|
2025-10-16 14:22:58 +02:00
|
|
|
$response->assertStatus(200);
|
|
|
|
|
});
|
2025-10-16 14:22:46 +02:00
|
|
|
|
2025-10-16 14:22:58 +02:00
|
|
|
test('users can authenticate using the login screen', function () {
|
|
|
|
|
$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();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('users can not authenticate with invalid password', function () {
|
|
|
|
|
$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 with two factor enabled are redirected to two factor challenge', function () {
|
|
|
|
|
if (! Features::canManageTwoFactorAuthentication()) {
|
|
|
|
|
$this->markTestSkipped('Two-factor authentication is not enabled.');
|
2025-10-16 14:22:46 +02:00
|
|
|
}
|
|
|
|
|
|
2025-10-16 14:22:58 +02:00
|
|
|
Features::twoFactorAuthentication([
|
|
|
|
|
'confirm' => true,
|
|
|
|
|
'confirmPassword' => true,
|
|
|
|
|
]);
|
2025-10-16 14:22:46 +02:00
|
|
|
|
2025-10-16 14:22:58 +02:00
|
|
|
$user = User::factory()->create();
|
2025-10-16 14:22:46 +02:00
|
|
|
|
2025-10-16 14:22:58 +02:00
|
|
|
$user->forceFill([
|
|
|
|
|
'two_factor_secret' => encrypt('test-secret'),
|
|
|
|
|
'two_factor_recovery_codes' => encrypt(json_encode(['code1', 'code2'])),
|
|
|
|
|
'two_factor_confirmed_at' => now(),
|
|
|
|
|
])->save();
|
2025-10-16 14:22:46 +02:00
|
|
|
|
2025-10-16 14:22:58 +02:00
|
|
|
$response = LivewireVolt::test('auth.login')
|
|
|
|
|
->set('email', $user->email)
|
|
|
|
|
->set('password', 'password')
|
|
|
|
|
->call('login');
|
2025-10-16 14:22:46 +02:00
|
|
|
|
2025-10-16 14:22:58 +02:00
|
|
|
$response->assertRedirect(route('two-factor.login'));
|
|
|
|
|
$response->assertSessionHas('login.id', $user->id);
|
|
|
|
|
$this->assertGuest();
|
|
|
|
|
});
|
2025-10-16 14:22:46 +02:00
|
|
|
|
2025-10-16 14:22:58 +02:00
|
|
|
test('users can logout', function () {
|
|
|
|
|
$user = User::factory()->create();
|
2025-10-16 14:22:46 +02:00
|
|
|
|
2025-11-21 10:00:32 +01:00
|
|
|
$response = $this->actingAs($user)
|
|
|
|
|
->withSession(['_token' => 'test-token'])
|
|
|
|
|
->post(route('logout'), ['_token' => 'test-token']);
|
2025-10-16 14:22:46 +02:00
|
|
|
|
2025-10-16 14:22:58 +02:00
|
|
|
$response->assertRedirect(route('home'));
|
2025-10-16 14:22:46 +02:00
|
|
|
|
2025-10-16 14:22:58 +02:00
|
|
|
$this->assertGuest();
|
2025-10-20 22:10:08 +02:00
|
|
|
});
|