TenantAtlas/tests/Feature/TenantRBAC/ArchivedTenantRouteAccessTest.php

29 lines
778 B
PHP

<?php
use App\Models\Tenant;
use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
uses(RefreshDatabase::class);
it('allows members to access the tenant dashboard route for archived tenants', function () {
[$user, $tenant] = createUserWithTenant(role: 'readonly');
$tenant->delete();
$this->actingAs($user)
->get("/admin/t/{$tenant->external_id}")
->assertSuccessful();
});
it('returns 404 for non-members on the tenant dashboard route for archived tenants', function () {
$tenant = Tenant::factory()->create(['external_id' => 'archived-tenant-a']);
$tenant->delete();
$user = User::factory()->create();
$this->actingAs($user)
->get("/admin/t/{$tenant->external_id}")
->assertNotFound();
});