Files
foxhunt/tests/e2e/Cargo.toml
jgrusewski ce93a5a87c feat: Add comprehensive ML pipeline integration tests (11 tests, 100% pass)
WAVE 12.5.2 - Full ML Pipeline Integration Tests (Data → Trading → Backtest)

Test Coverage (11/11 passing):
- test_full_ml_pipeline_end_to_end() - DBN → ML → Trading → Backtest
- test_real_time_prediction_pipeline() - Streaming data → Live predictions
- test_multi_symbol_pipeline() - ES.FUT, ZN.FUT multi-symbol
- test_dbn_to_ml_features() - Load DBN → Extract 16 features
- test_ml_predictions_to_trading_decisions() - Ensemble → Order signals
- test_trading_decisions_to_orders() - Allocation → Executable orders
- test_adaptive_ensemble_real_data() - AdaptiveMLEnsemble validation
- test_shared_ml_strategy_integration() - ONE SINGLE SYSTEM check
- test_regime_detection_accuracy() - Bull/Bear/Sideways detection
- test_ml_inference_latency() - <100ms per prediction
- test_backtesting_throughput() - >100 bars/second

Implementation: Real ES.FUT data, 16 features, mock ensemble, 0.08s test time

Files: tests/e2e/tests/ml_pipeline_integration_test.rs (NEW, 850+ lines)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-16 08:30:29 +02:00

150 lines
3.2 KiB
TOML

[package]
name = "foxhunt_e2e"
version = "0.1.0"
edition = "2021"
[dependencies]
# Core async runtime
tokio = { version = "1.0", features = ["full"] }
tokio-test = "0.4"
tokio-stream = "0.1"
# gRPC and protobuf
tonic = { version = "0.14", features = ["transport", "tls-ring", "tls-webpki-roots"] }
tonic-prost = "0.14"
prost = "0.14"
prost-types = "0.14"
# Database
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "chrono", "uuid", "json", "bigdecimal"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Time and UUID
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.0", features = ["v4", "serde"] }
# JWT authentication
jsonwebtoken = "9.3"
# Environment variables
dotenvy = "0.15"
# Numerical
rust_decimal = { version = "1.32", features = ["serde-float"] }
bigdecimal = "0.4"
# Utilities
futures = "0.3"
rand = "0.8"
# HTTP client
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
# CLI
clap = { version = "4.0", features = ["derive"] }
# Testing
assert_matches = "1.5"
# Benchmarking
criterion = { version = "0.5", features = ["async_tokio", "html_reports"] }
hdrhistogram = "7.5"
# Local dependencies
trading_engine = { path = "../../trading_engine" }
data = { path = "../../data" }
ml = { path = "../../ml" }
risk = { path = "../../risk" }
config = { path = "../../config" }
common = { path = "../../common" }
# DBN data parsing
dbn = "0.22"
# Candle for ML
candle-core = { git = "https://github.com/huggingface/candle", rev = "671de1db" }
[build-dependencies]
tonic-prost-build = "0.14"
[[test]]
name = "full_trading_flow_e2e"
path = "tests/full_trading_flow_e2e.rs"
[[test]]
name = "ml_inference_e2e"
path = "tests/ml_inference_e2e.rs"
[[test]]
name = "risk_management_e2e"
path = "tests/risk_management_e2e.rs"
[[test]]
name = "config_hot_reload_e2e"
path = "tests/config_hot_reload_e2e.rs"
[[test]]
name = "simplified_integration_test"
path = "tests/simplified_integration_test.rs"
[[test]]
name = "multi_service_integration"
path = "tests/multi_service_integration.rs"
[[test]]
name = "error_handling_recovery"
path = "tests/error_handling_recovery.rs"
[[test]]
name = "performance_load_tests"
path = "tests/performance_load_tests.rs"
[[test]]
name = "ml_training_tls_test"
path = "tests/ml_training_tls_test.rs"
[[test]]
name = "dqn_training_test"
path = "tests/dqn_training_test.rs"
[[test]]
name = "mamba2_training_test"
path = "tests/mamba2_training_test.rs"
[[test]]
name = "e2e_ml_training_test"
path = "tests/e2e_ml_training_test.rs"
[[test]]
name = "e2e_ml_paper_trading_test"
path = "tests/e2e_ml_paper_trading_test.rs"
[[test]]
name = "e2e_ml_backtesting_test"
path = "tests/e2e_ml_backtesting_test.rs"
[[test]]
name = "ml_pipeline_integration_test"
path = "tests/ml_pipeline_integration_test.rs"
[[test]]
name = "five_service_orchestration_test"
path = "tests/five_service_orchestration_test.rs"
[[bench]]
name = "e2e_latency_benchmark"
path = "benches/e2e_latency_benchmark.rs"
harness = false