## Summary - extract baseline compare orchestration behind an explicit strategy contract and registry - preserve the current Intune compare path through a dedicated `IntuneCompareStrategy` - harden compare launch and review surfaces for mixed, unsupported, incomplete, and strategy-failure truth - add Spec 203 artifacts, focused regression coverage, and future-domain strategy proof tests ## Testing - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Unit/Baselines/CompareStrategyRegistryTest.php tests/Unit/Baselines/CompareSubjectResultContractTest.php tests/Feature/Baselines/BaselineCompareStrategySelectionTest.php tests/Feature/Baselines/BaselineComparePreconditionsTest.php tests/Feature/Baselines/BaselineCompareExecutionGuardTest.php tests/Feature/Baselines/BaselineCompareMatrixCompareAllActionTest.php tests/Feature/Filament/BaselineProfileCompareStartSurfaceTest.php tests/Feature/Filament/BaselineCompareLandingStartSurfaceTest.php tests/Feature/Filament/BaselineCompareLandingWhyNoFindingsTest.php tests/Feature/Filament/BaselineCompareMatrixPageTest.php tests/Feature/Filament/OperationRunBaselineTruthSurfaceTest.php` - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` ## Notes - no new Filament panel/provider registration changes - no global-search resource changes - no new asset registration or deployment step changes Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #233
48 lines
1.6 KiB
PHP
48 lines
1.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\Baselines\Compare;
|
|
|
|
use InvalidArgumentException;
|
|
|
|
final class CompareSubjectProjection
|
|
{
|
|
/**
|
|
* @param array<string, string> $additionalLabels
|
|
*/
|
|
public function __construct(
|
|
public readonly string $platformSubjectClass,
|
|
public readonly string $domainKey,
|
|
public readonly string $subjectTypeKey,
|
|
public readonly string $operatorLabel,
|
|
public readonly ?string $summaryKind = null,
|
|
public readonly array $additionalLabels = [],
|
|
) {
|
|
if (trim($this->platformSubjectClass) === '' || trim($this->domainKey) === '' || trim($this->subjectTypeKey) === '' || trim($this->operatorLabel) === '') {
|
|
throw new InvalidArgumentException('Compare subject projections require non-empty platform subject class, domain key, subject type key, and operator label values.');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return array{
|
|
* platform_subject_class: string,
|
|
* domain_key: string,
|
|
* subject_type_key: string,
|
|
* operator_label: string,
|
|
* summary_kind: ?string,
|
|
* additional_labels: array<string, string>
|
|
* }
|
|
*/
|
|
public function toArray(): array
|
|
{
|
|
return [
|
|
'platform_subject_class' => $this->platformSubjectClass,
|
|
'domain_key' => $this->domainKey,
|
|
'subject_type_key' => $this->subjectTypeKey,
|
|
'operator_label' => $this->operatorLabel,
|
|
'summary_kind' => $this->summaryKind,
|
|
'additional_labels' => $this->additionalLabels,
|
|
];
|
|
}
|
|
} |