Files
monica/tests/Feature/Auth/UpdatePasswordTest.php

61 lines
1.6 KiB
PHP

<?php
namespace Tests\Feature\Auth;
use App\Models\User;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Support\Facades\Hash;
use PHPUnit\Framework\Attributes\Test;
use Tests\TestCase;
class UpdatePasswordTest extends TestCase
{
use DatabaseTransactions;
#[Test]
public function password_can_be_updated()
{
$this->actingAs($user = User::factory()->create());
$response = $this->put('/user/password', [
'current_password' => 'password',
'password' => 'Password$123',
'password_confirmation' => 'Password$123',
]);
$this->assertTrue(Hash::check('Password$123', $user->fresh()->password));
}
#[Test]
public function current_password_must_be_correct()
{
$this->actingAs($user = User::factory()->create());
$response = $this->put('/user/password', [
'current_password' => 'wrong-password',
'password' => 'new-password',
'password_confirmation' => 'new-password',
]);
$response->assertSessionHasErrors();
$this->assertTrue(Hash::check('password', $user->fresh()->password));
}
#[Test]
public function new_passwords_must_match()
{
$this->actingAs($user = User::factory()->create());
$response = $this->put('/user/password', [
'current_password' => 'password',
'password' => 'new-password',
'password_confirmation' => 'wrong-password',
]);
$response->assertSessionHasErrors();
$this->assertTrue(Hash::check('password', $user->fresh()->password));
}
}