## Summary - turn the Monitoring audit log placeholder into a real workspace-scoped audit review surface - introduce a shared audit recorder, richer audit value objects, and additive audit log schema evolution - add audit outcome and actor badges, permission-aware related navigation, and durable audit retention coverage ## Included - canonical `/admin/audit-log` list and detail inspection UI - audit model helpers, taxonomy expansion, actor/target snapshots, and recorder/builder services - operation terminal audit writes and purge command retention changes - spec 134 design artifacts and focused Pest coverage for audit foundation behavior ## Validation - `vendor/bin/sail bin pint --dirty --format agent` - `vendor/bin/sail artisan test --compact tests/Unit/Audit tests/Unit/Badges/AuditBadgesTest.php tests/Feature/Filament/AuditLogPageTest.php tests/Feature/Filament/AuditLogDetailInspectionTest.php tests/Feature/Filament/AuditLogAuthorizationTest.php tests/Feature/Monitoring/AuditCoverageGovernanceTest.php tests/Feature/Monitoring/AuditCoverageOperationsTest.php tests/Feature/Console/TenantpilotPurgeNonPersistentDataTest.php` ## Notes - Livewire v4.0+ compliance is preserved within the existing Filament v5 application. - No provider registration changes were needed; panel provider registration remains in `bootstrap/providers.php`. - No new globally searchable resource was introduced. - The audit page remains read-only; no destructive actions were added. - No new asset pipeline changes were introduced; existing deploy-time `php artisan filament:assets` behavior remains unchanged. Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #163
88 lines
2.8 KiB
PHP
88 lines
2.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Filament\Pages\Monitoring\AuditLog as AuditLogPage;
|
|
use App\Models\AuditLog as AuditLogModel;
|
|
use App\Models\BackupSet;
|
|
use App\Models\Tenant;
|
|
use App\Models\User;
|
|
use Filament\Facades\Filament;
|
|
use Livewire\Features\SupportTesting\Testable;
|
|
use Livewire\Livewire;
|
|
|
|
function auditLogDetailTestComponent(User $user, ?Tenant $tenant = null): Testable
|
|
{
|
|
test()->actingAs($user);
|
|
Filament::setTenant($tenant, true);
|
|
|
|
return Livewire::actingAs($user)->test(AuditLogPage::class);
|
|
}
|
|
|
|
function auditLogDetailTestRecord(Tenant $tenant, array $attributes = []): AuditLogModel
|
|
{
|
|
return AuditLogModel::query()->create(array_merge([
|
|
'workspace_id' => (int) $tenant->workspace_id,
|
|
'tenant_id' => (int) $tenant->getKey(),
|
|
'actor_email' => 'auditor@example.com',
|
|
'actor_name' => 'Audit Operator',
|
|
'action' => 'backup.created',
|
|
'status' => 'success',
|
|
'resource_type' => 'backup_set',
|
|
'resource_id' => '1',
|
|
'summary' => 'Backup set created',
|
|
'metadata' => [
|
|
'item_count' => 12,
|
|
],
|
|
'recorded_at' => now(),
|
|
], $attributes));
|
|
}
|
|
|
|
it('shows readable detail sections and a related link for an accessible target', function (): void {
|
|
[$user, $tenant] = createUserWithTenant(role: 'owner');
|
|
|
|
$backupSet = BackupSet::factory()->create([
|
|
'tenant_id' => (int) $tenant->getKey(),
|
|
'name' => 'Nightly iOS backup',
|
|
]);
|
|
|
|
$audit = auditLogDetailTestRecord($tenant, [
|
|
'resource_id' => (string) $backupSet->getKey(),
|
|
'target_label' => $backupSet->name,
|
|
'summary' => 'Backup set created for Nightly iOS backup',
|
|
]);
|
|
|
|
auditLogDetailTestComponent($user)
|
|
->callTableAction('inspect', $audit)
|
|
->assertSet('selectedAuditLogId', (int) $audit->getKey())
|
|
->assertSee('Readable context')
|
|
->assertSee('Technical metadata')
|
|
->assertSee('Nightly iOS backup')
|
|
->assertSee('Open backup set');
|
|
});
|
|
|
|
it('keeps deleted targets readable while suppressing their drill-down link', function (): void {
|
|
[$user, $tenant] = createUserWithTenant(role: 'owner');
|
|
|
|
$backupSet = BackupSet::factory()->create([
|
|
'tenant_id' => (int) $tenant->getKey(),
|
|
'name' => 'Archived backup',
|
|
]);
|
|
|
|
$backupSet->delete();
|
|
|
|
$audit = auditLogDetailTestRecord($tenant, [
|
|
'action' => 'backup.archived',
|
|
'resource_id' => (string) $backupSet->getKey(),
|
|
'target_label' => 'Archived backup',
|
|
'summary' => 'Backup set archived for Archived backup',
|
|
]);
|
|
|
|
auditLogDetailTestComponent($user)
|
|
->callTableAction('inspect', $audit)
|
|
->assertSet('selectedAuditLogId', (int) $audit->getKey())
|
|
->assertSee('Archived backup')
|
|
->assertSee('Technical metadata')
|
|
->assertDontSee('Open backup set');
|
|
});
|