Phase 1: Setup & Database (13 tasks completed) - Add assignments JSONB column to backup_items table - Add group_mapping JSONB column to restore_runs table - Extend BackupItem model with 7 assignment accessor methods - Extend RestoreRun model with 8 group mapping helper methods - Add scopeWithAssignments() query scope to BackupItem - Update graph_contracts.php with assignments endpoints - Create 5 factories: BackupItem, RestoreRun, Tenant, BackupSet, Policy - Add 30 unit tests (15 BackupItem, 15 RestoreRun) - all passing Phase 2: Graph API Integration (16 tasks completed) - Create AssignmentFetcher service with fallback strategy - Create GroupResolver service with orphaned ID handling - Create ScopeTagResolver service with 1-hour caching - Implement fail-soft error handling for all services - Add 17 unit tests (5 AssignmentFetcher, 6 GroupResolver, 6 ScopeTagResolver) - all passing - Total: 71 assertions across all Phase 2 tests Test Results: - Phase 1: 30/30 tests passing (45 assertions) - Phase 2: 17/17 tests passing (71 assertions) - Total: 47/47 tests passing (116 assertions) - Code formatted with Pint (PSR-12 compliant) Next: Phase 3 - US1 Backup with Assignments (12 tasks)
182 lines
5.6 KiB
PHP
182 lines
5.6 KiB
PHP
<?php
|
|
|
|
use App\Models\RestoreRun;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Tests\TestCase;
|
|
|
|
uses(TestCase::class, RefreshDatabase::class);
|
|
|
|
test('group_mapping cast works', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
'source-group-2' => 'target-group-2',
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->group_mapping)->toBeArray()
|
|
->and($restoreRun->group_mapping)->toHaveCount(2);
|
|
});
|
|
|
|
test('hasGroupMapping returns true when mapping exists', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->hasGroupMapping())->toBeTrue();
|
|
});
|
|
|
|
test('hasGroupMapping returns false when mapping is null', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => null,
|
|
]);
|
|
|
|
expect($restoreRun->hasGroupMapping())->toBeFalse();
|
|
});
|
|
|
|
test('getMappedGroupId returns mapped group ID', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->getMappedGroupId('source-group-1'))->toBe('target-group-1');
|
|
});
|
|
|
|
test('getMappedGroupId returns null for unmapped group', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->getMappedGroupId('source-group-2'))->toBeNull();
|
|
});
|
|
|
|
test('isGroupSkipped returns true for skipped group', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'SKIP',
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->isGroupSkipped('source-group-1'))->toBeTrue();
|
|
});
|
|
|
|
test('isGroupSkipped returns false for mapped group', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->isGroupSkipped('source-group-1'))->toBeFalse();
|
|
});
|
|
|
|
test('getUnmappedGroupIds returns groups without mapping', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
],
|
|
]);
|
|
|
|
$unmapped = $restoreRun->getUnmappedGroupIds(['source-group-1', 'source-group-2', 'source-group-3']);
|
|
|
|
expect($unmapped)->toHaveCount(2)
|
|
->and($unmapped)->toContain('source-group-2', 'source-group-3');
|
|
});
|
|
|
|
test('addGroupMapping adds new mapping', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
],
|
|
]);
|
|
|
|
$restoreRun->addGroupMapping('source-group-2', 'target-group-2');
|
|
|
|
expect($restoreRun->group_mapping)->toHaveCount(2)
|
|
->and($restoreRun->group_mapping['source-group-2'])->toBe('target-group-2');
|
|
});
|
|
|
|
test('addGroupMapping overwrites existing mapping', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'group_mapping' => [
|
|
'source-group-1' => 'target-group-1',
|
|
],
|
|
]);
|
|
|
|
$restoreRun->addGroupMapping('source-group-1', 'target-group-new');
|
|
|
|
expect($restoreRun->group_mapping)->toHaveCount(1)
|
|
->and($restoreRun->group_mapping['source-group-1'])->toBe('target-group-new');
|
|
});
|
|
|
|
test('getAssignmentRestoreOutcomes returns outcomes from results', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'results' => [
|
|
'assignment_outcomes' => [
|
|
['status' => 'success', 'assignment' => []],
|
|
['status' => 'failed', 'assignment' => []],
|
|
],
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->getAssignmentRestoreOutcomes())->toHaveCount(2);
|
|
});
|
|
|
|
test('getAssignmentRestoreOutcomes returns empty array when not set', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'results' => [],
|
|
]);
|
|
|
|
expect($restoreRun->getAssignmentRestoreOutcomes())->toBeEmpty();
|
|
});
|
|
|
|
test('getSuccessfulAssignmentsCount returns correct count', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'results' => [
|
|
'assignment_outcomes' => [
|
|
['status' => 'success', 'assignment' => []],
|
|
['status' => 'success', 'assignment' => []],
|
|
['status' => 'failed', 'assignment' => []],
|
|
['status' => 'skipped', 'assignment' => []],
|
|
],
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->getSuccessfulAssignmentsCount())->toBe(2);
|
|
});
|
|
|
|
test('getFailedAssignmentsCount returns correct count', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'results' => [
|
|
'assignment_outcomes' => [
|
|
['status' => 'success', 'assignment' => []],
|
|
['status' => 'failed', 'assignment' => []],
|
|
['status' => 'failed', 'assignment' => []],
|
|
],
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->getFailedAssignmentsCount())->toBe(2);
|
|
});
|
|
|
|
test('getSkippedAssignmentsCount returns correct count', function () {
|
|
$restoreRun = RestoreRun::factory()->create([
|
|
'results' => [
|
|
'assignment_outcomes' => [
|
|
['status' => 'success', 'assignment' => []],
|
|
['status' => 'skipped', 'assignment' => []],
|
|
['status' => 'skipped', 'assignment' => []],
|
|
['status' => 'skipped', 'assignment' => []],
|
|
],
|
|
],
|
|
]);
|
|
|
|
expect($restoreRun->getSkippedAssignmentsCount())->toBe(3);
|
|
});
|