TenantAtlas/apps/platform/tests/Feature/Monitoring/ArtifactTruthManualCasesDataset.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

21 lines
1.2 KiB
PHP

<?php
declare(strict_types=1);
use App\Support\Badges\BadgeDomain;
dataset('artifactTruthManualCases', [
'healthy baseline artifact' => [BadgeDomain::GovernanceArtifactContent, 'trusted'],
'false-green baseline artifact' => [BadgeDomain::GovernanceArtifactExistence, 'created_but_not_usable'],
'historical baseline trace' => [BadgeDomain::GovernanceArtifactExistence, 'historical_only'],
'healthy evidence snapshot' => [BadgeDomain::GovernanceArtifactContent, 'trusted'],
'partial evidence snapshot' => [BadgeDomain::GovernanceArtifactContent, 'partial'],
'stale evidence snapshot' => [BadgeDomain::GovernanceArtifactFreshness, 'stale'],
'internal environment review' => [BadgeDomain::GovernanceArtifactPublicationReadiness, 'internal_only'],
'blocked environment review' => [BadgeDomain::GovernanceArtifactPublicationReadiness, 'blocked'],
'publishable environment review' => [BadgeDomain::GovernanceArtifactPublicationReadiness, 'publishable'],
'historical review pack' => [BadgeDomain::GovernanceArtifactExistence, 'historical_only'],
'blocked review pack' => [BadgeDomain::GovernanceArtifactPublicationReadiness, 'blocked'],
'artifact requires action' => [BadgeDomain::GovernanceArtifactActionability, 'required'],
]);