Roman_applicant-site/tests/Feature/Auth/AuthenticationTest.php

56 lines
1.2 KiB
PHP
Raw Normal View History

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