todo/tests/Feature/Auth/AuthenticationTest.php

55 lines
1.2 KiB
PHP
Raw Normal View History

2024-05-02 10:06:39 +03:00
<?php
namespace Tests\Feature\Auth;
use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AuthenticationTest extends TestCase
{
use RefreshDatabase;
2024-05-02 17:02:46 +03:00
public function testLoginScreenCanBeRendered(): void
2024-05-02 10:06:39 +03:00
{
$response = $this->get('/login');
$response->assertStatus(200);
}
2024-05-02 17:02:46 +03:00
public function testUsersCanAuthenticateUsingTheLoginScreen(): void
2024-05-02 10:06:39 +03:00
{
$user = User::factory()->create();
$response = $this->post('/login', [
'email' => $user->email,
'password' => 'password',
]);
$this->assertAuthenticated();
$response->assertRedirect(route('dashboard', absolute: false));
}
2024-05-02 17:02:46 +03:00
public function testUsersCanNotAuthenticateWithInvalidPassword(): void
2024-05-02 10:06:39 +03:00
{
$user = User::factory()->create();
$this->post('/login', [
'email' => $user->email,
'password' => 'wrong-password',
]);
$this->assertGuest();
}
2024-05-02 17:02:46 +03:00
public function testUsersCanLogout(): void
2024-05-02 10:06:39 +03:00
{
$user = User::factory()->create();
$response = $this->actingAs($user)->post('/logout');
$this->assertGuest();
$response->assertRedirect('/');
}
}