TenantAtlas/apps/platform/tests/Unit/Badges/BadgeCatalogTest.php
ahmido 292d555eac refactor: consolidate internal tenant model naming (#355)
## Summary
- consolidate internal platform naming from `Tenant` to `Environment` / `ManagedEnvironment` across models, controllers, services, and Filament resources
- rename environment-scoped UI surfaces such as dashboards, chooser flows, navigation, and related widgets to match the updated environment-first domain language
- align middleware, onboarding/review lifecycle services, jobs, and route/context controllers with the new environment-scoped architecture

## Validation
- not rerun as part of this commit/push/PR request

## Notes
- branch is 1 commit ahead of `platform-dev`
- main commit: `refactor: consolidate internal tenant model naming`

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #355
2026-05-14 11:13:28 +00:00

62 lines
2.5 KiB
PHP

<?php
declare(strict_types=1);
use App\Support\Badges\BadgeCatalog;
use App\Support\Badges\BadgeDomain;
use App\Support\Badges\BadgeSpec;
use App\Support\Badges\OperatorSemanticAxis;
use App\Support\Badges\OperatorStateClassification;
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',
]);
});
it('carries taxonomy metadata on first-slice badge specs', function (): void {
$spec = BadgeCatalog::spec(BadgeDomain::BaselineSnapshotFidelity, 'unsupported');
expect($spec->semanticAxis)->toBe(OperatorSemanticAxis::ProductSupportMaturity)
->and($spec->classification)->toBe(OperatorStateClassification::Diagnostic)
->and($spec->diagnosticLabel)->toBe('Fallback renderer');
});
it('registers inventory coverage state badge mappings centrally', function (): void {
expect(BadgeCatalog::mapper(BadgeDomain::InventoryCoverageState))->not->toBeNull()
->and(BadgeCatalog::spec(BadgeDomain::InventoryCoverageState, 'failed')->label)->toBe('Failed');
});
it('keeps lifecycle badges on the shared boolean-enabled domain instead of legacy provider domains', function (): void {
$domainValues = collect(BadgeDomain::cases())
->map(fn (BadgeDomain $domain): string => $domain->value)
->all();
expect(BadgeCatalog::mapper(BadgeDomain::BooleanEnabled))->not->toBeNull()
->and($domainValues)->not->toContain('provider_connection.status', 'provider_connection.health');
});
it('keeps retired tenant app-status out of the central catalog while active tenant domains remain registered', function (): void {
$domainValues = collect(BadgeDomain::cases())
->map(fn (BadgeDomain $domain): string => $domain->value)
->all();
expect($domainValues)->not->toContain('tenant_app_status')
->and(BadgeCatalog::mapper(BadgeDomain::TenantStatus))->not->toBeNull()
->and(BadgeCatalog::mapper(BadgeDomain::TenantRbacStatus))->not->toBeNull()
->and(BadgeCatalog::mapper(BadgeDomain::ManagedEnvironmentPermissionStatus))->not->toBeNull();
});