Features: - Implement two fee types: entrance fee and annual fee (both NT$1,000) - Add 50% discount for disability certificate holders - Add disability certificate upload in member profile - Integrate disability verification into cashier approval workflow - Add membership fee settings in system admin Document permissions: - Fix hard-coded role logic in Document model - Use permission-based authorization instead of role checks Additional features: - Add announcements, general ledger, and trial balance modules - Add income management and accounting entries - Add comprehensive test suite with factories - Update UI translations to Traditional Chinese 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
105 lines
2.7 KiB
PHP
105 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Http\Middleware\VerifyCsrfToken;
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Tests\TestCase;
|
|
|
|
class ProfileTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_profile_page_is_displayed(): void
|
|
{
|
|
$user = User::factory()->create();
|
|
|
|
$response = $this
|
|
->actingAs($user)
|
|
->get('/profile');
|
|
|
|
$response->assertOk();
|
|
}
|
|
|
|
public function test_profile_information_can_be_updated(): void
|
|
{
|
|
$user = User::factory()->create();
|
|
|
|
$response = $this
|
|
->withoutMiddleware(VerifyCsrfToken::class)
|
|
->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);
|
|
}
|
|
|
|
public function test_email_verification_status_is_unchanged_when_the_email_address_is_unchanged(): void
|
|
{
|
|
$user = User::factory()->create();
|
|
|
|
$response = $this
|
|
->withoutMiddleware(VerifyCsrfToken::class)
|
|
->actingAs($user)
|
|
->patch('/profile', [
|
|
'name' => 'Test User',
|
|
'email' => $user->email,
|
|
]);
|
|
|
|
$response
|
|
->assertSessionHasNoErrors()
|
|
->assertRedirect('/profile');
|
|
|
|
$this->assertNotNull($user->refresh()->email_verified_at);
|
|
}
|
|
|
|
public function test_user_can_delete_their_account(): void
|
|
{
|
|
$user = User::factory()->create();
|
|
|
|
$response = $this
|
|
->withoutMiddleware(VerifyCsrfToken::class)
|
|
->actingAs($user)
|
|
->delete('/profile', [
|
|
'password' => 'password',
|
|
]);
|
|
|
|
$response
|
|
->assertSessionHasNoErrors()
|
|
->assertRedirect('/');
|
|
|
|
$this->assertGuest();
|
|
$this->assertNull($user->fresh());
|
|
}
|
|
|
|
public function test_correct_password_must_be_provided_to_delete_account(): void
|
|
{
|
|
$user = User::factory()->create();
|
|
|
|
$response = $this
|
|
->withoutMiddleware(VerifyCsrfToken::class)
|
|
->actingAs($user)
|
|
->from('/profile')
|
|
->delete('/profile', [
|
|
'password' => 'wrong-password',
|
|
]);
|
|
|
|
$response
|
|
->assertSessionHasErrorsIn('userDeletion', 'password')
|
|
->assertRedirect('/profile');
|
|
|
|
$this->assertNotNull($user->fresh());
|
|
}
|
|
}
|