60 lines
1.9 KiB
PHP
60 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Filament\Resources\OperationRunResource\Pages\ViewOperationRun;
|
|
use App\Models\OperationRun;
|
|
use Filament\Facades\Filament;
|
|
use Livewire\Livewire;
|
|
|
|
it('shows a safe empty state when a verification report is missing', function (): void {
|
|
[$user, $tenant] = createUserWithTenant(role: 'operator');
|
|
$this->actingAs($user);
|
|
|
|
$tenant->makeCurrent();
|
|
Filament::setTenant($tenant, true);
|
|
|
|
$run = OperationRun::factory()->create([
|
|
'tenant_id' => (int) $tenant->getKey(),
|
|
'user_id' => (int) $user->getKey(),
|
|
'type' => 'provider.connection.check',
|
|
'status' => 'completed',
|
|
'outcome' => 'failed',
|
|
'context' => [],
|
|
]);
|
|
|
|
assertNoOutboundHttp(function () use ($run): void {
|
|
Livewire::test(ViewOperationRun::class, ['record' => $run->getRouteKey()])
|
|
->assertSee('Verification report')
|
|
->assertSee('Verification report unavailable');
|
|
});
|
|
});
|
|
|
|
it('shows a safe empty state when a verification report is malformed', function (): void {
|
|
[$user, $tenant] = createUserWithTenant(role: 'operator');
|
|
$this->actingAs($user);
|
|
|
|
$tenant->makeCurrent();
|
|
Filament::setTenant($tenant, true);
|
|
|
|
$run = OperationRun::factory()->create([
|
|
'tenant_id' => (int) $tenant->getKey(),
|
|
'user_id' => (int) $user->getKey(),
|
|
'type' => 'provider.connection.check',
|
|
'status' => 'completed',
|
|
'outcome' => 'failed',
|
|
'context' => [
|
|
'verification_report' => [
|
|
'schema_version' => '1.0.0',
|
|
'flow' => 'provider.connection.check',
|
|
],
|
|
],
|
|
]);
|
|
|
|
assertNoOutboundHttp(function () use ($run): void {
|
|
Livewire::test(ViewOperationRun::class, ['record' => $run->getRouteKey()])
|
|
->assertSee('Verification report')
|
|
->assertSee('Verification report unavailable');
|
|
});
|
|
});
|