Resolves assignment filter names when Graph stores filter IDs at assignment root. Tracks assignment fetch success/failure and shows clearer UI states for versions. Adds scope tag fallback display in backup set items. Restored versions now capture applied assignments consistently. Co-authored-by: Ahmed Darrazi <ahmeddarrazi@adsmac.local> Reviewed-on: #8
45 lines
1.5 KiB
PHP
45 lines
1.5 KiB
PHP
<?php
|
|
|
|
use App\Services\Intune\DefaultPolicyNormalizer;
|
|
use App\Services\Intune\PolicyNormalizer;
|
|
use App\Services\Intune\PolicyTypeNormalizer;
|
|
|
|
uses(Tests\TestCase::class);
|
|
|
|
it('routes to the first matching policy type normalizer', function () {
|
|
$defaultNormalizer = app(DefaultPolicyNormalizer::class);
|
|
|
|
$customNormalizer = new class implements PolicyTypeNormalizer
|
|
{
|
|
public function supports(string $policyType): bool
|
|
{
|
|
return $policyType === 'deviceCompliancePolicy';
|
|
}
|
|
|
|
public function normalize(?array $snapshot, string $policyType, ?string $platform = null): array
|
|
{
|
|
return [
|
|
'status' => 'custom',
|
|
'settings' => [],
|
|
'warnings' => [],
|
|
];
|
|
}
|
|
|
|
public function flattenForDiff(?array $snapshot, string $policyType, ?string $platform = null): array
|
|
{
|
|
return ['custom' => true];
|
|
}
|
|
};
|
|
|
|
$normalizer = new PolicyNormalizer($defaultNormalizer, [$customNormalizer]);
|
|
|
|
$custom = $normalizer->normalize(['id' => 'policy-1'], 'deviceCompliancePolicy', 'windows');
|
|
expect($custom['status'])->toBe('custom');
|
|
|
|
$customDiff = $normalizer->flattenForDiff(['id' => 'policy-1'], 'deviceCompliancePolicy', 'windows');
|
|
expect($customDiff)->toBe(['custom' => true]);
|
|
|
|
$fallback = $normalizer->normalize(['id' => 'policy-1'], 'unknownPolicy', 'windows');
|
|
expect($fallback['status'])->not->toBe('custom');
|
|
});
|