TenantAtlas/apps/platform/tests/Feature/TenantRBAC/MembershipAuditLogTest.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

56 lines
2.0 KiB
PHP

<?php
use App\Models\AuditLog;
use App\Models\User;
use App\Models\WorkspaceMembership;
use App\Services\Auth\TenantMembershipManager;
use App\Support\Audit\AuditActionId;
use Illuminate\Foundation\Testing\RefreshDatabase;
uses(RefreshDatabase::class);
it('writes audit logs for environment access scope grant and remove without sensitive fields', function () {
[$actor, $tenant] = createUserWithTenant(role: 'owner');
$member = User::factory()->create();
WorkspaceMembership::factory()->create([
'workspace_id' => (int) $tenant->workspace_id,
'user_id' => (int) $member->getKey(),
'role' => 'readonly',
]);
$manager = app(TenantMembershipManager::class);
$membership = $manager->addMember($tenant, $actor, $member, 'readonly');
$manager->removeMember($tenant, $actor, $membership);
$actions = AuditLog::query()
->where('managed_environment_id', $tenant->getKey())
->whereIn('action', [
AuditActionId::ManagedEnvironmentAccessScopeGrant->value,
AuditActionId::ManagedEnvironmentAccessScopeRemove->value,
])
->pluck('action')
->all();
expect($actions)->toContain(AuditActionId::ManagedEnvironmentAccessScopeGrant->value);
expect($actions)->toContain(AuditActionId::ManagedEnvironmentAccessScopeRemove->value);
$metadata = AuditLog::query()
->where('managed_environment_id', $tenant->getKey())
->whereIn('action', [
AuditActionId::ManagedEnvironmentAccessScopeGrant->value,
AuditActionId::ManagedEnvironmentAccessScopeRemove->value,
])
->get()
->pluck('metadata')
->all();
foreach ($metadata as $entry) {
expect($entry)->toBeArray();
expect(array_key_exists('app_client_secret', $entry))->toBeFalse();
expect(array_key_exists('client_secret', $entry))->toBeFalse();
expect(array_key_exists('refresh_token', $entry))->toBeFalse();
expect(array_key_exists('access_token', $entry))->toBeFalse();
}
});