## Summary - rebuild the public Tenantial homepage around an evidence-first Microsoft tenant governance narrative - replace the old hero visual with a new static dashboard preview and add dedicated Trust Bar and Feature Pillars sections - update the shared public shell, navigation, footer, dark design tokens, assets, and homepage content to match the new brand direction - align website smoke coverage and Spec 400 artifacts with the rebuilt homepage ## Testing - not run in this pass - updated website smoke specs under apps/website/tests/smoke ## Note - `website-dev` was pushed to `origin` so the requested PR base exists remotely - the remote `website-dev` branch is an ancestor of `origin/dev`, so this PR may also show upstream `dev` history relative to that base Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #387
41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<?php
|
|
|
|
use App\Jobs\EntraGroupSyncJob;
|
|
use App\Models\OperationRun;
|
|
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';
|
|
|
|
$opRun = OperationRun::query()
|
|
->where('tenant_id', $tenant->getKey())
|
|
->where('type', 'directory.groups.sync')
|
|
->where('context->slot_key', $slotKey)
|
|
->first();
|
|
|
|
expect($opRun)->not->toBeNull();
|
|
expect($opRun?->user_id)->toBeNull();
|
|
|
|
Queue::assertPushed(EntraGroupSyncJob::class, function (EntraGroupSyncJob $job) use ($opRun): bool {
|
|
return (int) ($job->operationRun?->getKey() ?? 0) === (int) $opRun->getKey();
|
|
});
|
|
|
|
CarbonImmutable::setTestNow();
|
|
});
|