Copied from api_gateway, removed REST handlers (port 8080), added tonic-web + CORS for grpc-web browser access. Binary renamed: api-gateway → api Changes: - Package name: api-gateway → api - Deleted src/handlers/ (REST ML endpoints on port 8080) - Added tonic-web 0.13 + tower-http CORS layer - Server::builder().accept_http1(true) for grpc-web - CORS_ORIGINS env var (default http://localhost:5173) - Metrics server on port 9091 (axum) preserved - All 95 lib tests pass, 0 clippy warnings - Added services/api to workspace members Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
327 B
Rust
14 lines
327 B
Rust
//! Integration Tests Main Harness
|
|
//!
|
|
//! This file serves as the entry point for all integration tests.
|
|
//! Run with: cargo test --test integration_tests
|
|
|
|
mod common;
|
|
|
|
// Re-export test modules
|
|
mod auth_flow_tests;
|
|
mod rate_limiting_tests;
|
|
mod service_proxy_tests;
|
|
|
|
// Additional integration test utilities can be added here
|