Files
foxhunt/services/api_gateway/tests/common/mod.rs
jgrusewski 32e33d3d19 🎯 Waves 82-99: Complete compilation fix + warning reduction
## Final Metrics (Wave 99)
- Compilation errors: 672 → 0  (100% resolution)
- Test compilation: 489 → 0  (100% resolution)
- Warnings: 313 → 124 (60% reduction, target was <50)

## Wave Timeline
Wave 82-87: Source code errors (183→0)
Wave 88-94: Test compilation (489→0)
Wave 95: Import cleanup experiment
Wave 96: Import restoration (26 errors fixed)
Wave 97: Warning phase 1 (313→188, -40%)
Wave 98: Warning phase 2 (188→124, -34%)
Wave 99: Warning phase 3 (124→124, target not met)

## Major API Migrations (73+ files)
- NewsEvent: 18-field structure with full metadata
- ExecutionReport: filled_quantity→executed_quantity
- Position: 16-field modernization (avg_cost, market_value, etc)
- TradingOrder: account_id field added
- TimeInForce: Abbreviated variants (GTC, IOC, FOK)

## Remaining Work
- 124 warnings (non-critical: unused variables, dead code, deprecated APIs)
- Most are cleanup/style issues, not correctness problems
- Recommendation: Accept current state, prioritize test coverage (95% target)

## Production Status
 Wave 79 certified: 87.8% production ready
 Zero compilation errors maintained
 All services compile and tests runnable
🔄 Next: Test coverage measurement (95% target - CLAUDE.md requirement)

Co-authored-by: Wave 82-99 Agents (40+ parallel agents deployed)
2025-10-04 12:14:46 +02:00

170 lines
5.0 KiB
Rust

//! Common test utilities for API Gateway integration tests
use anyhow::Result;
use jsonwebtoken::{encode, EncodingKey, Header};
use std::time::{SystemTime, UNIX_EPOCH};
use uuid::Uuid;
pub use api_gateway::auth::{Jti, JwtClaims};
/// Test JWT configuration
pub struct TestJwtConfig {
pub secret: String,
pub issuer: String,
pub audience: String,
}
impl Default for TestJwtConfig {
fn default() -> Self {
Self {
secret: "test-secret-must-be-at-least-64-characters-long-for-security-validation-ok-1234567890".to_string(),
issuer: "foxhunt-api-gateway".to_string(),
audience: "foxhunt-services".to_string(),
}
}
}
/// Generate a valid JWT token for testing
pub fn generate_test_token(
user_id: &str,
roles: Vec<String>,
permissions: Vec<String>,
ttl_seconds: u64,
) -> Result<(String, String)> {
let config = TestJwtConfig::default();
let jti = Jti::new();
let now = SystemTime::now()
.duration_since(UNIX_EPOCH)?
.as_secs();
let claims = JwtClaims {
jti: jti.0.clone(),
sub: user_id.to_string(),
iat: now,
exp: now + ttl_seconds,
nbf: now, // Not before: valid from now
iss: config.issuer,
aud: config.audience,
roles,
permissions,
token_type: "access".to_string(),
session_id: Some(Uuid::new_v4().to_string()),
};
let token = encode(
&Header::default(),
&claims,
&EncodingKey::from_secret(config.secret.as_bytes()),
)?;
Ok((token, jti.0))
}
/// Generate an expired JWT token for testing
pub fn generate_expired_token(user_id: &str) -> Result<String> {
let config = TestJwtConfig::default();
let now = SystemTime::now()
.duration_since(UNIX_EPOCH)?
.as_secs();
let claims = JwtClaims {
jti: Jti::new().0,
sub: user_id.to_string(),
iat: now - 7200,
exp: now - 3600, // Expired 1 hour ago
nbf: now - 7200, // Not before: from 2 hours ago
iss: config.issuer,
aud: config.audience,
roles: vec!["trader".to_string()],
permissions: vec!["api.access".to_string()],
token_type: "access".to_string(),
session_id: Some(Uuid::new_v4().to_string()),
};
let token = encode(
&Header::default(),
&claims,
&EncodingKey::from_secret(config.secret.as_bytes()),
)?;
Ok(token)
}
/// Generate a token with invalid signature
pub fn generate_invalid_signature_token(user_id: &str) -> Result<String> {
let now = SystemTime::now()
.duration_since(UNIX_EPOCH)?
.as_secs();
let claims = JwtClaims {
jti: Jti::new().0,
sub: user_id.to_string(),
iat: now,
exp: now + 3600,
nbf: now, // Not before: valid from now
iss: "foxhunt-api-gateway".to_string(),
aud: "foxhunt-services".to_string(),
roles: vec!["trader".to_string()],
permissions: vec!["api.access".to_string()],
token_type: "access".to_string(),
session_id: Some(Uuid::new_v4().to_string()),
};
// Use wrong secret to create invalid signature
let token = encode(
&Header::default(),
&claims,
&EncodingKey::from_secret(b"wrong-secret-key-that-will-fail-validation-checks-completely"),
)?;
Ok(token)
}
/// Wait for Redis to be ready
pub async fn wait_for_redis(redis_url: &str, max_attempts: usize) -> Result<()> {
for attempt in 1..=max_attempts {
match redis::Client::open(redis_url) {
Ok(client) => {
match client.get_multiplexed_async_connection().await {
Ok(mut conn) => {
// Use redis::cmd to send PING command
if let Ok(_) = redis::cmd("PING").query_async::<String>(&mut conn).await {
println!("✓ Redis ready after {} attempts", attempt);
return Ok(());
}
}
Err(e) => {
if attempt == max_attempts {
return Err(anyhow::anyhow!("Redis not ready: {}", e));
}
tokio::time::sleep(tokio::time::Duration::from_millis(100)).await;
}
}
}
Err(e) => {
if attempt == max_attempts {
return Err(anyhow::anyhow!("Failed to create Redis client: {}", e));
}
tokio::time::sleep(tokio::time::Duration::from_millis(100)).await;
}
}
}
Err(anyhow::anyhow!("Redis not ready after {} attempts", max_attempts))
}
/// Clean up Redis test data
pub async fn cleanup_redis(redis_url: &str) -> Result<()> {
let client = redis::Client::open(redis_url)?;
let mut conn = client.get_multiplexed_async_connection().await?;
// Delete all keys matching test patterns
let _: () = redis::cmd("FLUSHDB").query_async(&mut conn).await?;
Ok(())
}