## Summary - standardize the shared verification report family across operation detail, onboarding, and tenant verification widget hosts - standardize normalized settings and normalized diff family wrappers across policy, policy version, and finding detail hosts - add parity and guard coverage plus the full Spec 197 artifacts, including recorded manual smoke evidence ## Testing - focused Sail regression pack from `specs/197-shared-detail-contract/quickstart.md` - local integrated-browser manual smoke for SC-197-003 and SC-197-004 Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #237
153 lines
5.7 KiB
PHP
153 lines
5.7 KiB
PHP
<?php
|
|
|
|
use App\Filament\Resources\PolicyVersionResource;
|
|
use App\Models\Policy;
|
|
use App\Models\PolicyVersion;
|
|
use App\Models\Tenant;
|
|
use Carbon\CarbonImmutable;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
test('policy version detail shows raw and normalized settings', function () {
|
|
$tenant = Tenant::factory()->create([
|
|
'name' => 'Tenant One',
|
|
'status' => 'active',
|
|
]);
|
|
|
|
[$user, $tenant] = createUserWithTenant(tenant: $tenant, role: 'owner');
|
|
|
|
$policy = Policy::factory()->create([
|
|
'tenant_id' => $tenant->getKey(),
|
|
'external_id' => 'policy-1',
|
|
'policy_type' => 'deviceConfiguration',
|
|
'display_name' => 'Policy A',
|
|
'platform' => 'windows',
|
|
]);
|
|
|
|
$version = PolicyVersion::factory()->create([
|
|
'tenant_id' => $tenant->getKey(),
|
|
'policy_id' => $policy->getKey(),
|
|
'version_number' => 1,
|
|
'policy_type' => $policy->policy_type,
|
|
'platform' => $policy->platform,
|
|
'created_by' => 'tester@example.com',
|
|
'captured_at' => CarbonImmutable::now(),
|
|
'snapshot' => [
|
|
'displayName' => 'Policy A',
|
|
'settings' => [
|
|
['displayName' => 'Enable feature', 'value' => ['value' => 'on']],
|
|
],
|
|
],
|
|
]);
|
|
|
|
$response = $this->actingAs($user)
|
|
->get(PolicyVersionResource::getUrl('view', ['record' => $version], tenant: $tenant));
|
|
|
|
$response->assertOk();
|
|
$response->assertSee('Raw JSON');
|
|
$response->assertSee('displayName');
|
|
$response->assertSee('Normalized settings');
|
|
$response->assertSee('Enable feature');
|
|
$response->assertSee('Normalized diff');
|
|
|
|
expect($response->getContent())
|
|
->toContain('data-shared-detail-family="normalized-settings"')
|
|
->toContain('data-shared-normalized-settings-host="policy_version"')
|
|
->toContain('data-shared-detail-family="normalized-diff"')
|
|
->toContain('data-shared-normalized-diff-host="policy_version"');
|
|
});
|
|
|
|
test('policy version detail shows enrollment notification template settings', function () {
|
|
$tenant = Tenant::factory()->create([
|
|
'tenant_id' => 'tenant-enrollment-notify',
|
|
'name' => 'Tenant Enrollment Notify',
|
|
'status' => 'active',
|
|
]);
|
|
|
|
[$user, $tenant] = createUserWithTenant(tenant: $tenant, role: 'owner');
|
|
|
|
$policy = Policy::factory()->create([
|
|
'tenant_id' => $tenant->getKey(),
|
|
'external_id' => 'enroll-notify-1',
|
|
'policy_type' => 'deviceEnrollmentNotificationConfiguration',
|
|
'display_name' => 'Enrollment Notifications',
|
|
'platform' => 'all',
|
|
]);
|
|
|
|
$version = PolicyVersion::factory()->create([
|
|
'tenant_id' => $tenant->getKey(),
|
|
'policy_id' => $policy->getKey(),
|
|
'version_number' => 1,
|
|
'policy_type' => $policy->policy_type,
|
|
'platform' => $policy->platform,
|
|
'created_by' => 'tester@example.com',
|
|
'captured_at' => CarbonImmutable::now(),
|
|
'snapshot' => [
|
|
'@odata.type' => '#microsoft.graph.deviceEnrollmentNotificationConfiguration',
|
|
'displayName' => 'Enrollment Notifications',
|
|
'priority' => 1,
|
|
'version' => 1,
|
|
'platformType' => 'windows',
|
|
'notificationTemplates' => ['Email_email-template-1', 'Push_push-template-1'],
|
|
'notificationTemplateSnapshots' => [
|
|
[
|
|
'channel' => 'Email',
|
|
'template_id' => 'email-template-1',
|
|
'template' => [
|
|
'id' => 'email-template-1',
|
|
'displayName' => 'Email Template',
|
|
'defaultLocale' => 'en-us',
|
|
'brandingOptions' => 'none',
|
|
],
|
|
'localized_notification_messages' => [
|
|
[
|
|
'locale' => 'en-us',
|
|
'subject' => 'Email Subject',
|
|
'messageTemplate' => 'Email Body',
|
|
'isDefault' => true,
|
|
],
|
|
],
|
|
],
|
|
[
|
|
'channel' => 'Push',
|
|
'template_id' => 'push-template-1',
|
|
'template' => [
|
|
'id' => 'push-template-1',
|
|
'displayName' => 'Push Template',
|
|
'defaultLocale' => 'en-us',
|
|
'brandingOptions' => 'none',
|
|
],
|
|
'localized_notification_messages' => [
|
|
[
|
|
'locale' => 'en-us',
|
|
'subject' => 'Push Subject',
|
|
'messageTemplate' => 'Push Body',
|
|
'isDefault' => true,
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
]);
|
|
|
|
$response = $this->actingAs($user)
|
|
->get(PolicyVersionResource::getUrl('view', ['record' => $version]).'?tab=normalized-settings&tenant='.(string) $tenant->external_id);
|
|
|
|
$response->assertOk();
|
|
$response->assertSee('Enrollment notifications');
|
|
$response->assertSee('Notification templates');
|
|
$response->assertSee('Email (en-us) Subject');
|
|
$response->assertSee('Email Subject');
|
|
$response->assertSee('Email (en-us) Message');
|
|
$response->assertSee('Email Body');
|
|
$response->assertSee('Push (en-us) Subject');
|
|
$response->assertSee('Push Subject');
|
|
$response->assertSee('Push (en-us) Message');
|
|
$response->assertSee('Push Body');
|
|
|
|
expect($response->getContent())
|
|
->toContain('data-shared-detail-family="normalized-settings"')
|
|
->toContain('data-shared-normalized-settings-host="policy_version"');
|
|
});
|