## 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
111 lines
4.1 KiB
PHP
111 lines
4.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Filament\Resources\AlertDestinationResource\Pages\EditAlertDestination;
|
|
use App\Filament\Resources\AlertDestinationResource\Pages\ViewAlertDestination;
|
|
use App\Models\AlertDelivery;
|
|
use App\Models\AlertDestination;
|
|
use App\Support\Workspaces\WorkspaceContext;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Livewire\Livewire;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// T029 — Deep-link visibility + URL contract
|
|
// ---------------------------------------------------------------------------
|
|
|
|
it('shows view_last_delivery action on view page when a test delivery exists', function (): void {
|
|
[$user] = createUserWithTenant(role: 'owner');
|
|
$this->actingAs($user);
|
|
|
|
$workspaceId = (int) session()->get(WorkspaceContext::SESSION_KEY);
|
|
$destination = AlertDestination::factory()->create([
|
|
'workspace_id' => $workspaceId,
|
|
'is_enabled' => true,
|
|
]);
|
|
|
|
AlertDelivery::factory()->test()->create([
|
|
'workspace_id' => $workspaceId,
|
|
'alert_destination_id' => $destination->getKey(),
|
|
'status' => AlertDelivery::STATUS_SENT,
|
|
]);
|
|
|
|
Livewire::test(ViewAlertDestination::class, ['record' => $destination->getRouteKey()])
|
|
->assertActionVisible('view_last_delivery');
|
|
});
|
|
|
|
it('hides view_last_delivery action on view page when no test delivery exists', function (): void {
|
|
[$user] = createUserWithTenant(role: 'owner');
|
|
$this->actingAs($user);
|
|
|
|
$workspaceId = (int) session()->get(WorkspaceContext::SESSION_KEY);
|
|
$destination = AlertDestination::factory()->create([
|
|
'workspace_id' => $workspaceId,
|
|
'is_enabled' => true,
|
|
]);
|
|
|
|
Livewire::test(ViewAlertDestination::class, ['record' => $destination->getRouteKey()])
|
|
->assertActionHidden('view_last_delivery');
|
|
});
|
|
|
|
it('shows view_last_delivery action on edit page when a test delivery exists', function (): void {
|
|
[$user] = createUserWithTenant(role: 'owner');
|
|
$this->actingAs($user);
|
|
|
|
$workspaceId = (int) session()->get(WorkspaceContext::SESSION_KEY);
|
|
$destination = AlertDestination::factory()->create([
|
|
'workspace_id' => $workspaceId,
|
|
'is_enabled' => true,
|
|
]);
|
|
|
|
AlertDelivery::factory()->test()->create([
|
|
'workspace_id' => $workspaceId,
|
|
'alert_destination_id' => $destination->getKey(),
|
|
'status' => AlertDelivery::STATUS_SENT,
|
|
]);
|
|
|
|
Livewire::test(EditAlertDestination::class, ['record' => $destination->getRouteKey()])
|
|
->assertActionVisible('view_last_delivery');
|
|
});
|
|
|
|
it('hides view_last_delivery action on edit page when no test delivery exists', function (): void {
|
|
[$user] = createUserWithTenant(role: 'owner');
|
|
$this->actingAs($user);
|
|
|
|
$workspaceId = (int) session()->get(WorkspaceContext::SESSION_KEY);
|
|
$destination = AlertDestination::factory()->create([
|
|
'workspace_id' => $workspaceId,
|
|
'is_enabled' => true,
|
|
]);
|
|
|
|
Livewire::test(EditAlertDestination::class, ['record' => $destination->getRouteKey()])
|
|
->assertActionHidden('view_last_delivery');
|
|
});
|
|
|
|
it('generates deep link URL matching the contract filters', function (): void {
|
|
[$user] = createUserWithTenant(role: 'owner');
|
|
$this->actingAs($user);
|
|
|
|
$workspaceId = (int) session()->get(WorkspaceContext::SESSION_KEY);
|
|
$destination = AlertDestination::factory()->create([
|
|
'workspace_id' => $workspaceId,
|
|
'is_enabled' => true,
|
|
]);
|
|
|
|
AlertDelivery::factory()->test()->create([
|
|
'workspace_id' => $workspaceId,
|
|
'alert_destination_id' => $destination->getKey(),
|
|
'status' => AlertDelivery::STATUS_SENT,
|
|
]);
|
|
|
|
$component = Livewire::test(ViewAlertDestination::class, ['record' => $destination->getRouteKey()]);
|
|
|
|
$url = $component->instance()->getAction('view_last_delivery')->getUrl();
|
|
|
|
expect($url)->toContain('alert-deliveries');
|
|
expect($url)->toContain('filters%5Bevent_type%5D%5Bvalue%5D=alerts.test');
|
|
expect($url)->toContain('filters%5Balert_destination_id%5D%5Bvalue%5D='.$destination->getKey());
|
|
});
|