Compliance Policies: Snapshot/Normalizer verbessert, inkl. Compliance Notifications (scheduled actions) und besser lesbarem Normalized Diff Restore: Preview/Results zeigen Compliance‑Mapping + Warnung bei fehlenden Notification Templates Graph contracts: Query/$select/$expand sicherer sanitizen Tests aktualisiert/ergänzt (Restore Preview/Execution, Policy Version View, Normalizer, Contract Registry)
22 lines
655 B
PHP
22 lines
655 B
PHP
<?php
|
|
|
|
use App\Services\Intune\DefaultPolicyNormalizer;
|
|
|
|
uses(Tests\TestCase::class);
|
|
|
|
it('flattens normalized settings with section prefixes for diffs', function () {
|
|
$normalizer = app(DefaultPolicyNormalizer::class);
|
|
|
|
$snapshot = [
|
|
'@odata.type' => '#microsoft.graph.somePolicy',
|
|
'displayName' => 'Example Policy',
|
|
'customSetting' => true,
|
|
];
|
|
|
|
$flat = $normalizer->flattenForDiff($snapshot, 'somePolicyType', 'all');
|
|
|
|
expect($flat)->toHaveKey('General > Display Name', 'Example Policy');
|
|
expect($flat)->toHaveKey('General > Custom Setting');
|
|
expect($flat['General > Custom Setting'])->toBeTrue();
|
|
});
|