TenantAtlas/apps/platform/tests/Unit/Findings/FindingStatusSemanticsTest.php
Ahmed Darrazi 2d69db2419
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 5m47s
feat: remove findings acknowledged compatibility and unify canonical operation types
2026-04-29 09:32:47 +02:00

22 lines
708 B
PHP

<?php
declare(strict_types=1);
use App\Models\Finding;
it('exposes only canonical open statuses for findings', function (): void {
expect(Finding::openStatuses())->toBe([
Finding::STATUS_NEW,
Finding::STATUS_TRIAGED,
Finding::STATUS_IN_PROGRESS,
Finding::STATUS_REOPENED,
]);
expect(Finding::openStatusesForQuery())->toBe(Finding::openStatuses());
});
it('does not treat acknowledged as a canonical open or terminal status', function (): void {
expect(Finding::canonicalizeStatus('acknowledged'))->toBe('acknowledged');
expect(Finding::isOpenStatus('acknowledged'))->toBeFalse();
expect(Finding::isTerminalStatus('acknowledged'))->toBeFalse();
});