## Summary - centralize all status-like badge semantics via `BadgeCatalog`/`BadgeRenderer` and new per-domain mappings plus coverage for every affected entity - replace ad-hoc badge colors in Filament tables/views with the shared catalog and add a guard test that blocks new inline semantics - stabilize restore views by avoiding `@php(...)` shorthand so Blade compiles cleanly, and document BADGE-001 in the constitution/templates ## Testing - `vendor/bin/sail php vendor/bin/pint --dirty` - `vendor/bin/sail artisan test tests/Unit/Badges tests/Feature/Guards/NoAdHocStatusBadgesTest.php` - `vendor/bin/sail artisan test tests/Feature/Monitoring/OperationsDbOnlyTest.php tests/Feature/Monitoring/OperationsTenantScopeTest.php` - `vendor/bin/sail artisan test tests/Feature/RestoreRunWizardMetadataTest.php tests/Feature/Filament/SettingsCatalogRestoreApplySettingsPatchTest.php` Co-authored-by: Ahmed Darrazi <ahmeddarrazi@adsmac.local> Reviewed-on: #71
49 lines
1.9 KiB
PHP
49 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Support\Badges\BadgeCatalog;
|
|
use App\Support\Badges\BadgeDomain;
|
|
|
|
it('maps operation run status values to canonical badge semantics', function (): void {
|
|
$queued = BadgeCatalog::spec(BadgeDomain::OperationRunStatus, 'queued');
|
|
expect($queued->label)->toBe('Queued');
|
|
expect($queued->color)->toBe('warning');
|
|
|
|
$running = BadgeCatalog::spec(BadgeDomain::OperationRunStatus, 'running');
|
|
expect($running->label)->toBe('Running');
|
|
expect($running->color)->toBe('info');
|
|
|
|
$completed = BadgeCatalog::spec(BadgeDomain::OperationRunStatus, 'completed');
|
|
expect($completed->label)->toBe('Completed');
|
|
expect($completed->color)->toBe('gray');
|
|
});
|
|
|
|
it('maps operation run outcome values to canonical badge semantics', function (): void {
|
|
$pending = BadgeCatalog::spec(BadgeDomain::OperationRunOutcome, 'pending');
|
|
expect($pending->label)->toBe('Pending');
|
|
expect($pending->color)->toBe('gray');
|
|
|
|
$succeeded = BadgeCatalog::spec(BadgeDomain::OperationRunOutcome, 'succeeded');
|
|
expect($succeeded->label)->toBe('Succeeded');
|
|
expect($succeeded->color)->toBe('success');
|
|
|
|
$partial = BadgeCatalog::spec(BadgeDomain::OperationRunOutcome, 'partially_succeeded');
|
|
expect($partial->label)->toBe('Partially succeeded');
|
|
expect($partial->color)->toBe('warning');
|
|
|
|
$failed = BadgeCatalog::spec(BadgeDomain::OperationRunOutcome, 'failed');
|
|
expect($failed->label)->toBe('Failed');
|
|
expect($failed->color)->toBe('danger');
|
|
|
|
$cancelled = BadgeCatalog::spec(BadgeDomain::OperationRunOutcome, 'cancelled');
|
|
expect($cancelled->label)->toBe('Cancelled');
|
|
expect($cancelled->color)->toBe('gray');
|
|
});
|
|
|
|
it('never represents a success outcome with warning/attention meaning', function (): void {
|
|
$succeeded = BadgeCatalog::spec(BadgeDomain::OperationRunOutcome, 'succeeded');
|
|
|
|
expect($succeeded->color)->not->toBe('warning');
|
|
});
|