## 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
196 lines
6.3 KiB
PHP
196 lines
6.3 KiB
PHP
<?php
|
|
|
|
use App\Models\RestoreRun;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
uses(RefreshDatabase::class);
|
|
test('group_mapping cast works', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
'source-group-2' => 'target-group-2',
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->group_mapping)->toBeArray()
|
|
->and($restoreRun->group_mapping)->toHaveCount(2);
|
|
});
|
|
|
|
test('hasGroupMapping returns true when mapping exists', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->hasGroupMapping())->toBeTrue();
|
|
});
|
|
|
|
test('hasGroupMapping returns false when mapping is null', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => null,
|
|
]);
|
|
|
|
expect($restoreRun->hasGroupMapping())->toBeFalse();
|
|
});
|
|
|
|
test('getMappedGroupId returns mapped group ID', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->getMappedGroupId('source-group-1'))->toBe('target-group-1');
|
|
});
|
|
|
|
test('getMappedGroupId returns null for unmapped group', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->getMappedGroupId('source-group-2'))->toBeNull();
|
|
});
|
|
|
|
test('isGroupSkipped returns true for skipped group', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'SKIP',
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->isGroupSkipped('source-group-1'))->toBeTrue();
|
|
});
|
|
|
|
test('isGroupSkipped returns false for mapped group', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->isGroupSkipped('source-group-1'))->toBeFalse();
|
|
});
|
|
|
|
test('getUnmappedGroupIds returns groups without mapping', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
],
|
|
]);
|
|
|
|
$unmapped = $restoreRun->getUnmappedGroupIds(['source-group-1', 'source-group-2', 'source-group-3']);
|
|
|
|
expect($unmapped)->toHaveCount(2)
|
|
->and($unmapped)->toContain('source-group-2', 'source-group-3');
|
|
});
|
|
|
|
test('addGroupMapping adds new mapping', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
],
|
|
]);
|
|
|
|
$restoreRun->addGroupMapping('source-group-2', 'target-group-2');
|
|
|
|
expect($restoreRun->group_mapping)->toHaveCount(2)
|
|
->and($restoreRun->group_mapping['source-group-2'])->toBe('target-group-2');
|
|
});
|
|
|
|
test('addGroupMapping overwrites existing mapping', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
],
|
|
]);
|
|
|
|
$restoreRun->addGroupMapping('source-group-1', 'target-group-new');
|
|
|
|
expect($restoreRun->group_mapping)->toHaveCount(1)
|
|
->and($restoreRun->group_mapping['source-group-1'])->toBe('target-group-new');
|
|
});
|
|
|
|
test('getAssignmentRestoreOutcomes returns outcomes from results', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'results' => [
|
|
'assignment_outcomes' => [
|
|
['status' => 'success', 'assignment' => []],
|
|
['status' => 'failed', 'assignment' => []],
|
|
],
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->getAssignmentRestoreOutcomes())->toHaveCount(2);
|
|
});
|
|
|
|
test('getAssignmentRestoreOutcomes returns empty array when not set', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'results' => [],
|
|
]);
|
|
|
|
expect($restoreRun->getAssignmentRestoreOutcomes())->toBeEmpty();
|
|
});
|
|
|
|
test('getSuccessfulAssignmentsCount returns correct count', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'results' => [
|
|
'assignment_outcomes' => [
|
|
['status' => 'success', 'assignment' => []],
|
|
['status' => 'success', 'assignment' => []],
|
|
['status' => 'failed', 'assignment' => []],
|
|
['status' => 'skipped', 'assignment' => []],
|
|
],
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->getSuccessfulAssignmentsCount())->toBe(2);
|
|
});
|
|
|
|
test('getFailedAssignmentsCount returns correct count', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'results' => [
|
|
'assignment_outcomes' => [
|
|
['status' => 'success', 'assignment' => []],
|
|
['status' => 'failed', 'assignment' => []],
|
|
['status' => 'failed', 'assignment' => []],
|
|
],
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->getFailedAssignmentsCount())->toBe(2);
|
|
});
|
|
|
|
test('getSkippedAssignmentsCount returns correct count', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'results' => [
|
|
'assignment_outcomes' => [
|
|
['status' => 'success', 'assignment' => []],
|
|
['status' => 'skipped', 'assignment' => []],
|
|
['status' => 'skipped', 'assignment' => []],
|
|
['status' => 'skipped', 'assignment' => []],
|
|
],
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->getSkippedAssignmentsCount())->toBe(3);
|
|
});
|
|
|
|
test('restore safety metadata helpers expose nested metadata payloads', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'metadata' => [
|
|
'scope_basis' => ['fingerprint' => 'scope-1'],
|
|
'check_basis' => ['fingerprint' => 'checks-1'],
|
|
'preview_basis' => ['fingerprint' => 'preview-1'],
|
|
'execution_safety_snapshot' => ['scope_fingerprint' => 'scope-1'],
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->scopeBasis())->toBe(['fingerprint' => 'scope-1'])
|
|
->and($restoreRun->checkBasis())->toBe(['fingerprint' => 'checks-1'])
|
|
->and($restoreRun->previewBasis())->toBe(['fingerprint' => 'preview-1'])
|
|
->and($restoreRun->executionSafetySnapshot())->toBe(['scope_fingerprint' => 'scope-1']);
|
|
});
|