TenantAtlas/tests/Unit/Badges/RunStatusBadgesTest.php
ahmido 0b6600b926 059-unified-badges (#71)
## 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
2026-01-22 23:44:51 +00:00

59 lines
2.3 KiB
PHP

<?php
declare(strict_types=1);
use App\Support\Badges\BadgeCatalog;
use App\Support\Badges\BadgeDomain;
it('maps inventory sync run status values to canonical badge semantics', function (): void {
$pending = BadgeCatalog::spec(BadgeDomain::InventorySyncRunStatus, 'pending');
expect($pending->label)->toBe('Pending');
expect($pending->color)->toBe('gray');
$running = BadgeCatalog::spec(BadgeDomain::InventorySyncRunStatus, 'running');
expect($running->label)->toBe('Running');
expect($running->color)->toBe('info');
$success = BadgeCatalog::spec(BadgeDomain::InventorySyncRunStatus, 'success');
expect($success->label)->toBe('Success');
expect($success->color)->toBe('success');
$partial = BadgeCatalog::spec(BadgeDomain::InventorySyncRunStatus, 'partial');
expect($partial->label)->toBe('Partial');
expect($partial->color)->toBe('warning');
$failed = BadgeCatalog::spec(BadgeDomain::InventorySyncRunStatus, 'failed');
expect($failed->label)->toBe('Failed');
expect($failed->color)->toBe('danger');
$skipped = BadgeCatalog::spec(BadgeDomain::InventorySyncRunStatus, 'skipped');
expect($skipped->label)->toBe('Skipped');
expect($skipped->color)->toBe('gray');
});
it('maps backup schedule run status values to canonical badge semantics', function (): void {
$running = BadgeCatalog::spec(BadgeDomain::BackupScheduleRunStatus, 'running');
expect($running->label)->toBe('Running');
expect($running->color)->toBe('info');
$success = BadgeCatalog::spec(BadgeDomain::BackupScheduleRunStatus, 'success');
expect($success->label)->toBe('Success');
expect($success->color)->toBe('success');
$partial = BadgeCatalog::spec(BadgeDomain::BackupScheduleRunStatus, 'partial');
expect($partial->label)->toBe('Partial');
expect($partial->color)->toBe('warning');
$failed = BadgeCatalog::spec(BadgeDomain::BackupScheduleRunStatus, 'failed');
expect($failed->label)->toBe('Failed');
expect($failed->color)->toBe('danger');
$canceled = BadgeCatalog::spec(BadgeDomain::BackupScheduleRunStatus, 'canceled');
expect($canceled->label)->toBe('Canceled');
expect($canceled->color)->toBe('gray');
$skipped = BadgeCatalog::spec(BadgeDomain::BackupScheduleRunStatus, 'skipped');
expect($skipped->label)->toBe('Skipped');
expect($skipped->color)->toBe('gray');
});