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>
73 lines
2.6 KiB
Python
73 lines
2.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""Tests for modernization asset-readiness and fallback-retirement policy."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from mes_dashboard.app import create_app
|
|
|
|
|
|
def test_asset_readiness_enforcement_blocks_startup_when_missing_assets(monkeypatch):
|
|
monkeypatch.setenv("MODERNIZATION_ENFORCE_ASSET_READINESS", "true")
|
|
|
|
with patch(
|
|
"mes_dashboard.app.get_missing_in_scope_assets",
|
|
return_value=["/wip-overview:wip-overview.html"],
|
|
):
|
|
with pytest.raises(RuntimeError, match="In-scope asset readiness check failed"):
|
|
create_app("testing")
|
|
|
|
|
|
def test_in_scope_fallback_retirement_returns_503_when_dist_asset_missing(monkeypatch):
|
|
monkeypatch.setenv("PORTAL_SPA_ENABLED", "false")
|
|
monkeypatch.setenv("MODERNIZATION_RETIRE_IN_SCOPE_RUNTIME_FALLBACK", "true")
|
|
app = create_app("testing")
|
|
app.config["TESTING"] = True
|
|
client = app.test_client()
|
|
|
|
with patch("mes_dashboard.routes.hold_overview_routes.os.path.exists", return_value=False):
|
|
response = client.get("/hold-overview")
|
|
|
|
assert response.status_code == 503
|
|
assert "系統發生錯誤" in response.data.decode("utf-8")
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("route", "exists_patch"),
|
|
[
|
|
("/hold-overview", "mes_dashboard.routes.hold_overview_routes.os.path.exists"),
|
|
("/hold-history", "mes_dashboard.routes.hold_history_routes.os.path.exists"),
|
|
("/hold-detail?reason=YieldLimit", "mes_dashboard.routes.hold_routes.os.path.exists"),
|
|
],
|
|
)
|
|
def test_hold_blueprints_share_retired_fallback_template(monkeypatch, route, exists_patch):
|
|
monkeypatch.setenv("PORTAL_SPA_ENABLED", "false")
|
|
monkeypatch.setenv("MODERNIZATION_RETIRE_IN_SCOPE_RUNTIME_FALLBACK", "true")
|
|
app = create_app("testing")
|
|
app.config["TESTING"] = True
|
|
client = app.test_client()
|
|
|
|
with patch(exists_patch, return_value=False):
|
|
response = client.get(route)
|
|
|
|
assert response.status_code == 503
|
|
assert "系統發生錯誤" in response.data.decode("utf-8")
|
|
|
|
|
|
def test_deferred_route_keeps_fallback_posture_when_in_scope_retirement_enabled(monkeypatch):
|
|
monkeypatch.setenv("PORTAL_SPA_ENABLED", "false")
|
|
monkeypatch.setenv("MODERNIZATION_RETIRE_IN_SCOPE_RUNTIME_FALLBACK", "true")
|
|
app = create_app("testing")
|
|
app.config["TESTING"] = True
|
|
client = app.test_client()
|
|
with client.session_transaction() as sess:
|
|
sess["admin"] = {"displayName": "Admin", "employeeNo": "A001"}
|
|
|
|
with patch("mes_dashboard.app.os.path.exists", return_value=False):
|
|
response = client.get("/tables")
|
|
|
|
assert response.status_code == 200
|