Implements the bounded Spec 421 Entra comparable/renderable pack on the existing Coverage v2 operator surface. - Adds typed Conditional Access normalization, comparison, and render summaries - Keeps Security Defaults and other optional Entra types deferred until evidence-backed - Preserves the existing Coverage v2 surface with claim-guard and redaction hardening - Includes focused unit, feature, and browser coverage already recorded in the implementation report Validation is documented in `specs/421-entra-core-comparable-renderable-pack/implementation-report.md`. Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #488
20 lines
604 B
PHP
20 lines
604 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
it('Spec421 does not add Entra-specific tables, models, routes, or Filament resources', function (): void {
|
|
$paths = [
|
|
'apps/platform/database/migrations',
|
|
'apps/platform/app/Models',
|
|
'apps/platform/app/Filament',
|
|
'apps/platform/routes',
|
|
];
|
|
$joined = collect($paths)
|
|
->flatMap(fn (string $path): array => glob(repo_path($path).'/**/*421*') ?: [])
|
|
->map(fn (string $path): string => str_replace(repo_path().DIRECTORY_SEPARATOR, '', $path))
|
|
->values()
|
|
->all();
|
|
|
|
expect($joined)->toBe([]);
|
|
});
|