## Summary - implement Spec 198 monitoring page-state contracts across Operations, Audit Log, Finding Exceptions Queue, Evidence Overview, Baseline Compare Landing, and Baseline Compare Matrix - align selected-record and draft/apply behavior with query/session restoration semantics, including canonical navigation and tenant-filter normalization helpers - add Spec 198 feature and browser coverage, update closure/spec artifacts, and refresh affected regression tests that asserted pre-contract behavior ## Verification - focused Spec 198 feature pack passed through Sail - Spec 198 browser smoke passed through Sail - existing Spec 190 and Spec 194 browser smokes passed through Sail - targeted fallout tests were updated and rerun during full-suite triage ## Notes - Livewire v4 / Filament v5 compliant only; no legacy API reintroduction - no provider registration changes; Laravel 11+ provider registration remains in `bootstrap/providers.php` - no global-search behavior changed for any resource - destructive queue decision actions remain confirmation-gated and authorization-backed - no new Filament assets were added; existing deploy step for `php artisan filament:assets` remains unchanged Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #238
94 lines
3.1 KiB
PHP
94 lines
3.1 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, ?int $selectedAuditLogId = null): Testable
|
|
{
|
|
test()->actingAs($user);
|
|
Filament::setTenant($tenant, true);
|
|
|
|
if ($selectedAuditLogId !== null) {
|
|
return Livewire::withQueryParams(['event' => $selectedAuditLogId])
|
|
->actingAs($user)
|
|
->test(AuditLogPage::class);
|
|
}
|
|
|
|
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, selectedAuditLogId: (int) $audit->getKey())
|
|
->assertCanSeeTableRecords([$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, selectedAuditLogId: (int) $audit->getKey())
|
|
->assertCanSeeTableRecords([$audit])
|
|
->assertSet('selectedAuditLogId', (int) $audit->getKey())
|
|
->assertSee('Archived backup')
|
|
->assertSee('Technical metadata')
|
|
->assertDontSee('Open backup set');
|
|
});
|