## Summary - productize the restore wizard preview safety gates and process-flow guidance for Spec 332 - add the restore create presenter plus new process-flow, proof, scope, and safety partials - extend restore wizard feature, smoke, screenshot, and presenter coverage - include the Spec 332 artifacts for spec, plan, and tasks ## Notes - branch head was already pushed before PR creation - working tree was clean when this PR was opened Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #399
81 lines
2.7 KiB
PHP
81 lines
2.7 KiB
PHP
<?php
|
|
|
|
use App\Filament\Resources\RestoreRunResource;
|
|
use App\Models\BackupItem;
|
|
use App\Models\BackupSet;
|
|
use App\Models\ManagedEnvironment;
|
|
use App\Support\Workspaces\WorkspaceContext;
|
|
|
|
function makeAssignment(string $odataType, string $groupId, ?string $displayName = null): array
|
|
{
|
|
$target = [
|
|
'@odata.type' => $odataType,
|
|
'groupId' => $groupId,
|
|
];
|
|
|
|
if (is_string($displayName) && $displayName !== '') {
|
|
$target['group_display_name'] = $displayName;
|
|
}
|
|
|
|
return ['target' => $target];
|
|
}
|
|
|
|
test('restore wizard create page renders without touching graph', function () {
|
|
$tenant = ManagedEnvironment::factory()->create();
|
|
[$user] = createUserWithTenant($tenant);
|
|
|
|
bindFailHardGraphClient();
|
|
|
|
$this->actingAs($user)
|
|
->withSession([
|
|
WorkspaceContext::SESSION_KEY => (int) $tenant->workspace_id,
|
|
WorkspaceContext::LAST_ENVIRONMENT_IDS_SESSION_KEY => [
|
|
(string) $tenant->workspace_id => (int) $tenant->getKey(),
|
|
],
|
|
])
|
|
->get(RestoreRunResource::getUrl('create', panel: 'admin', tenant: $tenant))
|
|
->assertOk()
|
|
->assertSee('Create restore run')
|
|
->assertSee('Select Backup Set');
|
|
});
|
|
|
|
test('restore wizard group mapping renders DB-only with resolver-mode UX', function () {
|
|
$tenant = ManagedEnvironment::factory()->create();
|
|
[$user] = createUserWithTenant($tenant);
|
|
|
|
$backupSet = BackupSet::factory()->create([
|
|
'managed_environment_id' => $tenant->getKey(),
|
|
'name' => 'group-mapping-backup-set',
|
|
]);
|
|
|
|
$groupId = '11111111-2222-3333-4444-555555555555';
|
|
|
|
BackupItem::factory()->create([
|
|
'managed_environment_id' => $tenant->getKey(),
|
|
'backup_set_id' => $backupSet->getKey(),
|
|
'assignments' => [
|
|
makeAssignment('#microsoft.graph.groupAssignmentTarget', $groupId, 'Example Group'),
|
|
],
|
|
]);
|
|
|
|
bindFailHardGraphClient();
|
|
|
|
$url = RestoreRunResource::getUrl('create', panel: 'admin', tenant: $tenant).'?backup_set_id='.$backupSet->getKey();
|
|
|
|
$this->actingAs($user)
|
|
->withSession([
|
|
WorkspaceContext::SESSION_KEY => (int) $tenant->workspace_id,
|
|
WorkspaceContext::LAST_ENVIRONMENT_IDS_SESSION_KEY => [
|
|
(string) $tenant->workspace_id => (int) $tenant->getKey(),
|
|
],
|
|
])
|
|
->get($url)
|
|
->assertOk()
|
|
->assertSee('Example Group')
|
|
->assertSee('Source ID: '.$groupId)
|
|
->assertSee('Resolve target mappings')
|
|
->assertSee('Select a target group from the directory cache or enter a target group object ID as a fallback.')
|
|
->assertDontSee('Paste the target Entra ID group Object ID')
|
|
->assertDontSee('Use SKIP to omit the assignment.');
|
|
});
|