TenantAtlas/apps/platform/tests/Feature/PlatformRelocation/CommandModelSmokeTest.php
ahmido be314c577f Spec 400: rebuild Tenantial homepage visuals (#387)
## 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
2026-05-18 14:38:11 +00:00

37 lines
1.5 KiB
PHP

<?php
it('documents the app local sail compose bridge in the canonical env example', function (): void {
$envExample = file_get_contents(base_path('.env.example'));
expect($envExample)->toContain('SAIL_FILES=../../docker-compose.yml')
->toContain('TENANTATLAS_REPO_ROOT=../..');
});
it('provides an executable root sail delegator that enters apps platform', function (): void {
$scriptPath = repo_path('scripts/platform-sail');
$scriptContents = file_get_contents($scriptPath);
expect(is_file($scriptPath))->toBeTrue()
->and(is_executable($scriptPath))->toBeTrue()
->and($scriptContents)->toContain('APP_DIR')
->toContain('apps/platform')
->toContain('exec ./vendor/bin/sail "$@"')
->not->toContain('COMPOSE_PROJECT_NAME');
});
it('keeps the repo root compose file pointed at the relocated app', function (): void {
$compose = file_get_contents(repo_path('docker-compose.yml'));
expect($compose)->toContain("./apps/platform/vendor/laravel/sail/runtimes/8.4")
->toContain("./apps/platform:/var/www/html")
->toContain(".:/var/www/repo:ro")
->toContain('TENANTATLAS_REPO_ROOT: /var/www/repo');
});
it('keeps the local queue service in code-reloading listen mode', function (): void {
$compose = file_get_contents(repo_path('docker-compose.yml'));
expect($compose)->toContain('command: php artisan queue:listen --tries=3 --timeout=300 --sleep=3')
->not->toContain('command: php artisan queue:work --tries=3 --timeout=300 --sleep=3 --max-jobs=1000');
});