## Summary This PR implements Spec 206 end to end and establishes the first checked-in test suite governance foundation for the platform app. Key changes: - add manifest-backed test lanes for fast-feedback, confidence, browser, heavy-governance, profiling, and junit - add budget and report helpers plus app-local artifact generation under `apps/platform/storage/logs/test-lanes` - add repo-root Sail-friendly lane/report wrappers - switch the default contributor test path to the fast-feedback lane - introduce explicit fixture profiles and cheaper defaults for shared tenant/provider test setup - add minimal/heavy factory states for tenant and provider connection setup - migrate the first high-usage and provider-sensitive tests to explicit fixture profiles - document budgets, taxonomy rules, DB reset guidance, and the full Spec 206 plan/contracts/tasks set ## Validation Executed during implementation: - focused Spec 206 guard/support/factory validation pack: 31 passed - provider-sensitive regression pack: 29 passed - first high-usage caller migration pack: 120 passed - lane routing and wrapper validation succeeded - pint completed successfully Measured lane baselines captured in docs: - fast-feedback: 176.74s - confidence: 394.38s - heavy-governance: 83.66s - browser: 128.87s - junit: 380.14s - profiling: 2701.51s - full-suite baseline anchor: 2624.60s ## Notes - Livewire v4 / Filament v5 runtime behavior is unchanged by this PR. - No new runtime routes, product UI flows, or database migrations are introduced. - Panel provider registration remains unchanged in `bootstrap/providers.php`. Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #239
57 lines
2.4 KiB
PHP
57 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\ProviderConnection;
|
|
use App\Models\ProviderCredential;
|
|
use App\Models\WorkspaceMembership;
|
|
use App\Services\Auth\CapabilityResolver;
|
|
use App\Services\Auth\WorkspaceCapabilityResolver;
|
|
use App\Support\Workspaces\WorkspaceContext;
|
|
use Filament\Facades\Filament;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
it('keeps the default tenant helper profile cheap by skipping provider setup and cache clears', function (): void {
|
|
$capabilities = \Mockery::mock(CapabilityResolver::class);
|
|
$workspaceCapabilities = \Mockery::mock(WorkspaceCapabilityResolver::class);
|
|
|
|
$capabilities->shouldNotReceive('clearCache');
|
|
$workspaceCapabilities->shouldNotReceive('clearCache');
|
|
|
|
app()->instance(CapabilityResolver::class, $capabilities);
|
|
app()->instance(WorkspaceCapabilityResolver::class, $workspaceCapabilities);
|
|
|
|
[$user, $tenant] = createUserWithTenant();
|
|
|
|
expect(WorkspaceMembership::query()
|
|
->where('workspace_id', (int) $tenant->workspace_id)
|
|
->where('user_id', (int) $user->getKey())
|
|
->exists())->toBeTrue()
|
|
->and(session(WorkspaceContext::SESSION_KEY))->toBe((int) $tenant->workspace_id)
|
|
->and(ProviderConnection::query()->where('tenant_id', (int) $tenant->getKey())->exists())->toBeFalse();
|
|
});
|
|
|
|
it('opt-ins provider, credential, ui-context, and cache resets only when the fixture profile asks for them', function (): void {
|
|
$capabilities = \Mockery::mock(CapabilityResolver::class);
|
|
$workspaceCapabilities = \Mockery::mock(WorkspaceCapabilityResolver::class);
|
|
|
|
$capabilities->shouldReceive('clearCache')->once();
|
|
$workspaceCapabilities->shouldReceive('clearCache')->once();
|
|
|
|
app()->instance(CapabilityResolver::class, $capabilities);
|
|
app()->instance(WorkspaceCapabilityResolver::class, $workspaceCapabilities);
|
|
|
|
[$user, $tenant] = createUserWithTenant(fixtureProfile: 'heavy');
|
|
|
|
$connection = ProviderConnection::query()
|
|
->where('tenant_id', (int) $tenant->getKey())
|
|
->where('is_default', true)
|
|
->first();
|
|
|
|
expect($connection)->not->toBeNull()
|
|
->and($connection?->credential()->exists())->toBeTrue()
|
|
->and(ProviderCredential::query()->where('provider_connection_id', (int) $connection?->getKey())->exists())->toBeTrue()
|
|
->and(Filament::getTenant()?->is($tenant))->toBeTrue();
|
|
}); |