Some checks failed
Main Confidence / confidence (push) Failing after 49s
## Summary - unify provider-backed action starts behind the shared provider dispatch gate and shared start-result presenter - align tenant, onboarding, provider-connection, restore, directory, and monitoring surfaces with the same blocked, deduped, scope-busy, and accepted semantics - include the spec kit artifacts for spec 216 and the regression fixes that brought the full suite back to green ## Validation - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/RestoreRunIdempotencyTest.php tests/Feature/ExecuteRestoreRunJobTest.php tests/Feature/Restore/RestoreRunProviderStartTest.php tests/Feature/Hardening/ExecuteRestoreRunJobGateTest.php tests/Feature/Hardening/BlockedWriteAuditLogTest.php tests/Feature/Onboarding/OnboardingDraftLifecycleTest.php` - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Browser/Spec177InventoryCoverageTruthSmokeTest.php` - `cd apps/platform && ./vendor/bin/sail artisan test --compact` ## Notes - branch: `216-provider-dispatch-gate` - commit: `34230be7` Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #255
31 lines
1.1 KiB
PHP
31 lines
1.1 KiB
PHP
<?php
|
|
|
|
use App\Jobs\EntraGroupSyncJob;
|
|
use App\Services\Directory\EntraGroupSyncService;
|
|
use App\Services\Providers\ProviderOperationStartResult;
|
|
use Illuminate\Support\Facades\Queue;
|
|
|
|
it('starts a manual group sync by creating a run and dispatching a job', function () {
|
|
Queue::fake();
|
|
|
|
[$user, $tenant] = createUserWithTenant(role: 'owner', fixtureProfile: 'credential-enabled');
|
|
|
|
$service = app(EntraGroupSyncService::class);
|
|
|
|
$result = $service->startManualSync($tenant, $user);
|
|
$run = $result->run;
|
|
|
|
expect($result)->toBeInstanceOf(ProviderOperationStartResult::class)
|
|
->and($result->status)->toBe('started');
|
|
|
|
expect($run)
|
|
->and($run->tenant_id)->toBe($tenant->getKey())
|
|
->and($run->user_id)->toBe($user->getKey())
|
|
->and($run->type)->toBe('entra_group_sync')
|
|
->and($run->status)->toBe('queued')
|
|
->and($run->context['selection_key'] ?? null)->toBe('groups-v1:all')
|
|
->and($run->context['provider_connection_id'] ?? null)->toBeInt();
|
|
|
|
Queue::assertPushed(EntraGroupSyncJob::class);
|
|
});
|