## Summary - migrate provider connections to the canonical three-dimension state model: lifecycle via `is_enabled`, consent via `consent_status`, and verification via `verification_status` - remove legacy provider status and health badge paths, update admin and system directory surfaces, and align onboarding, consent callback, verification, resolver, and mutation flows with the new model - add the Spec 188 artifact set, schema migrations, guard coverage, and expanded provider-state tests across admin, system, onboarding, verification, and rendering paths ## Verification - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Auth/SystemPanelAuthTest.php tests/Feature/Filament/TenantGlobalSearchLifecycleScopeTest.php tests/Feature/ProviderConnections/ProviderConnectionEnableDisableTest.php tests/Feature/ProviderConnections/ProviderConnectionTruthCleanupSpec179Test.php` - integrated browser smoke: validated admin provider list/detail/edit, tenant provider summary, system directory tenant detail, provider-connection search exclusion, and cleaned up the temporary smoke record afterward ## Filament / implementation notes - Livewire v4.0+ compliance: preserved; this change targets Filament v5 on Livewire v4 and does not introduce older APIs - Provider registration location: unchanged; Laravel 11+ panel providers remain registered in `bootstrap/providers.php` - Globally searchable resources: `ProviderConnectionResource` remains intentionally excluded from global search; tenant global search remains enabled and continues to resolve to view pages - Destructive actions: no new destructive action surface was introduced without confirmation or authorization; existing capability checks continue to gate provider mutations - Asset strategy: unchanged; no new Filament assets were added, so deploy behavior for `php artisan filament:assets` remains unchanged - Testing plan covered: system auth, tenant global search, provider lifecycle enable/disable behavior, and provider truth cleanup cutover behavior Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #219
75 lines
2.5 KiB
PHP
75 lines
2.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Filament\Resources\ProviderConnectionResource;
|
|
use App\Filament\Resources\TenantResource;
|
|
use App\Models\ProviderConnection;
|
|
use App\Models\TenantPermission;
|
|
use Illuminate\Support\Facades\Bus;
|
|
|
|
it('Spec081 renders provider connection list/edit pages DB-only', function (): void {
|
|
[$user, $tenant] = createUserWithTenant(role: 'owner');
|
|
|
|
$connection = ProviderConnection::factory()->create([
|
|
'tenant_id' => (int) $tenant->getKey(),
|
|
'display_name' => 'Spec081 Connection',
|
|
'provider' => 'microsoft',
|
|
'is_enabled' => true,
|
|
'migration_review_required' => true,
|
|
'metadata' => [
|
|
'legacy_identity_classification_source' => 'tenantpilot:provider-connections:classify',
|
|
'legacy_identity_result' => 'dedicated',
|
|
'effective_app' => [
|
|
'app_id' => null,
|
|
'source' => 'review_required',
|
|
],
|
|
],
|
|
]);
|
|
|
|
$this->actingAs($user);
|
|
Bus::fake();
|
|
|
|
assertNoOutboundHttp(function () use ($tenant, $connection): void {
|
|
$this->get(ProviderConnectionResource::getUrl('index', ['tenant' => $tenant->external_id], panel: 'admin'))
|
|
->assertOk()
|
|
->assertSee('Spec081 Connection');
|
|
|
|
$this->get(ProviderConnectionResource::getUrl('edit', ['tenant' => $tenant->external_id, 'record' => $connection], panel: 'admin'))
|
|
->assertOk()
|
|
->assertSee('Spec081 Connection')
|
|
->assertSee('Lifecycle')
|
|
->assertSee('Enabled')
|
|
->assertSee('Verification')
|
|
->assertSee('Migration review')
|
|
->assertSee('Review required')
|
|
->assertDontSee('Diagnostic status')
|
|
->assertDontSee('Diagnostic health');
|
|
});
|
|
|
|
Bus::assertNothingDispatched();
|
|
});
|
|
|
|
it('Spec081 renders tenant view page DB-only', function (): void {
|
|
[$user, $tenant] = createUserWithTenant(role: 'owner');
|
|
|
|
TenantPermission::query()->create([
|
|
'tenant_id' => (int) $tenant->getKey(),
|
|
'permission_key' => 'DeviceManagementConfiguration.ReadWrite.All',
|
|
'status' => 'granted',
|
|
'details' => ['source' => 'spec081-test'],
|
|
]);
|
|
|
|
$this->actingAs($user);
|
|
Bus::fake();
|
|
|
|
assertNoOutboundHttp(function () use ($tenant): void {
|
|
$this->get(TenantResource::getUrl('view', ['record' => $tenant], tenant: $tenant))
|
|
->assertOk()
|
|
->assertSee($tenant->name)
|
|
->assertSee('DeviceManagementConfiguration.ReadWrite.All');
|
|
});
|
|
|
|
Bus::assertNothingDispatched();
|
|
});
|