## Summary - add the Spec 181 restore-safety layer with scope fingerprinting, preview/check integrity states, execution safety snapshots, result attention, and operator-facing copy across the wizard, restore detail, and canonical operation detail - add focused unit and feature coverage for restore-safety assessment, result attention, and restore-linked operation detail - switch the finding exceptions queue `Inspect exception` action to a native Filament slide-over while preserving query-param-backed inline summary behavior ## Testing - `vendor/bin/sail artisan test --compact tests/Feature/Monitoring/FindingExceptionsQueueTest.php tests/Feature/Filament/RestoreSafetyIntegrityWizardTest.php tests/Feature/Filament/RestoreResultAttentionSurfaceTest.php tests/Feature/Operations/RestoreLinkedOperationDetailTest.php tests/Unit/Support/RestoreSafety` ## Notes - Spec 181 checklist is complete (`specs/181-restore-safety-integrity/checklists/requirements.md`) - the branch still has unchecked follow-up tasks in `specs/181-restore-safety-integrity/tasks.md`: `T012`, `T018`, `T019`, `T023`, `T025`, `T029`, `T032`, `T033`, `T041`, `T042`, `T043`, `T044` - Filament v5 / Livewire v4 compliance is preserved, no panel provider registration changes were made, no global-search behavior was added, destructive actions remain confirmation-gated, and no new Filament assets were introduced Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #210
51 lines
1.9 KiB
PHP
51 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Filament\Resources\RestoreRunResource\Pages\CreateRestoreRun;
|
|
use App\Models\Tenant;
|
|
use App\Support\RestoreSafety\RestoreSafetyResolver;
|
|
use Filament\Facades\Filament;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Livewire\Livewire;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
it('renders warning-suppressed execution guidance when current evidence still has warnings', function (): void {
|
|
$tenant = Tenant::factory()->create([
|
|
'rbac_status' => 'ok',
|
|
'rbac_last_checked_at' => now(),
|
|
]);
|
|
[$user, $tenant] = createUserWithTenant(tenant: $tenant, role: 'owner');
|
|
ensureDefaultProviderConnection($tenant, 'microsoft');
|
|
|
|
/** @var RestoreSafetyResolver $resolver */
|
|
$resolver = app(RestoreSafetyResolver::class);
|
|
|
|
$data = [
|
|
'backup_set_id' => 10,
|
|
'scope_mode' => 'selected',
|
|
'backup_item_ids' => [1],
|
|
'group_mapping' => [],
|
|
'check_summary' => ['blocking' => 0, 'warning' => 1, 'safe' => 0],
|
|
'check_results' => [['code' => 'warning', 'severity' => 'warning']],
|
|
'checks_ran_at' => now('UTC')->toIso8601String(),
|
|
'preview_summary' => ['generated_at' => now('UTC')->toIso8601String(), 'policies_total' => 1, 'policies_changed' => 1],
|
|
'preview_diffs' => [['policy_identifier' => 'policy-1', 'action' => 'update']],
|
|
'preview_ran_at' => now('UTC')->toIso8601String(),
|
|
];
|
|
$data['check_basis'] = $resolver->checksBasisFromData($data);
|
|
$data['preview_basis'] = $resolver->previewBasisFromData($data);
|
|
$data = \App\Filament\Resources\RestoreRunResource::synchronizeRestoreSafetyDraft($data);
|
|
|
|
Filament::setTenant($tenant, true);
|
|
|
|
Livewire::actingAs($user)
|
|
->test(CreateRestoreRun::class)
|
|
->set('data', $data)
|
|
->goToWizardStep(5)
|
|
->assertSee('Ready with caution')
|
|
->assertSee('warnings remain')
|
|
->assertSee('Review the warnings before real execution.');
|
|
});
|