## Summary - move the Laravel application into `apps/platform` and keep the repository root for orchestration, docs, and tooling - update the local command model, Sail/Docker wiring, runtime paths, and ignore rules around the new platform location - add relocation quickstart/contracts plus focused smoke coverage for bootstrap, command model, routes, and runtime behavior ## Validation - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/PlatformRelocation` - integrated browser smoke validated `/up`, `/`, `/admin`, `/admin/choose-workspace`, and tenant route semantics for `200`, `403`, and `404` ## Remaining Rollout Checks - validate Dokploy build context and working-directory assumptions against the new `apps/platform` layout - confirm web, queue, and scheduler processes all start from the expected working directory in staging/production - verify no legacy volume mounts or asset-publish paths still point at the old root-level `public/` or `storage/` locations Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #213
66 lines
2.0 KiB
PHP
66 lines
2.0 KiB
PHP
<?php
|
|
|
|
use App\Filament\Resources\RestoreRunResource;
|
|
use App\Models\BackupItem;
|
|
use App\Models\BackupSet;
|
|
use App\Models\Tenant;
|
|
|
|
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 = Tenant::factory()->create();
|
|
[$user] = createUserWithTenant($tenant);
|
|
|
|
bindFailHardGraphClient();
|
|
|
|
$this->actingAs($user)
|
|
->get(RestoreRunResource::getUrl('create').'?tenant='.(string) $tenant->external_id)
|
|
->assertOk()
|
|
->assertSee('Create restore run')
|
|
->assertSee('Select Backup Set');
|
|
});
|
|
|
|
test('restore wizard group mapping renders DB-only with manual GUID UX', function () {
|
|
$tenant = Tenant::factory()->create();
|
|
[$user] = createUserWithTenant($tenant);
|
|
|
|
$backupSet = BackupSet::factory()->create([
|
|
'tenant_id' => $tenant->getKey(),
|
|
'name' => 'group-mapping-backup-set',
|
|
]);
|
|
|
|
$groupId = '11111111-2222-3333-4444-555555555555';
|
|
$expectedMasked = '…'.substr($groupId, -8);
|
|
|
|
BackupItem::factory()->create([
|
|
'tenant_id' => $tenant->getKey(),
|
|
'backup_set_id' => $backupSet->getKey(),
|
|
'assignments' => [
|
|
makeAssignment('#microsoft.graph.groupAssignmentTarget', $groupId, 'Example Group'),
|
|
],
|
|
]);
|
|
|
|
bindFailHardGraphClient();
|
|
|
|
$url = RestoreRunResource::getUrl('create').'?backup_set_id='.$backupSet->getKey().'&tenant='.(string) $tenant->external_id;
|
|
|
|
$this->actingAs($user)
|
|
->get($url)
|
|
->assertOk()
|
|
->assertSee($expectedMasked)
|
|
->assertSee('Paste the target Entra ID group Object ID')
|
|
->assertSee('Use SKIP to omit the assignment.');
|
|
});
|