2024-07-18 00:11:32 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use App\Models\User;
|
|
|
|
|
|
|
|
test('login screen can be rendered', function () {
|
|
|
|
$response = $this->get('/login');
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('users can authenticate using the login screen', function () {
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
$response = $this->post('/login', [
|
|
|
|
'email' => $user->email,
|
|
|
|
'password' => 'password',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertAuthenticated();
|
|
|
|
$response->assertRedirect(route('dashboard', absolute: false));
|
|
|
|
});
|
|
|
|
|
|
|
|
test('users cannot authenticate with invalid password', function () {
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
$this->post('/login', [
|
|
|
|
'email' => $user->email,
|
|
|
|
'password' => 'wrong-password',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertGuest();
|
|
|
|
});
|
2024-09-26 16:55:44 -04:00
|
|
|
|
|
|
|
test('users can authenticate using Discord', function () {
|
2024-10-01 00:50:38 -04:00
|
|
|
$response = $this->get(route('login.socialite', ['provider' => 'discord']));
|
2024-09-26 16:55:44 -04:00
|
|
|
|
|
|
|
$response->assertStatus(302);
|
2024-10-01 00:50:38 -04:00
|
|
|
$response->assertRedirect();
|
2024-09-26 16:55:44 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
test('user can not authenticate using a null password', function () {
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
$response = $this->post('/login', [
|
|
|
|
'email' => $user->email,
|
|
|
|
'password' => null,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertGuest();
|
|
|
|
$response->assertSessionHasErrors('password');
|
|
|
|
});
|