mirror of
https://github.com/pacnpal/thrillwiki_laravel.git
synced 2025-12-20 16:51:09 -05:00
- Added rides index view with search and filter options. - Created rides show view to display ride details. - Implemented API routes for rides. - Developed authentication routes for user registration, login, and email verification. - Created tests for authentication, email verification, password reset, and user profile management. - Added feature tests for rides and operators, including creation, updating, deletion, and searching. - Implemented soft deletes and caching for rides and operators. - Enhanced manufacturer and operator model tests for various functionalities.
87 lines
2.0 KiB
PHP
87 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Auth;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Livewire\Volt\Volt;
|
|
use Tests\TestCase;
|
|
|
|
class AuthenticationTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_login_screen_can_be_rendered(): void
|
|
{
|
|
$response = $this->get('/login');
|
|
|
|
$response
|
|
->assertOk()
|
|
->assertSeeVolt('pages.auth.login');
|
|
}
|
|
|
|
public function test_users_can_authenticate_using_the_login_screen(): void
|
|
{
|
|
$user = User::factory()->create();
|
|
|
|
$component = Volt::test('pages.auth.login')
|
|
->set('form.email', $user->email)
|
|
->set('form.password', 'password');
|
|
|
|
$component->call('login');
|
|
|
|
$component
|
|
->assertHasNoErrors()
|
|
->assertRedirect(route('dashboard', absolute: false));
|
|
|
|
$this->assertAuthenticated();
|
|
}
|
|
|
|
public function test_users_can_not_authenticate_with_invalid_password(): void
|
|
{
|
|
$user = User::factory()->create();
|
|
|
|
$component = Volt::test('pages.auth.login')
|
|
->set('form.email', $user->email)
|
|
->set('form.password', 'wrong-password');
|
|
|
|
$component->call('login');
|
|
|
|
$component
|
|
->assertHasErrors()
|
|
->assertNoRedirect();
|
|
|
|
$this->assertGuest();
|
|
}
|
|
|
|
public function test_navigation_menu_can_be_rendered(): void
|
|
{
|
|
$user = User::factory()->create();
|
|
|
|
$this->actingAs($user);
|
|
|
|
$response = $this->get('/dashboard');
|
|
|
|
$response
|
|
->assertOk()
|
|
->assertSeeVolt('layout.navigation');
|
|
}
|
|
|
|
public function test_users_can_logout(): void
|
|
{
|
|
$user = User::factory()->create();
|
|
|
|
$this->actingAs($user);
|
|
|
|
$component = Volt::test('layout.navigation');
|
|
|
|
$component->call('logout');
|
|
|
|
$component
|
|
->assertHasNoErrors()
|
|
->assertRedirect('/');
|
|
|
|
$this->assertGuest();
|
|
}
|
|
}
|