TKK_E32222868/tests/Feature/Auth/PasswordConfirmationTest.php

39 lines
980 B
PHP

<?php
use App\Livewire\Auth\ConfirmPassword;
use App\Models\User;
use Livewire\Livewire;
test('confirm password screen can be rendered', function () {
$user = User::factory()->create();
$response = $this->actingAs($user)->get('/confirm-password');
$response->assertStatus(200);
});
test('password can be confirmed', function () {
$user = User::factory()->create();
$this->actingAs($user);
$response = Livewire::test(ConfirmPassword::class)
->set('password', 'password')
->call('confirmPassword');
$response
->assertHasNoErrors()
->assertRedirect(route('dashboard', absolute: false));
});
test('password is not confirmed with invalid password', function () {
$user = User::factory()->create();
$this->actingAs($user);
$response = Livewire::test(ConfirmPassword::class)
->set('password', 'wrong-password')
->call('confirmPassword');
$response->assertHasErrors(['password']);
});