## 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
71 lines
2.6 KiB
PHP
71 lines
2.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Filament\Resources\BaselineSnapshotResource;
|
|
use App\Filament\Resources\EvidenceSnapshotResource;
|
|
use App\Filament\Resources\OperationRunResource;
|
|
use App\Filament\Resources\TenantResource;
|
|
use App\Filament\Resources\TenantReviewResource;
|
|
use App\Models\Tenant;
|
|
use App\Support\Workspaces\WorkspaceContext;
|
|
use Filament\Facades\Filament;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
function tenantSearchTitles($results): array
|
|
{
|
|
return collect($results)->map(fn ($result): string => (string) $result->title)->all();
|
|
}
|
|
|
|
it('keeps tenant global-search aligned with administrative discoverability in the current workspace', function (): void {
|
|
$active = Tenant::factory()->active()->create(['name' => 'Lifecycle Active']);
|
|
[$user, $active] = createUserWithTenant(tenant: $active, role: 'owner');
|
|
|
|
$onboarding = Tenant::factory()->onboarding()->create([
|
|
'workspace_id' => (int) $active->workspace_id,
|
|
'name' => 'Lifecycle Onboarding',
|
|
]);
|
|
$draft = Tenant::factory()->draft()->create([
|
|
'workspace_id' => (int) $active->workspace_id,
|
|
'name' => 'Lifecycle Draft',
|
|
]);
|
|
$archived = Tenant::factory()->archived()->create([
|
|
'workspace_id' => (int) $active->workspace_id,
|
|
'name' => 'Lifecycle Archived',
|
|
]);
|
|
|
|
createUserWithTenant(tenant: $onboarding, user: $user, role: 'owner');
|
|
createUserWithTenant(tenant: $draft, user: $user, role: 'owner');
|
|
createUserWithTenant(tenant: $archived, user: $user, role: 'owner');
|
|
|
|
$this->actingAs($user);
|
|
Filament::setCurrentPanel('admin');
|
|
Filament::setTenant(null, true);
|
|
Filament::bootCurrentPanel();
|
|
|
|
session()->put(WorkspaceContext::SESSION_KEY, (int) $active->workspace_id);
|
|
|
|
$results = TenantResource::getGlobalSearchResults('Lifecycle');
|
|
|
|
expect(tenantSearchTitles($results))->toEqualCanonicalizing([
|
|
'Lifecycle Active',
|
|
'Lifecycle Onboarding',
|
|
'Lifecycle Draft',
|
|
'Lifecycle Archived',
|
|
]);
|
|
|
|
expect($results->first()?->url)
|
|
->not->toBeNull();
|
|
expect(collect($results)->filter(fn ($result): bool => filled($result->url))->count())
|
|
->toBe($results->count());
|
|
});
|
|
|
|
it('keeps first-slice taxonomy resources out of global search', function (): void {
|
|
expect(OperationRunResource::canGloballySearch())->toBeFalse()
|
|
->and(EvidenceSnapshotResource::canGloballySearch())->toBeFalse()
|
|
->and(BaselineSnapshotResource::canGloballySearch())->toBeFalse()
|
|
->and(TenantReviewResource::canGloballySearch())->toBeFalse();
|
|
});
|