TenantAtlas/apps/platform/tests/Feature/Filament/PolicyVersionResolvedReferenceLinksTest.php
ahmido 38523814c2 fix: restore full-suite green signals across platform workflows (#351)
## 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
2026-05-12 18:50:40 +00:00

45 lines
1.4 KiB
PHP

<?php
declare(strict_types=1);
use App\Filament\Resources\EntraGroupResource;
use App\Filament\Resources\PolicyVersionResource;
use App\Models\EntraGroup;
use App\Models\Policy;
use App\Models\PolicyVersion;
use Filament\Facades\Filament;
it('renders canonical group links for resolved assignment targets', function (): void {
[$user, $tenant] = createUserWithTenant(role: 'owner');
$this->actingAs($user);
Filament::setCurrentPanel('tenant');
Filament::bootCurrentPanel();
$groupId = '33333333-4444-5555-6666-777777777777';
$group = EntraGroup::factory()->for($tenant)->create([
'entra_id' => strtolower($groupId),
'display_name' => 'Scoped group',
]);
$policy = Policy::factory()->for($tenant)->create();
$version = PolicyVersion::factory()->for($tenant)->create([
'policy_id' => (int) $policy->getKey(),
'assignments' => [
[
'intent' => 'apply',
'target' => [
'@odata.type' => '#microsoft.graph.groupAssignmentTarget',
'groupId' => $groupId,
],
],
],
]);
$this->get(PolicyVersionResource::getUrl('view', ['record' => $version], panel: 'admin', tenant: $tenant))
->assertOk()
->assertSee(EntraGroupResource::getUrl('view', ['record' => $group], panel: 'admin', tenant: $tenant), false)
->assertSee('Scoped group');
});