Files
foxhunt/market-data/tests/basic_test.rs
jgrusewski 6bd5b18465 🔧 Wave 33: Test Compilation Improvements - 57 errors remaining
**Progress: 1,178 → 57 test errors (95% reduction)**

## Status Summary
-  Production code: Compiles cleanly (0 errors)
- ⚠️  Test code: 57 errors remain (massive improvement)
- ⚙️  All services build successfully
- 📊 Warning count: 253 (target: <20) - AGENTS WILL FIX

## Remaining Test Errors (57 total)
### Primary Issues:
1. 23× E0308 mismatched types
2. 17× E0433 undeclared Decimal
3. 15× E0433 compliance module not found
4. 6× E0624 private method access
5. Various import and type issues

## Next Phase: Wave 33-2
Launch 10+ parallel agents to:
- Fix remaining 57 test compilation errors
- Reduce 253 warnings to <20
- Achieve 95% test coverage
- Ensure all tests pass

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-01 21:24:28 +02:00

95 lines
2.5 KiB
Rust

use chrono::Utc;
use market_data::{
error::MarketDataResult,
models::{
BookSide, IndicatorType, OrderBook, OrderBookLevelDb, PriceRecord, TechnicalIndicator,
},
};
use rust_decimal_macros::dec;
use std::collections::HashMap;
#[test]
fn test_price_model() {
let mut price = PriceRecord::new("EURUSD".to_string(), Utc::now());
price.bid = Some(dec!(1.0850));
price.ask = Some(dec!(1.0852));
let mid = price.mid_price();
assert_eq!(mid, Some(dec!(1.0851)));
let spread = price.spread();
assert_eq!(spread, Some(dec!(0.0002)));
}
#[test]
fn test_order_book_model() {
let mut order_book = OrderBook::new("EURUSD".to_string(), Utc::now());
// Add some levels
let bid_level = OrderBookLevelDb::new(
"EURUSD".to_string(),
Utc::now(),
BookSide::Bid,
dec!(1.0850),
dec!(1000000),
0,
);
let ask_level = OrderBookLevelDb::new(
"EURUSD".to_string(),
Utc::now(),
BookSide::Ask,
dec!(1.0852),
dec!(1000000),
0,
);
order_book.bids.push(bid_level);
order_book.asks.push(ask_level);
assert_eq!(order_book.best_bid(), Some(dec!(1.0850)));
assert_eq!(order_book.best_ask(), Some(dec!(1.0852)));
assert_eq!(order_book.mid_price(), Some(dec!(1.0851)));
assert_eq!(order_book.spread(), Some(dec!(0.0002)));
}
#[test]
fn test_technical_indicator_model() {
let indicator = TechnicalIndicator::new(
"EURUSD".to_string(),
IndicatorType::Sma,
Utc::now(),
dec!(1.0851),
serde_json::json!({"period": 20}),
);
assert_eq!(indicator.symbol, "EURUSD");
assert_eq!(indicator.indicator_type, IndicatorType::Sma);
assert_eq!(indicator.value, dec!(1.0851));
}
#[test]
fn test_hash_traits() {
// Test BookSide is hashable
let mut side_map: HashMap<BookSide, i32> = HashMap::new();
side_map.insert(BookSide::Bid, 1);
side_map.insert(BookSide::Ask, 2);
assert_eq!(side_map.get(&BookSide::Bid), Some(&1));
assert_eq!(side_map.get(&BookSide::Ask), Some(&2));
// Test IndicatorType is hashable
let mut indicator_map: HashMap<IndicatorType, String> = HashMap::new();
indicator_map.insert(IndicatorType::Sma, "SMA".to_string());
indicator_map.insert(IndicatorType::Ema, "EMA".to_string());
assert_eq!(
indicator_map.get(&IndicatorType::Sma),
Some(&"SMA".to_string())
);
assert_eq!(
indicator_map.get(&IndicatorType::Ema),
Some(&"EMA".to_string())
);
}