## 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
68 lines
2.8 KiB
PHP
68 lines
2.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\BaselineProfile;
|
|
use App\Models\BaselineSnapshot;
|
|
use App\Models\Workspace;
|
|
use App\Support\Baselines\BaselineReasonCodes;
|
|
use App\Support\Baselines\BaselineSnapshotLifecycleState;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
it('defaults factory snapshots to complete and consumable', function (): void {
|
|
$snapshot = BaselineSnapshot::factory()->make();
|
|
|
|
expect($snapshot->lifecycleState())->toBe(BaselineSnapshotLifecycleState::Complete)
|
|
->and($snapshot->isConsumable())->toBeTrue()
|
|
->and($snapshot->isComplete())->toBeTrue();
|
|
});
|
|
|
|
it('tracks lifecycle transitions and completion proof metadata', function (): void {
|
|
$workspace = Workspace::factory()->create();
|
|
$profile = BaselineProfile::factory()->active()->create([
|
|
'workspace_id' => (int) $workspace->getKey(),
|
|
]);
|
|
|
|
$snapshot = BaselineSnapshot::factory()->complete()->create([
|
|
'workspace_id' => (int) $workspace->getKey(),
|
|
'baseline_profile_id' => (int) $profile->getKey(),
|
|
]);
|
|
|
|
$snapshot->markBuilding(['expected_items' => 3]);
|
|
$snapshot->refresh();
|
|
|
|
expect($snapshot->lifecycleState())->toBe(BaselineSnapshotLifecycleState::Building)
|
|
->and($snapshot->completed_at)->toBeNull()
|
|
->and(data_get($snapshot->completion_meta_jsonb, 'expected_items'))->toBe(3);
|
|
|
|
$snapshot->markComplete('truth-hash', ['persisted_items' => 3]);
|
|
$snapshot->refresh();
|
|
|
|
expect($snapshot->lifecycleState())->toBe(BaselineSnapshotLifecycleState::Complete)
|
|
->and($snapshot->snapshot_identity_hash)->toBe('truth-hash')
|
|
->and($snapshot->completed_at)->not->toBeNull()
|
|
->and($snapshot->failed_at)->toBeNull()
|
|
->and(data_get($snapshot->completion_meta_jsonb, 'persisted_items'))->toBe(3);
|
|
});
|
|
|
|
it('marks snapshots incomplete with a persisted reason code', function (): void {
|
|
$snapshot = BaselineSnapshot::factory()->building()->create();
|
|
|
|
$snapshot->markIncomplete(BaselineReasonCodes::SNAPSHOT_COMPLETION_PROOF_FAILED, ['persisted_items' => 1]);
|
|
$snapshot->refresh();
|
|
|
|
expect($snapshot->lifecycleState())->toBe(BaselineSnapshotLifecycleState::Incomplete)
|
|
->and($snapshot->failed_at)->not->toBeNull()
|
|
->and($snapshot->completed_at)->toBeNull()
|
|
->and(data_get($snapshot->completion_meta_jsonb, 'finalization_reason_code'))->toBe(BaselineReasonCodes::SNAPSHOT_COMPLETION_PROOF_FAILED)
|
|
->and(data_get($snapshot->completion_meta_jsonb, 'persisted_items'))->toBe(1);
|
|
});
|
|
|
|
it('refuses to transition incomplete snapshots back to complete', function (): void {
|
|
$snapshot = BaselineSnapshot::factory()->incomplete()->create();
|
|
|
|
expect(fn () => $snapshot->markComplete('retry-hash'))->toThrow(RuntimeException::class);
|
|
});
|