## Summary - restore broad full-suite green-signal coverage across platform governance, operations, onboarding, dashboard/productization, and customer review flows - align related platform tests and supporting behavior with the current expected state for this restoration pass - update the spec-candidates queue as part of the same suite-restoration sweep ## Validation - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Browser/Dashboard/TenantDashboardProductizationSmokeTest.php tests/Browser/Reviews/CustomerReviewWorkspaceSmokeTest.php tests/Browser/Spec194GovernanceFrictionSmokeTest.php tests/Browser/Spec265DecisionRegisterSmokeTest.php` Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #351
53 lines
1.9 KiB
PHP
53 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Filament\Resources\TenantResource;
|
|
use App\Models\User;
|
|
use App\Support\Workspaces\WorkspaceContext;
|
|
|
|
pest()->browser()->timeout(15_000);
|
|
|
|
it('renders tenant memberships only on the dedicated memberships page after scroll hydration', function (): void {
|
|
[$owner, $tenant] = createUserWithTenant(role: 'owner');
|
|
|
|
$member = User::factory()->create([
|
|
'email' => 'browser-tenant-member@example.test',
|
|
]);
|
|
createUserWithTenant(tenant: $tenant, user: $member, role: 'readonly');
|
|
|
|
$this->actingAs($owner)->withSession([
|
|
WorkspaceContext::SESSION_KEY => (int) $tenant->workspace_id,
|
|
]);
|
|
session()->put(WorkspaceContext::SESSION_KEY, (int) $tenant->workspace_id);
|
|
|
|
$viewPage = visit(TenantResource::getUrl('view', ['record' => $tenant->getRouteKey()], panel: 'admin'));
|
|
|
|
$viewPage
|
|
->assertNoJavaScriptErrors()
|
|
->assertSee((string) $tenant->name)
|
|
->assertSee('Manage access scope')
|
|
->assertScript("document.body.innerText.includes('Add member')", false)
|
|
->assertScript("document.body.innerText.includes('browser-tenant-member@example.test')", false);
|
|
|
|
$membershipsPage = $viewPage->click('Manage access scope');
|
|
|
|
$membershipsPage
|
|
->assertNoJavaScriptErrors()
|
|
->assertSee('Manage environment access scope')
|
|
->assertSee('Back to environment overview')
|
|
->assertSee('Workspace membership defines the role. Explicit environment scopes only narrow which workspace members can see this environment.');
|
|
|
|
$membershipsPage->script(<<<'JS'
|
|
window.scrollTo(0, document.body.scrollHeight);
|
|
JS);
|
|
|
|
$membershipsPage
|
|
->waitForText('Add explicit access scope')
|
|
->assertNoJavaScriptErrors()
|
|
->assertSee('Manage environment access scope')
|
|
->assertSee('Add explicit access scope')
|
|
->assertSee('browser-tenant-member@example.test')
|
|
->assertSee('Remove explicit scope');
|
|
});
|