TenantAtlas/tests/Feature/Findings/FindingWorkflowGuardTest.php
ahmido a74ab12f04 feat: implement evidence domain foundation (#183)
## Summary
- add the Evidence Snapshot domain with immutable tenant-scoped snapshots, per-dimension items, queued generation, audit actions, badge mappings, and Filament list/detail surfaces
- add the workspace evidence overview, capability and policy wiring, Livewire update-path hardening, and review-pack integration through explicit evidence snapshot resolution
- add spec 153 artifacts, migrations, factories, and focused Pest coverage for evidence, review-pack reuse, authorization, action-surface regressions, and audit behavior

## Testing
- `vendor/bin/sail artisan test --compact --stop-on-failure`
- `CI=1 vendor/bin/sail artisan test --compact`
- `vendor/bin/sail bin pint --dirty --format agent`

## Notes
- branch: `153-evidence-domain-foundation`
- commit: `b7dfa279`
- spec: `specs/153-evidence-domain-foundation/`

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #183
2026-03-19 13:32:52 +00:00

57 lines
2.3 KiB
PHP

<?php
declare(strict_types=1);
use App\Models\AuditLog;
use App\Models\Finding;
use App\Services\Findings\FindingWorkflowService;
use App\Services\Intune\AuditLogger;
use App\Support\Audit\AuditActionId;
use Mockery\MockInterface;
use function Pest\Laravel\mock;
it('registers canonical findings workflow audit actions', function (): void {
expect(AuditActionId::knownValues())
->toContain(AuditActionId::FindingTriaged->value)
->toContain(AuditActionId::FindingInProgress->value)
->toContain(AuditActionId::FindingAssigned->value)
->toContain(AuditActionId::FindingResolved->value)
->toContain(AuditActionId::FindingClosed->value)
->toContain(AuditActionId::FindingRiskAccepted->value)
->toContain(AuditActionId::FindingReopened->value);
});
it('keeps only legacy compatibility lifecycle helpers on the model', function (): void {
expect(method_exists(Finding::class, 'acknowledge'))->toBeTrue()
->and(method_exists(Finding::class, 'resolve'))->toBeTrue()
->and(method_exists(Finding::class, 'reopen'))->toBeTrue()
->and(method_exists(Finding::class, 'triage'))->toBeFalse()
->and(method_exists(Finding::class, 'startProgress'))->toBeFalse()
->and(method_exists(Finding::class, 'assign'))->toBeFalse()
->and(method_exists(Finding::class, 'close'))->toBeFalse()
->and(method_exists(Finding::class, 'riskAccept'))->toBeFalse();
});
it('rolls back finding workflow persistence when audit logging fails', function (): void {
[$user, $tenant] = $this->actingAsFindingOperator('owner');
$finding = $this->makeFindingForWorkflow($tenant, Finding::STATUS_NEW);
mock(AuditLogger::class, function (MockInterface $mock): void {
$mock->shouldReceive('log')
->once()
->andThrow(new \RuntimeException('Audit write unavailable.'));
});
expect(fn () => app(FindingWorkflowService::class)->triage($finding, $tenant, $user))
->toThrow(\RuntimeException::class, 'Audit write unavailable.');
expect($finding->refresh()->status)->toBe(Finding::STATUS_NEW)
->and(AuditLog::query()
->where('tenant_id', (int) $tenant->getKey())
->where('resource_type', 'finding')
->where('resource_id', (string) $finding->getKey())
->count())->toBe(0);
});