## Summary - add a first-class finding exception domain with request, approval, rejection, renewal, and revocation lifecycle support - add tenant-scoped exception register, finding governance surfaces, and a canonical workspace approval queue in Filament - add audit, badge, evidence, and review-pack integrations plus focused Pest coverage for workflow, authorization, and governance validity ## Validation - vendor/bin/sail bin pint --dirty --format agent - CI=1 vendor/bin/sail artisan test --compact - manual integrated-browser smoke test for the request-exception happy path, tenant register visibility, and canonical queue visibility ## Notes - Filament implementation remains on v5 with Livewire v4-compatible surfaces - canonical queue lives in the admin panel; provider registration stays in bootstrap/providers.php - finding exceptions stay out of global search in this rollout Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #184
95 lines
4.0 KiB
PHP
95 lines
4.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Filament\Resources\FindingResource\Pages\ListFindings;
|
|
use App\Filament\Resources\FindingResource\Pages\ViewFinding;
|
|
use App\Models\Finding;
|
|
use App\Models\Tenant;
|
|
use App\Support\Workspaces\WorkspaceContext;
|
|
use Filament\Facades\Filament;
|
|
use Livewire\Livewire;
|
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
|
|
|
it('keeps readonly workflow actions visible but disabled on list and view surfaces', function (): void {
|
|
[$user, $tenant] = createUserWithTenant(role: 'readonly');
|
|
$this->actingAs($user);
|
|
Filament::setTenant($tenant, true);
|
|
|
|
$finding = $this->makeFindingForWorkflow($tenant, Finding::STATUS_NEW);
|
|
|
|
Livewire::test(ListFindings::class)
|
|
->assertTableActionVisible('triage', $finding)
|
|
->assertTableActionDisabled('triage', $finding)
|
|
->assertTableActionVisible('resolve', $finding)
|
|
->assertTableActionDisabled('resolve', $finding)
|
|
->assertTableActionVisible('request_exception', $finding)
|
|
->assertTableActionDisabled('request_exception', $finding);
|
|
|
|
Livewire::test(ViewFinding::class, ['record' => $finding->getKey()])
|
|
->assertActionVisible('triage')
|
|
->assertActionDisabled('triage')
|
|
->assertActionVisible('resolve')
|
|
->assertActionDisabled('resolve')
|
|
->assertActionVisible('request_exception')
|
|
->assertActionDisabled('request_exception');
|
|
});
|
|
|
|
it('preserves the expected workflow action surface by finding status', function (): void {
|
|
[$user, $tenant] = $this->actingAsFindingOperator('owner');
|
|
|
|
$newFinding = $this->makeFindingForWorkflow($tenant, Finding::STATUS_NEW);
|
|
$triagedFinding = $this->makeFindingForWorkflow($tenant, Finding::STATUS_TRIAGED);
|
|
$resolvedFinding = $this->makeFindingForWorkflow($tenant, Finding::STATUS_RESOLVED);
|
|
|
|
Livewire::test(ListFindings::class)
|
|
->assertTableActionVisible('triage', $newFinding)
|
|
->assertTableActionHidden('start_progress', $newFinding)
|
|
->assertTableActionVisible('start_progress', $triagedFinding)
|
|
->assertTableActionHidden('reopen', $triagedFinding)
|
|
->filterTable('open', false)
|
|
->assertTableActionVisible('reopen', $resolvedFinding)
|
|
->assertTableActionHidden('triage', $resolvedFinding)
|
|
->assertTableActionHidden('close', $resolvedFinding)
|
|
->assertTableActionHidden('request_exception', $resolvedFinding);
|
|
|
|
Livewire::test(ViewFinding::class, ['record' => $resolvedFinding->getKey()])
|
|
->assertActionVisible('reopen')
|
|
->assertActionHidden('triage')
|
|
->assertActionHidden('close')
|
|
->assertActionHidden('request_exception');
|
|
});
|
|
|
|
it('returns 404 when forged foreign-tenant workflow actions are mounted for protected actions', function (): void {
|
|
$tenantA = Tenant::factory()->create();
|
|
[$user, $tenantA] = createUserWithTenant(tenant: $tenantA, role: 'owner');
|
|
|
|
$tenantB = Tenant::factory()->create([
|
|
'workspace_id' => (int) $tenantA->workspace_id,
|
|
]);
|
|
|
|
createUserWithTenant(tenant: $tenantB, user: $user, role: 'owner');
|
|
|
|
$foreignFinding = $this->makeFindingForWorkflow($tenantB, Finding::STATUS_TRIAGED);
|
|
|
|
$this->actingAs($user);
|
|
Filament::setCurrentPanel('admin');
|
|
Filament::setTenant(null, true);
|
|
Filament::bootCurrentPanel();
|
|
|
|
session()->put(WorkspaceContext::SESSION_KEY, (int) $tenantA->workspace_id);
|
|
session()->put(WorkspaceContext::LAST_TENANT_IDS_SESSION_KEY, [
|
|
(string) $tenantA->workspace_id => (int) $tenantA->getKey(),
|
|
]);
|
|
|
|
$component = Livewire::actingAs($user)->test(ListFindings::class);
|
|
|
|
expect(fn () => $component->instance()->mountTableAction('start_progress', (string) $foreignFinding->getKey()))
|
|
->toThrow(NotFoundHttpException::class);
|
|
|
|
expect(fn () => $component->instance()->mountTableAction('request_exception', (string) $foreignFinding->getKey()))
|
|
->toThrow(NotFoundHttpException::class);
|
|
|
|
expect($foreignFinding->refresh()->status)->toBe(Finding::STATUS_TRIAGED);
|
|
});
|