Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 1m0s
This PR removes the legacy "acknowledged" status compatibility for findings and unifies the canonical operation types (e.g., transitioning from baseline_capture to baseline.capture). It includes updated tests, models, and services to reflect these changes. Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #296
22 lines
708 B
PHP
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();
|
|
}); |