TenantAtlas/apps/platform/tests/Unit/Artifacts/ArtifactSourceTaxonomyCatalogTest.php
ahmido 75ebade345 feat: implement provider-neutral artifact source taxonomy (#343)
## Summary

Implements Spec 284 for provider-neutral artifact source taxonomy.

- add shared artifact source descriptor, resolver, taxonomy, and provider-detail support
- update findings, evidence snapshots, stored reports, inventory items, and tenant review surfaces to disclose descriptor-first artifact summaries
- add bounded Pest unit, feature, guard, and browser coverage for the taxonomy slice
- include the completed Spec 284 package artifacts under `specs/284-provider-neutral-artifact-source-taxonomy/`

## Notes

- branch: `284-provider-neutral-artifact-source-taxonomy`
- commit: `bf8d59e0`
- this PR was created as part of the requested commit/push/PR flow against `platform-dev`

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #343
2026-05-08 23:47:31 +00:00

33 lines
1017 B
PHP

<?php
declare(strict_types=1);
use App\Support\Artifacts\ArtifactSourceTaxonomy;
it('pins the provider-neutral artifact source inventories for spec 284', function (): void {
expect(ArtifactSourceTaxonomy::sourceFamilies())->toBe([
'finding',
'stored_report',
'evidence_snapshot',
'inventory',
'operation_run',
])
->and(ArtifactSourceTaxonomy::sourceKinds())->toBe([
'model_summary',
'stored_report',
'operation_rollup',
'inventory_projection',
])
->and(ArtifactSourceTaxonomy::sourceTargetKinds())->toBe([
'managed_environment',
'governed_subject',
'provider_connection',
'operation_run',
]);
});
it('does not introduce a detector catalog in spec 284', function (): void {
expect(ArtifactSourceTaxonomy::hasDetectorCatalog())->toBeFalse()
->and(method_exists(ArtifactSourceTaxonomy::class, 'detectorKeys'))->toBeFalse();
});