Prime-Chat/tests/Feature/Auth/AuthenticationTest.php

39 lines
900 B
PHP
Raw Normal View History

2024-12-19 07:21:23 +04:00
<?php
use App\Models\User;
2025-01-16 22:22:38 +04:00
use Illuminate\Foundation\Testing\RefreshDatabase;
2024-12-19 07:21:23 +04:00
2025-01-16 22:22:38 +04:00
uses(RefreshDatabase::class);
2024-12-19 07:21:23 +04:00
test('users can authenticate using the login screen', function () {
$user = User::factory()->create();
$response = $this->post('/login', [
'email' => $user->email,
'password' => 'password',
]);
$this->assertAuthenticated();
2025-01-16 22:22:38 +04:00
$response->assertRedirect(route('profile.edit', absolute: false));
2024-12-19 07:21:23 +04:00
});
test('users can not authenticate with invalid password', function () {
$user = User::factory()->create();
$this->post('/login', [
'email' => $user->email,
'password' => 'wrong-password',
]);
$this->assertGuest();
});
test('users can logout', function () {
$user = User::factory()->create();
$response = $this->actingAs($user)->post('/logout');
$this->assertGuest();
$response->assertRedirect('/');
});