lk-students/tests/Feature/Auth/PasswordResetTest.php

74 lines
1.9 KiB
PHP
Raw Normal View History

2024-06-19 13:42:36 +03:00
<?php
namespace Tests\Feature\Auth;
use App\Models\User;
use Illuminate\Auth\Notifications\ResetPassword;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Notification;
use Tests\TestCase;
class PasswordResetTest extends TestCase
{
use RefreshDatabase;
2024-06-19 16:40:34 +03:00
public function testResetPasswordLinkScreenCanBeRendered(): void
2024-06-19 13:42:36 +03:00
{
$response = $this->get('/forgot-password');
$response->assertStatus(200);
}
2024-06-19 16:40:34 +03:00
public function testResetPasswordLinkCanBeRequested(): void
2024-06-19 13:42:36 +03:00
{
Notification::fake();
$user = User::factory()->create();
$this->post('/forgot-password', ['email' => $user->email]);
Notification::assertSentTo($user, ResetPassword::class);
}
2024-06-19 16:40:34 +03:00
public function testResetPasswordScreenCanBeRendered(): void
2024-06-19 13:42:36 +03:00
{
Notification::fake();
$user = User::factory()->create();
$this->post('/forgot-password', ['email' => $user->email]);
Notification::assertSentTo($user, ResetPassword::class, function ($notification) {
2024-06-19 16:40:34 +03:00
$response = $this->get('/reset-password/' . $notification->token);
2024-06-19 13:42:36 +03:00
$response->assertStatus(200);
return true;
});
}
2024-06-19 16:40:34 +03:00
public function testPasswordCanBeResetWithValidToken(): void
2024-06-19 13:42:36 +03:00
{
Notification::fake();
$user = User::factory()->create();
$this->post('/forgot-password', ['email' => $user->email]);
Notification::assertSentTo($user, ResetPassword::class, function ($notification) use ($user) {
$response = $this->post('/reset-password', [
'token' => $notification->token,
'email' => $user->email,
'password' => 'password',
'password_confirmation' => 'password',
]);
$response
->assertSessionHasNoErrors()
->assertRedirect(route('login'));
return true;
});
}
}