Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion platform-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,9 @@
"blocked_live_reason": "missing_current_promotion_evidence_and_preauthorized_autonomy_policy",
"runtime_artifacts": {
"feature_snapshot": {
"required": true
"required": true,
"path": "gs://qsl-runtime-logs-shared/strategy-artifacts/hk_equity/hk_low_vol_dividend_quality_snapshot_staging/hk_low_vol_dividend_quality_snapshot_factor_snapshot_latest.csv",
"manifest_path": "gs://qsl-runtime-logs-shared/strategy-artifacts/hk_equity/hk_low_vol_dividend_quality_snapshot_staging/hk_low_vol_dividend_quality_snapshot_factor_snapshot_latest.csv.manifest.json"
}
},
"features": {
Expand Down
44 changes: 26 additions & 18 deletions python/tests/test_runtime_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,25 +523,25 @@ def test_platform_health_report_summarizes_current_config(self):

report = build_config.build_platform_health_report(config, catalog)

self.assertEqual(report["status"], "unhealthy")
self.assertEqual(report["status"], "attention_required")
self.assertEqual(report["schema_version"], "platform_health_report.v1")
self.assertEqual(report["summary"]["runtime_enabled_switchable_count"], 0)
self.assertIn("codex_repair_context", report)
self.assertIn("automation_registry", report)
self.assertIn("automation_lane_counts", report["summary"])
self.assertEqual(report["summary"]["dry_run_uncovered_strategy_count"], 1)
self.assertEqual(report["summary"]["dry_run_covered_strategy_count"], 25)
self.assertEqual(report["summary"]["dry_run_uncovered_strategy_count"], 0)
self.assertEqual(report["summary"]["dry_run_covered_strategy_count"], 26)
self.assertGreater(report["summary"]["dry_run_route_count"], 0)
self.assertGreater(
self.assertEqual(
report["summary"]["declared_dry_run_route_count"],
report["summary"]["buildable_dry_run_route_count"],
)
self.assertEqual(report["summary"]["artifact_blocked_strategy_count"], 1)
self.assertEqual(report["summary"]["artifact_blocked_strategy_count"], 0)
coverage_check = next(
item for item in report["checks"] if item["name"] == "strategy_platform_dry_run_coverage"
)
self.assertEqual(coverage_check["status"], "fail")
self.assertEqual(report["recommended_action"], "supply_verified_runtime_artifact")
self.assertEqual(coverage_check["status"], "pass")
self.assertEqual(report["recommended_action"], "review_candidates")
self.assertFalse(report["codex_repair_context"]["safe_to_attempt"])
self.assertIn("python3 python/scripts/build_config.py --check", report["codex_repair_context"]["suggested_commands"])

Expand All @@ -558,7 +558,7 @@ def test_strategy_platform_dry_run_coverage_fails_closed_when_domain_route_is_re
)
self.assertEqual(coverage_check["status"], "fail")

def test_strategy_platform_dry_run_coverage_parks_missing_required_snapshot_artifact(self):
def test_strategy_platform_dry_run_coverage_uses_verified_snapshot_artifact(self):
coverage = build_config.build_strategy_platform_dry_run_coverage(build_config.load_config())
route = next(
item
Expand All @@ -567,14 +567,11 @@ def test_strategy_platform_dry_run_coverage_parks_missing_required_snapshot_arti
)

self.assertEqual(route["declared_dry_run_platforms"], ["ibkr", "longbridge"])
self.assertEqual(route["buildable_dry_run_platforms"], [])
self.assertEqual(
route["blocked_reason"],
"required_feature_snapshot_artifact_unconfigured",
)
self.assertIn("hk_low_vol_dividend_quality_snapshot", coverage["artifact_blocked_profiles"])
self.assertEqual(route["buildable_dry_run_platforms"], ["ibkr", "longbridge"])
self.assertEqual(route["blocked_reason"], "")
self.assertNotIn("hk_low_vol_dividend_quality_snapshot", coverage["artifact_blocked_profiles"])
self.assertEqual(coverage["summary"]["declared_dry_run_route_count"], 59)
self.assertEqual(coverage["summary"]["buildable_dry_run_route_count"], 57)
self.assertEqual(coverage["summary"]["buildable_dry_run_route_count"], 59)

def test_feature_snapshot_platform_coverage_matches_runtime_injection(self):
self.assertEqual(
Expand Down Expand Up @@ -2283,7 +2280,7 @@ def test_build_switch_target_clears_stale_ibkr_snapshot_artifacts(self):
self.assertEqual(selected["IBKR_FEATURE_SNAPSHOT_PATH"], "")
self.assertEqual(selected["IBKR_FEATURE_SNAPSHOT_MANIFEST_PATH"], "")

def test_snapshot_strategy_without_catalog_artifacts_requires_explicit_pair(self):
def test_snapshot_strategy_uses_verified_catalog_artifact_pair(self):
args = build_runtime_switch.build_parser().parse_args(
[
"--platform",
Expand All @@ -2299,8 +2296,19 @@ def test_snapshot_strategy_without_catalog_artifacts_requires_explicit_pair(self
]
)

with self.assertRaisesRegex(ValueError, "requires feature snapshot path and manifest path"):
build_runtime_switch.build_switch_target(args)
target = build_runtime_switch.build_switch_target(args)
assignments = {item.name: item.value for item in runtime_settings.build_assignments(target)}

snapshot_path = (
"gs://qsl-runtime-logs-shared/strategy-artifacts/hk_equity/"
"hk_low_vol_dividend_quality_snapshot_staging/"
"hk_low_vol_dividend_quality_snapshot_factor_snapshot_latest.csv"
)
self.assertEqual(assignments["LONGBRIDGE_FEATURE_SNAPSHOT_PATH"], snapshot_path)
self.assertEqual(
assignments["LONGBRIDGE_FEATURE_SNAPSHOT_MANIFEST_PATH"],
f"{snapshot_path}.manifest.json",
)

def test_snapshot_strategy_accepts_explicit_platform_artifact_pair(self):
args = build_runtime_switch.build_parser().parse_args(
Expand Down
2 changes: 1 addition & 1 deletion web/strategy-switch-console/config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"schema_version": "qsl.runtime_catalog_projection.v1",
"source": {
"catalog_as_of": "2026-08-19",
"content_sha256": "sha256:9c54a03655d96b4378489ad676e2f51e78f764b223b19ed6a13c6f0ebbbad8bd",
"content_sha256": "sha256:61ca2ad4dc29d22fca901d3a598d83ae5c2916493333b24a1f8ac5dd9ebfe4fe",
"path": "platform-config.json"
},
"strategies": [
Expand Down