## 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
75 lines
3.1 KiB
PHP
75 lines
3.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Support\Navigation\NavigationMatrixRule;
|
|
use App\Support\Navigation\RelatedActionLabelCatalog;
|
|
use App\Support\References\ReferenceClass;
|
|
use App\Support\References\ReferenceLinkTarget;
|
|
use App\Support\References\ReferenceResolutionState;
|
|
use App\Support\References\ReferenceStatePresenter;
|
|
use App\Support\References\ReferenceTechnicalDetail;
|
|
use App\Support\References\ReferenceTypeLabelCatalog;
|
|
use App\Support\References\RelatedContextReferenceAdapter;
|
|
use App\Support\References\ResolvedReference;
|
|
use App\Support\References\ResolvedReferencePresenter;
|
|
|
|
it('adapts a resolved reference into a related context entry payload', function (): void {
|
|
$adapter = new RelatedContextReferenceAdapter(
|
|
new RelatedActionLabelCatalog,
|
|
new ResolvedReferencePresenter(new ReferenceTypeLabelCatalog, new ReferenceStatePresenter),
|
|
);
|
|
|
|
$entry = $adapter->adapt(
|
|
new NavigationMatrixRule('finding', 'detail_section', 'source_run', 'operation_run', 'canonical_page', 10),
|
|
new ResolvedReference(
|
|
referenceClass: ReferenceClass::OperationRun,
|
|
rawIdentifier: '44',
|
|
primaryLabel: 'Baseline compare',
|
|
secondaryLabel: 'Operation #44',
|
|
state: ReferenceResolutionState::Resolved,
|
|
stateLabel: null,
|
|
linkTarget: new ReferenceLinkTarget(
|
|
targetKind: ReferenceClass::OperationRun->value,
|
|
url: '/admin/operations/44',
|
|
actionLabel: 'Open operation',
|
|
contextBadge: 'Tenant context',
|
|
),
|
|
technicalDetail: ReferenceTechnicalDetail::forIdentifier('44'),
|
|
),
|
|
);
|
|
|
|
expect($entry)->not->toBeNull()
|
|
->and($entry?->targetUrl)->toBe('/admin/operations/44')
|
|
->and($entry?->secondaryValue)->toBe('Operation #44 · ID 44')
|
|
->and($entry?->actionLabel)->toBe('Open operation')
|
|
->and($entry?->reference)->not->toBeNull()
|
|
->and($entry?->reference['typeLabel'])->toBe('Operation')
|
|
->and($entry?->reference['secondaryLabel'])->toBe('Operation #44')
|
|
->and($entry?->reference['stateLabel'])->toBe('Resolved')
|
|
->and($entry?->reference['showStateBadge'])->toBeFalse();
|
|
});
|
|
|
|
it('respects hide policies for degraded references', function (): void {
|
|
$adapter = new RelatedContextReferenceAdapter(
|
|
new RelatedActionLabelCatalog,
|
|
new ResolvedReferencePresenter(new ReferenceTypeLabelCatalog, new ReferenceStatePresenter),
|
|
);
|
|
|
|
$entry = $adapter->adapt(
|
|
new NavigationMatrixRule('finding', 'list_row', 'baseline_snapshot', 'baseline_snapshot', 'direct_record', 10, missingStatePolicy: 'hide'),
|
|
new ResolvedReference(
|
|
referenceClass: ReferenceClass::BaselineSnapshot,
|
|
rawIdentifier: '88',
|
|
primaryLabel: 'Baseline snapshot',
|
|
secondaryLabel: null,
|
|
state: ReferenceResolutionState::Inaccessible,
|
|
stateLabel: null,
|
|
linkTarget: null,
|
|
technicalDetail: ReferenceTechnicalDetail::forIdentifier('88'),
|
|
),
|
|
);
|
|
|
|
expect($entry)->toBeNull();
|
|
});
|