TenantAtlas/apps/platform/tests/Feature/Monitoring/OperationsDbOnlyRenderingSpec081Test.php
Ahmed Darrazi 444b3520b0
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 10m54s
fix: restore full suite green signal
2026-05-12 20:45:16 +02:00

42 lines
1.3 KiB
PHP

<?php
declare(strict_types=1);
use App\Models\OperationRun;
use App\Support\Workspaces\WorkspaceContext;
use Filament\Facades\Filament;
use Illuminate\Support\Facades\Bus;
it('Spec081 renders operations index and detail from DB only', function (): void {
[$user, $tenant] = createUserWithTenant(role: 'owner');
$run = OperationRun::factory()->create([
'managed_environment_id' => (int) $tenant->getKey(),
'type' => 'provider.connection.check',
'status' => 'completed',
'outcome' => 'blocked',
'initiator_name' => 'System',
'context' => [
'reason_code' => 'provider_connection_missing',
],
]);
$this->actingAs($user);
Bus::fake();
Filament::setTenant(null, true);
assertNoOutboundHttp(function () use ($tenant, $run): void {
$this->withSession([WorkspaceContext::SESSION_KEY => (int) $tenant->workspace_id])
->get(\App\Support\OperationRunLinks::index())
->assertOk()
->assertSee('All');
$this->withSession([WorkspaceContext::SESSION_KEY => (int) $tenant->workspace_id])
->get(\App\Support\OperationRunLinks::tenantlessView($run))
->assertOk()
->assertSee(\App\Support\OperationRunLinks::identifier($run));
});
Bus::assertNothingDispatched();
});