TraceDash/tests/Feature/Auth/AuthenticationTest.php

88 lines
2.0 KiB
PHP
Raw Normal View History

2023-11-23 19:27:43 +01:00
<?php
namespace Tests\Feature\Auth;
use App\Models\User;
use App\Providers\RouteServiceProvider;
use Illuminate\Foundation\Testing\RefreshDatabase;
2023-11-24 15:56:12 +01:00
use Livewire\Volt\Volt;
2023-11-23 19:27:43 +01:00
use Tests\TestCase;
class AuthenticationTest extends TestCase
{
use RefreshDatabase;
public function test_login_screen_can_be_rendered(): void
{
$response = $this->get('/login');
2023-11-24 15:56:12 +01:00
$response
->assertSeeVolt('pages.auth.login')
->assertOk();
2023-11-23 19:27:43 +01:00
}
public function test_users_can_authenticate_using_the_login_screen(): void
{
$user = User::factory()->create();
2023-11-24 15:56:12 +01:00
$component = Volt::test('pages.auth.login')
->set('form.email', $user->email)
->set('form.password', 'password');
$component->call('login');
$component
->assertHasNoErrors()
->assertRedirect(RouteServiceProvider::HOME);
2023-11-23 19:27:43 +01:00
$this->assertAuthenticated();
}
public function test_users_can_not_authenticate_with_invalid_password(): void
{
$user = User::factory()->create();
2023-11-24 15:56:12 +01:00
$component = Volt::test('pages.auth.login')
->set('form.email', $user->email)
->set('form.password', 'wrong-password');
$component->call('login');
$component
->assertHasErrors()
->assertNoRedirect();
2023-11-23 19:27:43 +01:00
$this->assertGuest();
}
2023-11-24 15:56:12 +01:00
public function test_navigation_menu_can_be_rendered(): void
{
$user = User::factory()->create();
$this->actingAs($user);
$response = $this->get('/dashboard');
$response
->assertSeeVolt('layout.navigation')
->assertOk();
}
2023-11-23 19:27:43 +01:00
public function test_users_can_logout(): void
{
$user = User::factory()->create();
2023-11-24 15:56:12 +01:00
$this->actingAs($user);
$component = Volt::test('layout.navigation');
$component->call('logout');
$component
->assertHasNoErrors()
->assertRedirect('/');
2023-11-23 19:27:43 +01:00
$this->assertGuest();
}
}