## Summary - consolidate internal platform naming from `Tenant` to `Environment` / `ManagedEnvironment` across models, controllers, services, and Filament resources - rename environment-scoped UI surfaces such as dashboards, chooser flows, navigation, and related widgets to match the updated environment-first domain language - align middleware, onboarding/review lifecycle services, jobs, and route/context controllers with the new environment-scoped architecture ## Validation - not rerun as part of this commit/push/PR request ## Notes - branch is 1 commit ahead of `platform-dev` - main commit: `refactor: consolidate internal tenant model naming` Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #355
46 lines
1.9 KiB
PHP
46 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Filament\Pages\EnvironmentDashboard;
|
|
use App\Filament\Resources\BackupSetResource;
|
|
use App\Http\Middleware\SuppressDebugbarForSmokeRequests;
|
|
use App\Models\ManagedEnvironment;
|
|
use App\Models\User;
|
|
use App\Models\Workspace;
|
|
use App\Support\Workspaces\WorkspaceContext;
|
|
|
|
it('logs into the seeded backup-health browser fixture through the local helper', function (): void {
|
|
$this->artisan('tenantpilot:backup-health:seed-browser-fixture', ['--no-interaction' => true])
|
|
->assertSuccessful();
|
|
|
|
$workspaceConfig = config('tenantpilot.backup_health.browser_smoke_fixture.workspace');
|
|
$userConfig = config('tenantpilot.backup_health.browser_smoke_fixture.user');
|
|
$scenarioConfig = config('tenantpilot.backup_health.browser_smoke_fixture.blocked_drillthrough');
|
|
$tenantRouteKey = $scenarioConfig['managed_environment_id'] ?? $scenarioConfig['tenant_external_id'];
|
|
|
|
$workspace = Workspace::query()->where('slug', $workspaceConfig['slug'])->first();
|
|
$user = User::query()->where('email', $userConfig['email'])->first();
|
|
$tenant = ManagedEnvironment::query()->where('slug', $tenantRouteKey)->first();
|
|
|
|
expect($workspace)->not->toBeNull();
|
|
expect($user)->not->toBeNull();
|
|
expect($tenant)->not->toBeNull();
|
|
|
|
$this->get(route('admin.local.backup-health-browser-fixture-login'))
|
|
->assertRedirect(EnvironmentDashboard::getUrl(tenant: $tenant))
|
|
->assertPlainCookie(
|
|
SuppressDebugbarForSmokeRequests::COOKIE_NAME,
|
|
SuppressDebugbarForSmokeRequests::COOKIE_VALUE,
|
|
);
|
|
|
|
$this->assertAuthenticatedAs($user);
|
|
expect(session(WorkspaceContext::SESSION_KEY))->toBe((int) $workspace->getKey());
|
|
|
|
$this->get(EnvironmentDashboard::getUrl(tenant: $tenant))
|
|
->assertOk();
|
|
|
|
$this->get(BackupSetResource::getUrl('index', tenant: $tenant))
|
|
->assertForbidden();
|
|
});
|