39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<?php
|
|
|
|
use App\Jobs\EntraGroupSyncJob;
|
|
use App\Models\EntraGroupSyncRun;
|
|
use Carbon\CarbonImmutable;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Illuminate\Support\Facades\Config;
|
|
use Illuminate\Support\Facades\Queue;
|
|
|
|
it('scheduled dispatcher creates a run without a user initiator', function () {
|
|
Queue::fake();
|
|
|
|
$tenant = \App\Models\Tenant::factory()->create();
|
|
|
|
Config::set('directory_groups.schedule.enabled', true);
|
|
Config::set('directory_groups.schedule.time_utc', '02:00');
|
|
|
|
CarbonImmutable::setTestNow(CarbonImmutable::parse('2026-01-11 02:00:00', 'UTC'));
|
|
|
|
Artisan::call('tenantpilot:directory-groups:dispatch', [
|
|
'--tenant' => [$tenant->tenant_id],
|
|
]);
|
|
|
|
$slotKey = CarbonImmutable::now('UTC')->format('YmdHi').'Z';
|
|
|
|
$run = EntraGroupSyncRun::query()
|
|
->where('tenant_id', $tenant->getKey())
|
|
->where('selection_key', 'groups-v1:all')
|
|
->where('slot_key', $slotKey)
|
|
->first();
|
|
|
|
expect($run)->not->toBeNull()
|
|
->and($run->initiator_user_id)->toBeNull();
|
|
|
|
Queue::assertPushed(EntraGroupSyncJob::class);
|
|
|
|
CarbonImmutable::setTestNow();
|
|
});
|