## 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
27 lines
682 B
PHP
27 lines
682 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Support\Badges\BadgeCatalog;
|
|
use App\Support\Badges\BadgeDomain;
|
|
use App\Support\Badges\BadgeSpec;
|
|
|
|
it('returns a safe unknown badge spec for unknown values', function (): void {
|
|
$spec = BadgeCatalog::spec(BadgeDomain::OperationRunStatus, 'not-a-real-status');
|
|
|
|
expect($spec)->toBeInstanceOf(BadgeSpec::class);
|
|
expect($spec->label)->toBe('Unknown');
|
|
expect($spec->color)->toBe('gray');
|
|
});
|
|
|
|
it('defines the allowed Filament badge colors', function (): void {
|
|
expect(BadgeSpec::allowedColors())->toBe([
|
|
'gray',
|
|
'info',
|
|
'success',
|
|
'warning',
|
|
'danger',
|
|
'primary',
|
|
]);
|
|
});
|