TenantAtlas/apps/platform/tests/Feature/OpsUx/RestoreExecuteOperationRunSyncTest.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

60 lines
1.9 KiB
PHP

<?php
declare(strict_types=1);
use App\Listeners\SyncRestoreRunToOperationRun;
use App\Models\BackupSet;
use App\Models\OperationRun;
use App\Models\RestoreRun;
use App\Models\ManagedEnvironment;
it('syncs a completed restore run to a completed operation run', function (): void {
$tenant = ManagedEnvironment::factory()->create();
$backupSet = BackupSet::factory()->create([
'managed_environment_id' => $tenant->getKey(),
]);
$restoreRun = RestoreRun::factory()->create([
'managed_environment_id' => $tenant->getKey(),
'backup_set_id' => $backupSet->getKey(),
'status' => 'completed',
'is_dry_run' => false,
'metadata' => [
'total' => 10,
'succeeded' => 8,
'failed' => 1,
'skipped' => 1,
],
// Intentionally malformed outcomes to ensure sync never explodes.
'results' => [
'items' => [
'123' => [
'assignment_outcomes' => ['not-an-array'],
],
],
],
]);
app(SyncRestoreRunToOperationRun::class)->handle($restoreRun);
$opRun = OperationRun::query()
->where('managed_environment_id', $tenant->getKey())
->where('type', 'restore.execute')
->where('context->restore_run_id', $restoreRun->getKey())
->first();
expect($opRun)->not->toBeNull();
expect($opRun?->status)->toBe('completed');
expect($opRun?->outcome)->toBe('succeeded');
expect((int) ($restoreRun->refresh()->operation_run_id ?? 0))->toBe((int) ($opRun?->getKey() ?? 0));
expect($opRun?->summary_counts['total'] ?? null)->toBe(10);
expect($opRun?->summary_counts['succeeded'] ?? null)->toBe(8);
expect($opRun?->summary_counts['failed'] ?? null)->toBe(1);
expect($opRun?->summary_counts['skipped'] ?? null)->toBe(1);
expect($opRun?->completed_at)->not->toBeNull();
})->group('ops-ux');