create(); [$user, $tenantA] = createUserWithTenant(tenant: $tenantA, role: 'owner'); $tenantB = Tenant::factory()->create(['workspace_id' => (int) $tenantA->workspace_id]); createUserWithTenant(tenant: $tenantB, user: $user, role: 'owner'); OperationRun::factory()->create([ 'tenant_id' => (int) $tenantA->getKey(), 'workspace_id' => (int) $tenantA->workspace_id, 'type' => 'inventory_sync', 'status' => 'completed', 'outcome' => 'failed', 'context' => [ 'inventory' => [ 'coverage' => InventoryCoveragePayload::buildPayload([ 'deviceConfiguration' => [ 'status' => InventoryCoveragePayload::StatusFailed, 'item_count' => 0, 'error_code' => 'graph_forbidden', ], ], []), ], ], 'completed_at' => now(), ]); OperationRun::factory()->create([ 'tenant_id' => (int) $tenantB->getKey(), 'workspace_id' => (int) $tenantB->workspace_id, 'type' => 'inventory_sync', 'status' => 'completed', 'outcome' => 'succeeded', 'context' => [ 'inventory' => [ 'coverage' => InventoryCoveragePayload::buildPayload([ 'deviceConfiguration' => [ 'status' => InventoryCoveragePayload::StatusSucceeded, 'item_count' => 1, ], ], []), ], ], 'completed_at' => now()->subMinute(), ]); $this->actingAs($user); Filament::setCurrentPanel('admin'); Filament::setTenant(null, true); Filament::bootCurrentPanel(); session()->put(WorkspaceContext::SESSION_KEY, (int) $tenantA->workspace_id); session()->put(WorkspaceContext::LAST_TENANT_IDS_SESSION_KEY, [ (string) $tenantA->workspace_id => (int) $tenantA->getKey(), ]); Livewire::actingAs($user)->test(InventoryCoverage::class) ->assertOk() ->assertSee('Tenant coverage truth') ->assertTableColumnFormattedStateSet( 'coverage_state', BadgeCatalog::spec(BadgeDomain::InventoryCoverageState, 'failed')->label, 'policy:deviceConfiguration', ); });