TenantAtlas/apps/platform/tests/Unit/BulkRestoreRunRestoreJobTest.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

119 lines
3.8 KiB
PHP

<?php
use App\Jobs\BulkRestoreRunRestoreJob;
use App\Models\BackupSet;
use App\Models\OperationRun;
use App\Models\RestoreRun;
use App\Models\ManagedEnvironment;
use App\Models\User;
use App\Services\OperationRunService;
use Illuminate\Foundation\Testing\RefreshDatabase;
uses(RefreshDatabase::class);
test('bulk restore run restore restores archived runs', function () {
$tenant = ManagedEnvironment::factory()->create(['is_current' => true]);
$user = User::factory()->create();
$backupSet = BackupSet::create([
'managed_environment_id' => $tenant->id,
'name' => 'Backup',
'status' => 'completed',
'item_count' => 0,
]);
$restoreRun = RestoreRun::create([
'managed_environment_id' => $tenant->id,
'backup_set_id' => $backupSet->id,
'status' => 'completed',
'is_dry_run' => true,
'requested_by' => 'tester@example.com',
]);
$restoreRun->delete();
expect($restoreRun->trashed())->toBeTrue();
$run = OperationRun::factory()->create([
'managed_environment_id' => $tenant->id,
'user_id' => $user->id,
'type' => 'restore_run.restore',
'status' => 'queued',
'outcome' => 'pending',
'summary_counts' => [],
'failure_summary' => [],
'context' => [
'target_scope' => ['directory_context_id' => 1],
],
]);
(new BulkRestoreRunRestoreJob(
tenantId: $tenant->id,
userId: $user->id,
restoreRunIds: [$restoreRun->id],
operationRun: $run,
))->handle(app(OperationRunService::class));
$restoreRun->refresh();
expect($restoreRun->trashed())->toBeFalse();
$run->refresh();
expect($run->status)->toBe('completed')
->and($run->outcome)->toBe('succeeded')
->and($run->summary_counts['total'] ?? null)->toBe(1)
->and($run->summary_counts['processed'] ?? null)->toBe(1)
->and($run->summary_counts['succeeded'] ?? null)->toBe(1)
->and($run->summary_counts['skipped'] ?? null)->toBe(0)
->and($run->summary_counts['failed'] ?? null)->toBe(0);
});
test('bulk restore run restore skips active runs', function () {
$tenant = ManagedEnvironment::factory()->create(['is_current' => true]);
$user = User::factory()->create();
$backupSet = BackupSet::create([
'managed_environment_id' => $tenant->id,
'name' => 'Backup',
'status' => 'completed',
'item_count' => 0,
]);
$restoreRun = RestoreRun::create([
'managed_environment_id' => $tenant->id,
'backup_set_id' => $backupSet->id,
'status' => 'completed',
'is_dry_run' => true,
'requested_by' => 'tester@example.com',
]);
$run = OperationRun::factory()->create([
'managed_environment_id' => $tenant->id,
'user_id' => $user->id,
'type' => 'restore_run.restore',
'status' => 'queued',
'outcome' => 'pending',
'summary_counts' => [],
'failure_summary' => [],
'context' => [
'target_scope' => ['directory_context_id' => 1],
],
]);
(new BulkRestoreRunRestoreJob(
tenantId: $tenant->id,
userId: $user->id,
restoreRunIds: [$restoreRun->id],
operationRun: $run,
))->handle(app(OperationRunService::class));
$restoreRun->refresh();
expect($restoreRun->trashed())->toBeFalse();
$run->refresh();
expect($run->status)->toBe('completed')
->and($run->outcome)->toBe('succeeded')
->and($run->summary_counts['total'] ?? null)->toBe(1)
->and($run->summary_counts['processed'] ?? null)->toBe(1)
->and($run->summary_counts['succeeded'] ?? null)->toBe(0)
->and($run->summary_counts['skipped'] ?? null)->toBe(1)
->and($run->summary_counts['failed'] ?? null)->toBe(0);
});