todo/tests/Feature/Auth/PasswordConfirmationTest.php

51 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2024-05-02 10:06:39 +03:00
<?php
namespace Tests\Feature\Auth;
2024-05-29 13:40:28 +03:00
use App\Models\Department;
2024-05-02 10:06:39 +03:00
use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class PasswordConfirmationTest extends TestCase
{
use RefreshDatabase;
2024-05-29 13:40:28 +03:00
public function setUp(): void
{
parent::setUp();
Department::factory()->create();
}
2024-05-02 17:02:46 +03:00
public function testConfirmPasswordScreenCanBeRendered(): void
2024-05-02 10:06:39 +03:00
{
$user = User::factory()->create();
$response = $this->actingAs($user)->get('/confirm-password');
$response->assertStatus(200);
}
2024-05-02 17:02:46 +03:00
public function testPasswordCanBeConfirmed(): void
2024-05-02 10:06:39 +03:00
{
$user = User::factory()->create();
$response = $this->actingAs($user)->post('/confirm-password', [
'password' => 'password',
]);
$response->assertRedirect();
$response->assertSessionHasNoErrors();
}
2024-05-02 17:02:46 +03:00
public function testPasswordIsNotConfirmedWithInvalidPassword(): void
2024-05-02 10:06:39 +03:00
{
$user = User::factory()->create();
$response = $this->actingAs($user)->post('/confirm-password', [
'password' => 'wrong-password',
]);
$response->assertSessionHasErrors();
}
}