## 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
46 lines
1.8 KiB
PHP
46 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Services\Operations\OperationLifecyclePolicyValidator;
|
|
use App\Support\Operations\OperationLifecyclePolicy;
|
|
|
|
it('exposes the exact covered v1 lifecycle operation set', function (): void {
|
|
$types = app(OperationLifecyclePolicy::class)->coveredTypeNames();
|
|
|
|
expect($types)->toBe([
|
|
'baseline_capture',
|
|
'baseline_compare',
|
|
'inventory_sync',
|
|
'policy.sync',
|
|
'policy.sync_one',
|
|
'entra_group_sync',
|
|
'directory_role_definitions.sync',
|
|
'backup_schedule_run',
|
|
'restore.execute',
|
|
'tenant.review_pack.generate',
|
|
'tenant.review.compose',
|
|
'tenant.evidence.snapshot.generate',
|
|
]);
|
|
});
|
|
|
|
it('requires direct failed-job bridges for lifecycle policy entries that declare them', function (): void {
|
|
$validator = app(OperationLifecyclePolicyValidator::class);
|
|
|
|
expect($validator->jobUsesDirectFailedBridge('baseline_capture'))->toBeTrue()
|
|
->and($validator->jobUsesDirectFailedBridge('baseline_compare'))->toBeTrue()
|
|
->and($validator->jobUsesDirectFailedBridge('inventory_sync'))->toBeTrue()
|
|
->and($validator->jobUsesDirectFailedBridge('policy.sync'))->toBeTrue()
|
|
->and($validator->jobUsesDirectFailedBridge('tenant.review.compose'))->toBeTrue()
|
|
->and($validator->jobUsesDirectFailedBridge('backup_schedule_run'))->toBeFalse();
|
|
});
|
|
|
|
it('requires explicit timeout and fail-on-timeout declarations for covered jobs', function (): void {
|
|
$validator = app(OperationLifecyclePolicyValidator::class);
|
|
|
|
expect($validator->jobTimeoutSeconds('baseline_capture'))->toBe(300)
|
|
->and($validator->jobFailsOnTimeout('baseline_capture'))->toBeTrue()
|
|
->and($validator->jobTimeoutSeconds('restore.execute'))->toBe(420)
|
|
->and($validator->jobFailsOnTimeout('restore.execute'))->toBeTrue();
|
|
});
|