## Summary - move the Laravel application into `apps/platform` and keep the repository root for orchestration, docs, and tooling - update the local command model, Sail/Docker wiring, runtime paths, and ignore rules around the new platform location - add relocation quickstart/contracts plus focused smoke coverage for bootstrap, command model, routes, and runtime behavior ## Validation - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/PlatformRelocation` - integrated browser smoke validated `/up`, `/`, `/admin`, `/admin/choose-workspace`, and tenant route semantics for `200`, `403`, and `404` ## Remaining Rollout Checks - validate Dokploy build context and working-directory assumptions against the new `apps/platform` layout - confirm web, queue, and scheduler processes all start from the expected working directory in staging/production - verify no legacy volume mounts or asset-publish paths still point at the old root-level `public/` or `storage/` locations Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #213
45 lines
1.4 KiB
PHP
45 lines
1.4 KiB
PHP
<?php
|
|
|
|
use App\Services\Graph\GraphContractRegistry;
|
|
use App\Services\Graph\GraphLogger;
|
|
use App\Services\Graph\MicrosoftGraphClient;
|
|
use Illuminate\Http\Client\Request;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Illuminate\Support\Facades\Config;
|
|
use Illuminate\Support\Facades\Http;
|
|
|
|
it('falls back to default graph scope when config is empty', function () {
|
|
Cache::flush();
|
|
|
|
Config::set('graph.scope', '');
|
|
Config::set('graph.tenant_id', 'tenant-scope');
|
|
Config::set('graph.client_id', 'client-id');
|
|
Config::set('graph.client_secret', 'client-secret');
|
|
|
|
Http::fake([
|
|
'https://login.microsoftonline.com/*/oauth2/v2.0/token' => Http::response([
|
|
'access_token' => 'token',
|
|
'expires_in' => 3600,
|
|
'token_type' => 'Bearer',
|
|
]),
|
|
'https://graph.microsoft.com/*' => Http::response(['value' => []]),
|
|
]);
|
|
|
|
$client = new MicrosoftGraphClient(
|
|
app(GraphLogger::class),
|
|
app(GraphContractRegistry::class)
|
|
);
|
|
|
|
$client->getOrganization();
|
|
|
|
Http::assertSent(function (Request $request): bool {
|
|
if (! str_contains($request->url(), '/oauth2/v2.0/token')) {
|
|
return false;
|
|
}
|
|
|
|
return $request['scope'] === 'https://graph.microsoft.com/.default'
|
|
&& $request['client_id'] === 'client-id'
|
|
&& $request['grant_type'] === 'client_credentials';
|
|
});
|
|
});
|