Implement phased modernization infrastructure for transitioning from multi-page legacy routing to SPA portal-shell architecture, plus post-delivery hardening fixes for policy loading, fallback consistency, and governance drift detection. Key changes: - Add route contract enrichment with scope/visibility/compatibility policies - Canonical 302 redirects from legacy direct-entry to /portal-shell/ routes - Asset readiness enforcement and runtime fallback retirement for in-scope routes - Shared feature-flag helpers (env > config > default) replacing duplicated _to_bool - Defensive copy for lru_cached policy payloads preventing mutation corruption - Unified retired-fallback response helper across app and blueprint routes - Frontend/backend route-contract cross-validation in governance gates - Shell CSS token fallback values for routes rendered outside shell scope - Local-safe .env.example defaults with production recommendation comments - Legacy contract fallback warning logging and single-hop redirect optimization Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
import test from 'node:test';
|
|
import assert from 'node:assert/strict';
|
|
import { existsSync, readFileSync } from 'node:fs';
|
|
import { resolve } from 'node:path';
|
|
|
|
function readSource(relativePath) {
|
|
const directPath = resolve(process.cwd(), relativePath);
|
|
if (existsSync(directPath)) {
|
|
return readFileSync(directPath, 'utf8');
|
|
}
|
|
return readFileSync(resolve(process.cwd(), 'frontend', relativePath), 'utf8');
|
|
}
|
|
|
|
test('shell route host sources do not contain iframe rendering paths', () => {
|
|
const files = [
|
|
'src/portal-shell/App.vue',
|
|
'src/portal-shell/views/NativeRouteView.vue',
|
|
'src/portal-shell/router.js',
|
|
'src/portal-shell/navigationState.js',
|
|
];
|
|
|
|
files.forEach((filePath) => {
|
|
const source = readSource(filePath).toLowerCase();
|
|
assert.doesNotMatch(source, /<iframe/);
|
|
});
|
|
});
|
|
|
|
test('page bridge host is removed after native route-view decommission', () => {
|
|
const routerSource = readSource('src/portal-shell/router.js');
|
|
assert.doesNotMatch(routerSource, /PageBridgeView/);
|
|
|
|
const appPySource = readSource('../src/mes_dashboard/app.py');
|
|
assert.doesNotMatch(appPySource, /\/api\/portal\/wrapper-telemetry/);
|
|
});
|