auth tests

This commit is contained in:
Giuseppe Naponiello
2026-06-22 14:31:44 +02:00
parent 34a8ebc6fb
commit cc4e174880
75 changed files with 4679 additions and 168 deletions

View File

@@ -0,0 +1,73 @@
<?php
namespace Tests\Feature\Auth;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
/**
* Verifica la scala di accesso (tier.app / tier.admin) attraverso rotte reali:
* - tier.app user-roles index (auth + verified + setup.complete)
* - tier.admin→ users index (+ admin)
* Copre i rami di EnsureSetupComplete, del middleware `verified` e di IsAdmin.
*/
class AccessTierTest extends TestCase
{
use RefreshDatabase;
private const APP_ROUTE = '/api/user-roles';
private const ADMIN_ROUTE = '/api/users';
public function test_tier_app_allows_a_fully_operational_user(): void
{
$this->actingAs($this->operationalUser(), 'sanctum');
$this->getJson(self::APP_ROUTE)->assertOk();
}
public function test_tier_app_requires_authentication(): void
{
$this->getJson(self::APP_ROUTE)->assertUnauthorized();
}
public function test_tier_app_blocks_user_who_must_change_password(): void
{
$this->actingAs($this->setupIncompleteUser(), 'sanctum');
$this->getJson(self::APP_ROUTE)
->assertForbidden()
->assertJsonPath('setup_status', 'password_required');
}
public function test_tier_app_blocks_user_without_two_factor_setup(): void
{
$user = $this->operationalUser(['two_factor_setup_completed_at' => null]);
$this->actingAs($user, 'sanctum');
$this->getJson(self::APP_ROUTE)
->assertForbidden()
->assertJsonPath('setup_status', '2fa_setup_required');
}
public function test_tier_app_blocks_unverified_user(): void
{
$this->actingAs($this->unverifiedUser(), 'sanctum');
$this->getJson(self::APP_ROUTE)->assertForbidden();
}
public function test_tier_admin_allows_admin(): void
{
$this->actingAs($this->adminUser(), 'sanctum');
$this->getJson(self::ADMIN_ROUTE)->assertOk();
}
public function test_tier_admin_forbids_non_admin(): void
{
$this->actingAs($this->operationalUser(), 'sanctum');
$this->getJson(self::ADMIN_ROUTE)->assertForbidden();
}
}

View File

@@ -0,0 +1,86 @@
<?php
namespace Tests\Feature\Auth;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AuthControllerTest extends TestCase
{
use RefreshDatabase;
public function test_me_returns_authenticated_user_with_setup_status(): void
{
$user = $this->operationalUser();
$this->actingAs($user, 'sanctum');
$response = $this->getJson('/api/user');
$response->assertOk()
->assertJsonPath('id', $user->id)
->assertJsonPath('email', $user->email)
->assertJsonPath('setup_status', 'complete');
// Gli attributi sensibili non devono mai essere serializzati.
$this->assertArrayNotHasKey('password', $response->json());
$this->assertArrayNotHasKey('two_factor_secret', $response->json());
$this->assertArrayNotHasKey('two_factor_recovery_codes', $response->json());
}
public function test_me_is_reachable_during_setup(): void
{
// La rotta /user è nel tier "transitional": deve restare accessibile anche
// a setup incompleto, così il frontend può leggere setup_status.
$user = $this->setupIncompleteUser();
$this->actingAs($user, 'sanctum');
$this->getJson('/api/user')
->assertOk()
->assertJsonPath('setup_status', 'password_required');
}
public function test_me_requires_authentication(): void
{
$this->getJson('/api/user')->assertUnauthorized();
}
public function test_logout_succeeds_and_forgets_cookies(): void
{
$user = $this->operationalUser();
$this->actingAs($user, 'sanctum');
$response = $this->postJson('/api/logout');
$response->assertOk()
->assertJsonPath('message', config('messages.auth.logout_success'))
->assertCookieExpired('XSRF-TOKEN');
}
public function test_destroy_account_soft_deletes_the_user(): void
{
$user = $this->operationalUser();
$this->actingAs($user, 'sanctum');
$this->deleteJson('/api/account')
->assertOk()
->assertJsonPath('message', config('messages.account.deleted'));
$this->assertSoftDeleted('users', ['id' => $user->id]);
}
public function test_destroy_account_is_forbidden_for_the_system_user(): void
{
$user = $this->systemUser();
$this->actingAs($user, 'sanctum');
$this->deleteJson('/api/account')->assertForbidden();
$this->assertDatabaseHas('users', ['id' => $user->id, 'deleted_at' => null]);
}
public function test_session_endpoints_require_authentication(): void
{
$this->postJson('/api/logout')->assertUnauthorized();
$this->deleteJson('/api/account')->assertUnauthorized();
}
}