2024-06-19 13:42:36 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Feature;
|
|
|
|
|
|
|
|
use App\Models\User;
|
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
class ProfileTest extends TestCase
|
|
|
|
{
|
|
|
|
use RefreshDatabase;
|
|
|
|
|
2024-06-19 16:40:34 +03:00
|
|
|
public function testProfilePageIsDisplayed(): void
|
2024-06-19 13:42:36 +03:00
|
|
|
{
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
->actingAs($user)
|
|
|
|
->get('/profile');
|
|
|
|
|
|
|
|
$response->assertOk();
|
|
|
|
}
|
|
|
|
|
2024-06-19 16:40:34 +03:00
|
|
|
public function testProfileInformationCanBeUpdated(): void
|
2024-06-19 13:42:36 +03:00
|
|
|
{
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
->actingAs($user)
|
|
|
|
->patch('/profile', [
|
|
|
|
'name' => 'Test User',
|
|
|
|
'email' => 'test@example.com',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$response
|
|
|
|
->assertSessionHasNoErrors()
|
|
|
|
->assertRedirect('/profile');
|
|
|
|
|
|
|
|
$user->refresh();
|
|
|
|
|
|
|
|
$this->assertSame('Test User', $user->name);
|
|
|
|
$this->assertSame('test@example.com', $user->email);
|
|
|
|
$this->assertNull($user->email_verified_at);
|
|
|
|
}
|
|
|
|
|
2024-06-19 16:40:34 +03:00
|
|
|
public function testEmailVerificationStatusIsUnchangedWhenTheEmailAddressIsUnchanged(): void
|
2024-06-19 13:42:36 +03:00
|
|
|
{
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
->actingAs($user)
|
|
|
|
->patch('/profile', [
|
|
|
|
'name' => 'Test User',
|
|
|
|
'email' => $user->email,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$response
|
|
|
|
->assertSessionHasNoErrors()
|
|
|
|
->assertRedirect('/profile');
|
|
|
|
|
|
|
|
$this->assertNotNull($user->refresh()->email_verified_at);
|
|
|
|
}
|
|
|
|
|
2024-06-19 16:40:34 +03:00
|
|
|
public function testUserCanDeleteTheirAccount(): void
|
2024-06-19 13:42:36 +03:00
|
|
|
{
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
->actingAs($user)
|
|
|
|
->delete('/profile', [
|
|
|
|
'password' => 'password',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$response
|
|
|
|
->assertSessionHasNoErrors()
|
|
|
|
->assertRedirect('/');
|
|
|
|
|
|
|
|
$this->assertGuest();
|
|
|
|
$this->assertNull($user->fresh());
|
|
|
|
}
|
|
|
|
|
2024-06-19 16:40:34 +03:00
|
|
|
public function testCorrectPasswordMustBeProvidedToDeleteAccount(): void
|
2024-06-19 13:42:36 +03:00
|
|
|
{
|
|
|
|
$user = User::factory()->create();
|
|
|
|
|
|
|
|
$response = $this
|
|
|
|
->actingAs($user)
|
|
|
|
->from('/profile')
|
|
|
|
->delete('/profile', [
|
|
|
|
'password' => 'wrong-password',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$response
|
|
|
|
->assertSessionHasErrorsIn('userDeletion', 'password')
|
|
|
|
->assertRedirect('/profile');
|
|
|
|
|
|
|
|
$this->assertNotNull($user->fresh());
|
|
|
|
}
|
|
|
|
}
|