69 lines
2.1 KiB
PHP
69 lines
2.1 KiB
PHP
<?php
|
|
|
|
use App\Jobs\ExecuteRestoreRunJob;
|
|
use App\Models\AuditLog;
|
|
use App\Models\BackupSet;
|
|
use App\Models\RestoreRun;
|
|
use App\Models\Tenant;
|
|
use App\Services\Intune\AuditLogger;
|
|
use App\Services\Intune\RestoreService;
|
|
use App\Support\RestoreRunStatus;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Mockery\MockInterface;
|
|
|
|
uses(RefreshDatabase::class);
|
|
|
|
test('live restore execution emits an auditable event linked to the run', function () {
|
|
$tenant = Tenant::create([
|
|
'tenant_id' => 'tenant-audit',
|
|
'name' => 'Tenant Audit',
|
|
'metadata' => [],
|
|
]);
|
|
|
|
$backupSet = BackupSet::create([
|
|
'tenant_id' => $tenant->id,
|
|
'name' => 'Backup',
|
|
'status' => 'completed',
|
|
'item_count' => 0,
|
|
]);
|
|
|
|
$restoreRun = RestoreRun::create([
|
|
'tenant_id' => $tenant->id,
|
|
'backup_set_id' => $backupSet->id,
|
|
'requested_by' => 'actor@example.com',
|
|
'is_dry_run' => false,
|
|
'status' => RestoreRunStatus::Queued->value,
|
|
'requested_items' => null,
|
|
'preview' => [],
|
|
'results' => null,
|
|
'metadata' => [],
|
|
]);
|
|
|
|
$restoreService = $this->mock(RestoreService::class, function (MockInterface $mock) use ($restoreRun) {
|
|
$mock->shouldReceive('executeForRun')
|
|
->once()
|
|
->andReturnUsing(function () use ($restoreRun): RestoreRun {
|
|
$restoreRun->update([
|
|
'status' => RestoreRunStatus::Completed->value,
|
|
'completed_at' => now(),
|
|
]);
|
|
|
|
return $restoreRun->refresh();
|
|
});
|
|
});
|
|
|
|
$job = new ExecuteRestoreRunJob($restoreRun->id, 'actor@example.com', 'Actor');
|
|
$job->handle($restoreService, app(AuditLogger::class));
|
|
|
|
$audit = AuditLog::query()
|
|
->where('tenant_id', $tenant->id)
|
|
->where('action', 'restore.started')
|
|
->where('metadata->restore_run_id', $restoreRun->id)
|
|
->latest('id')
|
|
->first();
|
|
|
|
expect($audit)->not->toBeNull();
|
|
expect($audit->metadata['backup_set_id'] ?? null)->toBe($backupSet->id);
|
|
expect($audit->actor_email)->toBe('actor@example.com');
|
|
});
|