TenantAtlas/apps/platform/tests/Feature/Scheduling/PruneOldOperationRunsScheduleTest.php
ahmido e64bae9cfc feat: cut over tenant core to managed environments (#335)
## Summary
- replace the legacy Tenant and TenantMembership core models with ManagedEnvironment and ManagedEnvironmentMembership
- propagate the managed environment naming and key changes across Filament resources, pages, controllers, jobs, models, and supporting runtime paths
- add feature 279 spec artifacts and focused managed-environment test coverage for model behavior, route binding, panel context, authorization, and legacy guardrails

## Validation
- `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/ManagedEnvironment/LegacyTenantCoreGuardTest.php tests/Feature/ManagedEnvironment/ManagedEnvironmentAuthorizationTest.php tests/Feature/ManagedEnvironment/ManagedEnvironmentPanelContextTest.php tests/Feature/ManagedEnvironment/ManagedEnvironmentRouteBindingTest.php tests/Unit/ManagedEnvironment/ManagedEnvironmentContextResolverTest.php tests/Unit/ManagedEnvironment/ManagedEnvironmentModelTest.php`
- `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent`

## Notes
- branch pushed from commit `1123b122`
- browser smoke test file was added but not run in this pass

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #335
2026-05-07 06:38:14 +00:00

74 lines
2.8 KiB
PHP

<?php
use App\Jobs\PruneOldOperationRunsJob;
use App\Models\OperationRun;
use App\Models\Workspace;
use App\Models\WorkspaceSetting;
use Illuminate\Console\Scheduling\Schedule;
it('schedules pruning job daily without overlapping', function () {
/** @var Schedule $schedule */
$schedule = app(Schedule::class);
$event = collect($schedule->events())
->first(fn ($event) => ($event->description ?? null) === PruneOldOperationRunsJob::class);
expect($event)->not->toBeNull();
expect($event->withoutOverlapping)->toBeTrue();
});
it('prunes operation runs using per-workspace retention settings', function () {
$workspaceA = Workspace::factory()->create();
$workspaceB = Workspace::factory()->create();
WorkspaceSetting::query()->create([
'workspace_id' => (int) $workspaceA->getKey(),
'domain' => 'operations',
'key' => 'operation_run_retention_days',
'value' => 30,
'updated_by_user_id' => null,
]);
WorkspaceSetting::query()->create([
'workspace_id' => (int) $workspaceB->getKey(),
'domain' => 'operations',
'key' => 'operation_run_retention_days',
'value' => 120,
'updated_by_user_id' => null,
]);
$createRun = function (Workspace $workspace, int $ageDays, string $identitySuffix): OperationRun {
return OperationRun::query()->create([
'workspace_id' => (int) $workspace->getKey(),
'managed_environment_id' => null,
'user_id' => null,
'initiator_name' => 'System',
'type' => 'maintenance',
'status' => 'completed',
'outcome' => 'succeeded',
'run_identity_hash' => hash('sha256', 'prune-workspace-'.$workspace->getKey().'-'.$identitySuffix),
'summary_counts' => [],
'failure_summary' => [],
'context' => [],
'started_at' => now()->subDays($ageDays),
'completed_at' => now()->subDays($ageDays),
'created_at' => now()->subDays($ageDays),
'updated_at' => now()->subDays($ageDays),
]);
};
$workspaceAOldRun = $createRun($workspaceA, 45, 'old');
$workspaceANewRun = $createRun($workspaceA, 10, 'new');
$workspaceBOldRun = $createRun($workspaceB, 140, 'old');
$workspaceBRecentRun = $createRun($workspaceB, 100, 'recent');
PruneOldOperationRunsJob::dispatchSync();
expect(OperationRun::query()->whereKey((int) $workspaceAOldRun->getKey())->exists())->toBeFalse();
expect(OperationRun::query()->whereKey((int) $workspaceANewRun->getKey())->exists())->toBeTrue();
expect(OperationRun::query()->whereKey((int) $workspaceBOldRun->getKey())->exists())->toBeFalse();
expect(OperationRun::query()->whereKey((int) $workspaceBRecentRun->getKey())->exists())->toBeTrue();
});