## 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
67 lines
2.4 KiB
PHP
67 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Filament\Pages\Operations\TenantlessOperationRunViewer;
|
|
use App\Models\OperationRun;
|
|
use App\Support\Verification\VerificationReportFingerprint;
|
|
use Filament\Facades\Filament;
|
|
use Livewire\Livewire;
|
|
|
|
it('redacts forbidden evidence fields in rendered verification reports', function (): void {
|
|
[$user, $tenant] = createUserWithTenant(role: 'operator');
|
|
$this->actingAs($user);
|
|
|
|
$tenant->makeCurrent();
|
|
Filament::setTenant($tenant, true);
|
|
|
|
$report = json_decode(
|
|
(string) file_get_contents(repo_path('specs/074-verification-checklist/contracts/examples/fail.json')),
|
|
true,
|
|
512,
|
|
JSON_THROW_ON_ERROR,
|
|
);
|
|
|
|
$previousRun = OperationRun::factory()->create([
|
|
'tenant_id' => (int) $tenant->getKey(),
|
|
'workspace_id' => (int) $tenant->workspace_id,
|
|
'user_id' => (int) $user->getKey(),
|
|
'type' => 'provider.connection.check',
|
|
'status' => 'completed',
|
|
'outcome' => 'failed',
|
|
'context' => [
|
|
'verification_report' => $report,
|
|
],
|
|
]);
|
|
|
|
$report['checks'][0]['evidence'][] = ['kind' => 'authorization', 'value' => 'Bearer abc.def.ghi'];
|
|
$report['checks'][0]['evidence'][] = ['kind' => 'access_token', 'value' => 'super-secret'];
|
|
$report['checks'][0]['message'] = 'Authorization: Bearer abc.def.ghi access_token=super-secret';
|
|
$report['previous_report_id'] = (int) $previousRun->getKey();
|
|
|
|
$run = OperationRun::factory()->create([
|
|
'tenant_id' => (int) $tenant->getKey(),
|
|
'workspace_id' => (int) $tenant->workspace_id,
|
|
'user_id' => (int) $user->getKey(),
|
|
'type' => 'provider.connection.check',
|
|
'status' => 'completed',
|
|
'outcome' => 'failed',
|
|
'context' => [
|
|
'verification_report' => $report,
|
|
],
|
|
]);
|
|
|
|
$fingerprint = VerificationReportFingerprint::forReport($report);
|
|
|
|
assertNoOutboundHttp(function () use ($run, $fingerprint): void {
|
|
Livewire::test(TenantlessOperationRunViewer::class, ['run' => $run])
|
|
->assertSee('Verification report')
|
|
->assertSee('Open previous operation')
|
|
->assertSee($fingerprint)
|
|
->assertSee('Token acquisition works')
|
|
->assertDontSee('access_token')
|
|
->assertDontSee('Bearer abc.def.ghi')
|
|
->assertDontSee('super-secret');
|
|
});
|
|
});
|