0.3.15-pre.013

This commit is contained in:
2026-09-17 09:34:11 +02:00
parent 1573273d27
commit 6ee4e3bdf4
9 changed files with 537 additions and 90 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-worker-raw-transaction-ingest-lib/tests/release_completeness.rs
// version: 34
// version: 35
//! Release-completeness canaries through the `v0.3.15-pre.004` WebSocket capability-enforcement tranche.
@@ -484,3 +484,15 @@ fn v0_3_15_pre_004_websocket_capability_enforcement_canaries_are_complete_withou
assert!(!root.contains("supports_subscription"));
return;
}
#[test]
fn v0_3_15_pre_013_yellowstone_block_backpressure_fix_adds_no_public_surface() {
let resource_tests = include_str!("../unit_tests/runtime_resources.rs");
let hardening = include_str!("hardening.rs");
let root = include_str!("../src/lib.rs");
assert!(resource_tests.contains("v0_3_15_pre_013_yellowstone_block_hydration_coordinator_is_bounded_before_http_work"));
assert!(hardening.contains("v0_3_15_pre_013_yellowstone_block_hydration_is_bounded_concurrent_and_stop_preemptible"));
assert!(!root.contains("YellowstoneBlockHydrationCoordinator"));
assert!(!root.contains("YellowstoneBlockHydrationContext"));
return;
}