🚀 Wave 134: Zero Compilation Errors - 65 Agents, 194 Fixes, 530+ Tests
## Summary - **Total Agents**: 65 (24 coverage + 41 error fixes) - **Compilation Errors**: 194 → 0 ✅ - **New Tests**: 530+ tests (~17,500 lines) - **Success Rate**: 100% ## Phase 1: Test Coverage Expansion (Waves 1-3) - Wave 1-3: 24 agents deployed - Created comprehensive test suites across all modules - Added 530+ tests for baseline, advanced, and integration coverage ## Phase 2: Error Elimination (Waves 4-14) - Wave 4 (12 agents): Fixed 162 errors (Enum Display, tower util, borrow checker) - Wave 7 (1 agent): Fixed 52 ML proto errors (DataSource, Hyperparameters) - Wave 8 (1 agent): Fixed 33 Trading proto errors (SubmitOrderRequest) - Wave 12 (4 agents): Fixed 13 ComplianceRequirements field errors - Wave 13 (3 agents): Fixed 16 data crate test errors - Wave 14 (2 agents): Fixed final 2 data lib errors ## Infrastructure Improvements - Added MinIO Docker service for S3 E2E testing - Created S3Config::for_minio_testing() helper - Added storage test_helpers module - Fixed proto field mappings across all services - Added tower "util" feature for ServiceExt ## Key Error Patterns Fixed - Proto field name changes (120+ instances) - Enum Display trait usage (31 instances) - Borrow checker errors (20+ instances) - Missing methods/features (40+ instances) - Struct field additions (Order, ComplianceRequirements) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -119,3 +119,16 @@ pub struct NewsEvent {
|
||||
/// News source identifier
|
||||
pub source: String,
|
||||
}
|
||||
|
||||
impl MarketDataEvent {
|
||||
/// Get the timestamp for any market data event
|
||||
pub const fn timestamp(&self) -> Option<DateTime<Utc>> {
|
||||
match self {
|
||||
MarketDataEvent::Quote(q) => Some(q.timestamp),
|
||||
MarketDataEvent::Trade(t) => Some(t.timestamp),
|
||||
MarketDataEvent::Bar(b) => Some(b.timestamp),
|
||||
MarketDataEvent::OrderBook(o) => Some(o.timestamp),
|
||||
MarketDataEvent::News(n) => Some(n.timestamp),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
813
common/tests/error_tests.rs
Normal file
813
common/tests/error_tests.rs
Normal file
@@ -0,0 +1,813 @@
|
||||
//! Comprehensive Error Factory Method and Trait Tests
|
||||
//!
|
||||
//! This module provides comprehensive tests for:
|
||||
//! - CommonError factory methods (config, network, service, validation, internal, etc.)
|
||||
//! - ErrorCategory Display trait implementations
|
||||
//! - ErrorSeverity Display trait implementations
|
||||
//! - Error categorization and classification
|
||||
//! - Error source chains and downcasting
|
||||
//! - Error message formatting
|
||||
//! - Edge cases and boundary conditions
|
||||
|
||||
use common::error::{CommonError, ErrorCategory, ErrorSeverity, RetryStrategy};
|
||||
|
||||
// =============================================================================
|
||||
// COMMON ERROR FACTORY METHODS
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_common_error_config_factory() {
|
||||
let err = CommonError::config("Missing database URL");
|
||||
|
||||
match &err {
|
||||
CommonError::Configuration(msg) => {
|
||||
assert_eq!(msg, "Missing database URL");
|
||||
},
|
||||
_ => panic!("Expected Configuration variant"),
|
||||
}
|
||||
|
||||
// Test category
|
||||
assert_eq!(err.category(), ErrorCategory::Configuration);
|
||||
assert_eq!(err.severity(), ErrorSeverity::Critical);
|
||||
assert!(!err.is_retryable());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_config_factory_string_types() {
|
||||
// Test with &str
|
||||
let err1 = CommonError::config("test");
|
||||
assert!(matches!(err1, CommonError::Configuration(_)));
|
||||
|
||||
// Test with String
|
||||
let err2 = CommonError::config(String::from("test"));
|
||||
assert!(matches!(err2, CommonError::Configuration(_)));
|
||||
|
||||
// Test with format!
|
||||
let err3 = CommonError::config(format!("port {}", 8080));
|
||||
match err3 {
|
||||
CommonError::Configuration(msg) => assert_eq!(msg, "port 8080"),
|
||||
_ => panic!("Expected Configuration variant"),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_network_factory() {
|
||||
let err = CommonError::network("Connection refused");
|
||||
|
||||
match &err {
|
||||
CommonError::Network(msg) => {
|
||||
assert_eq!(msg, "Connection refused");
|
||||
},
|
||||
_ => panic!("Expected Network variant"),
|
||||
}
|
||||
|
||||
// Test category
|
||||
assert_eq!(err.category(), ErrorCategory::Network);
|
||||
assert_eq!(err.severity(), ErrorSeverity::Error);
|
||||
assert!(err.is_retryable());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_network_factory_string_types() {
|
||||
// Test with &str
|
||||
let err1 = CommonError::network("timeout");
|
||||
assert!(matches!(err1, CommonError::Network(_)));
|
||||
|
||||
// Test with String
|
||||
let err2 = CommonError::network(String::from("reset"));
|
||||
assert!(matches!(err2, CommonError::Network(_)));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_service_factory_all_categories() {
|
||||
// Test each ErrorCategory variant
|
||||
let categories = vec![
|
||||
ErrorCategory::MarketData,
|
||||
ErrorCategory::Trading,
|
||||
ErrorCategory::Network,
|
||||
ErrorCategory::System,
|
||||
ErrorCategory::Configuration,
|
||||
ErrorCategory::Validation,
|
||||
ErrorCategory::Critical,
|
||||
ErrorCategory::Connection,
|
||||
ErrorCategory::Authentication,
|
||||
ErrorCategory::RateLimit,
|
||||
ErrorCategory::Parse,
|
||||
ErrorCategory::Subscription,
|
||||
ErrorCategory::FinancialSafety,
|
||||
ErrorCategory::RiskManagement,
|
||||
ErrorCategory::Database,
|
||||
ErrorCategory::Broker,
|
||||
ErrorCategory::MachineLearning,
|
||||
ErrorCategory::Security,
|
||||
ErrorCategory::BusinessLogic,
|
||||
ErrorCategory::Resource,
|
||||
ErrorCategory::Development,
|
||||
ErrorCategory::Risk,
|
||||
ErrorCategory::ML,
|
||||
ErrorCategory::Other,
|
||||
];
|
||||
|
||||
for category in categories {
|
||||
let err = CommonError::service(category, "test message");
|
||||
|
||||
match &err {
|
||||
CommonError::Service { category: cat, message } => {
|
||||
assert_eq!(*cat, category);
|
||||
assert_eq!(message, "test message");
|
||||
},
|
||||
_ => panic!("Expected Service variant for {:?}", category),
|
||||
}
|
||||
|
||||
// Verify category method returns correct value
|
||||
assert_eq!(err.category(), category);
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_validation_factory() {
|
||||
let err = CommonError::validation("Price must be positive");
|
||||
|
||||
match &err {
|
||||
CommonError::Validation(msg) => {
|
||||
assert_eq!(msg, "Price must be positive");
|
||||
},
|
||||
_ => panic!("Expected Validation variant"),
|
||||
}
|
||||
|
||||
// Test category
|
||||
assert_eq!(err.category(), ErrorCategory::Validation);
|
||||
assert_eq!(err.severity(), ErrorSeverity::Warn);
|
||||
assert!(!err.is_retryable());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_internal_factory() {
|
||||
let err = CommonError::internal("Unexpected state");
|
||||
|
||||
match &err {
|
||||
CommonError::Service { category, message } => {
|
||||
assert_eq!(*category, ErrorCategory::System);
|
||||
assert_eq!(message, "Internal error: Unexpected state");
|
||||
},
|
||||
_ => panic!("Expected Service variant"),
|
||||
}
|
||||
|
||||
// Test category
|
||||
assert_eq!(err.category(), ErrorCategory::System);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_timeout_factory() {
|
||||
let err = CommonError::timeout(5000, 3000);
|
||||
|
||||
match err {
|
||||
CommonError::Timeout { actual_ms, max_ms } => {
|
||||
assert_eq!(actual_ms, 5000);
|
||||
assert_eq!(max_ms, 3000);
|
||||
},
|
||||
_ => panic!("Expected Timeout variant"),
|
||||
}
|
||||
|
||||
// Test category
|
||||
assert_eq!(err.category(), ErrorCategory::System);
|
||||
assert_eq!(err.severity(), ErrorSeverity::Error);
|
||||
assert!(err.is_retryable());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_ml_factory() {
|
||||
let err = CommonError::ml("MAMBA-2", "Model not found");
|
||||
|
||||
match &err {
|
||||
CommonError::Service { category, message } => {
|
||||
assert_eq!(*category, ErrorCategory::MachineLearning);
|
||||
assert_eq!(message, "MAMBA-2: Model not found");
|
||||
},
|
||||
_ => panic!("Expected Service variant"),
|
||||
}
|
||||
|
||||
// Test category
|
||||
assert_eq!(err.category(), ErrorCategory::MachineLearning);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_ml_factory_string_types() {
|
||||
// Test with &str
|
||||
let err1 = CommonError::ml("model1", "error1");
|
||||
assert!(matches!(err1, CommonError::Service { .. }));
|
||||
|
||||
// Test with String
|
||||
let err2 = CommonError::ml(String::from("model2"), String::from("error2"));
|
||||
match err2 {
|
||||
CommonError::Service { message, .. } => {
|
||||
assert_eq!(message, "model2: error2");
|
||||
},
|
||||
_ => panic!("Expected Service variant"),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_serialization_factory() {
|
||||
let err = CommonError::serialization("Failed to parse JSON");
|
||||
|
||||
match &err {
|
||||
CommonError::Service { category, message } => {
|
||||
assert_eq!(*category, ErrorCategory::Parse);
|
||||
assert_eq!(message, "Serialization error: Failed to parse JSON");
|
||||
},
|
||||
_ => panic!("Expected Service variant"),
|
||||
}
|
||||
|
||||
// Test category
|
||||
assert_eq!(err.category(), ErrorCategory::Parse);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_resource_exhausted_factory() {
|
||||
let err = CommonError::resource_exhausted("Memory pool");
|
||||
|
||||
match &err {
|
||||
CommonError::Service { category, message } => {
|
||||
assert_eq!(*category, ErrorCategory::Resource);
|
||||
assert_eq!(message, "Resource exhausted: Memory pool");
|
||||
},
|
||||
_ => panic!("Expected Service variant"),
|
||||
}
|
||||
|
||||
// Test category
|
||||
assert_eq!(err.category(), ErrorCategory::Resource);
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// ERROR CATEGORY DISPLAY TRAIT
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_error_category_display_all_variants() {
|
||||
let test_cases = vec![
|
||||
(ErrorCategory::MarketData, "MARKET_DATA"),
|
||||
(ErrorCategory::Trading, "TRADING"),
|
||||
(ErrorCategory::Network, "NETWORK"),
|
||||
(ErrorCategory::System, "SYSTEM"),
|
||||
(ErrorCategory::Configuration, "CONFIGURATION"),
|
||||
(ErrorCategory::Validation, "VALIDATION"),
|
||||
(ErrorCategory::Critical, "CRITICAL"),
|
||||
(ErrorCategory::Connection, "CONNECTION"),
|
||||
(ErrorCategory::Authentication, "AUTHENTICATION"),
|
||||
(ErrorCategory::RateLimit, "RATE_LIMIT"),
|
||||
(ErrorCategory::Parse, "PARSE"),
|
||||
(ErrorCategory::Subscription, "SUBSCRIPTION"),
|
||||
(ErrorCategory::FinancialSafety, "FINANCIAL_SAFETY"),
|
||||
(ErrorCategory::RiskManagement, "RISK_MANAGEMENT"),
|
||||
(ErrorCategory::Database, "DATABASE"),
|
||||
(ErrorCategory::Broker, "BROKER"),
|
||||
(ErrorCategory::MachineLearning, "MACHINE_LEARNING"),
|
||||
(ErrorCategory::Security, "SECURITY"),
|
||||
(ErrorCategory::BusinessLogic, "BUSINESS_LOGIC"),
|
||||
(ErrorCategory::Resource, "RESOURCE"),
|
||||
(ErrorCategory::Development, "DEVELOPMENT"),
|
||||
(ErrorCategory::Risk, "RISK"),
|
||||
(ErrorCategory::ML, "ML"),
|
||||
(ErrorCategory::Other, "OTHER"),
|
||||
];
|
||||
|
||||
for (category, expected) in test_cases {
|
||||
assert_eq!(format!("{}", category), expected);
|
||||
assert_eq!(category.to_string(), expected);
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_error_category_debug_format() {
|
||||
let category = ErrorCategory::Trading;
|
||||
let debug_str = format!("{:?}", category);
|
||||
assert_eq!(debug_str, "Trading");
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// ERROR SEVERITY DISPLAY TRAIT
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_error_severity_display_all_variants() {
|
||||
let test_cases = vec![
|
||||
(ErrorSeverity::Debug, "DEBUG"),
|
||||
(ErrorSeverity::Info, "INFO"),
|
||||
(ErrorSeverity::Warn, "WARN"),
|
||||
(ErrorSeverity::Error, "ERROR"),
|
||||
(ErrorSeverity::Critical, "CRITICAL"),
|
||||
];
|
||||
|
||||
for (severity, expected) in test_cases {
|
||||
assert_eq!(format!("{}", severity), expected);
|
||||
assert_eq!(severity.to_string(), expected);
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_error_severity_debug_format() {
|
||||
let severity = ErrorSeverity::Critical;
|
||||
let debug_str = format!("{:?}", severity);
|
||||
assert_eq!(debug_str, "Critical");
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// COMMON ERROR DISPLAY TRAIT
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_common_error_display_configuration() {
|
||||
let err = CommonError::config("Missing API key");
|
||||
let display = format!("{}", err);
|
||||
assert_eq!(display, "Configuration error: Missing API key");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_display_network() {
|
||||
let err = CommonError::network("Connection timeout");
|
||||
let display = format!("{}", err);
|
||||
assert_eq!(display, "Network error: Connection timeout");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_display_service() {
|
||||
let err = CommonError::service(ErrorCategory::Trading, "Order rejected");
|
||||
let display = format!("{}", err);
|
||||
assert_eq!(display, "Service error: TRADING - Order rejected");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_display_validation() {
|
||||
let err = CommonError::validation("Invalid symbol");
|
||||
let display = format!("{}", err);
|
||||
assert_eq!(display, "Validation error: Invalid symbol");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_display_timeout() {
|
||||
let err = CommonError::timeout(5000, 3000);
|
||||
let display = format!("{}", err);
|
||||
assert_eq!(display, "Timeout error: operation took 5000ms, max allowed 3000ms");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_display_database() {
|
||||
use common::database::DatabaseError;
|
||||
let err = CommonError::Database(DatabaseError::PoolExhausted);
|
||||
let display = format!("{}", err);
|
||||
assert!(display.starts_with("Database error:"));
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// ERROR CATEGORIZATION AND CLASSIFICATION
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_common_error_category_method() {
|
||||
// Test that category() returns correct category for each variant
|
||||
assert_eq!(
|
||||
CommonError::config("test").category(),
|
||||
ErrorCategory::Configuration
|
||||
);
|
||||
|
||||
assert_eq!(
|
||||
CommonError::network("test").category(),
|
||||
ErrorCategory::Network
|
||||
);
|
||||
|
||||
assert_eq!(
|
||||
CommonError::validation("test").category(),
|
||||
ErrorCategory::Validation
|
||||
);
|
||||
|
||||
assert_eq!(
|
||||
CommonError::timeout(1000, 500).category(),
|
||||
ErrorCategory::System
|
||||
);
|
||||
|
||||
assert_eq!(
|
||||
CommonError::service(ErrorCategory::Trading, "test").category(),
|
||||
ErrorCategory::Trading
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_severity_classification() {
|
||||
// Critical severity
|
||||
assert_eq!(
|
||||
CommonError::config("test").severity(),
|
||||
ErrorSeverity::Critical
|
||||
);
|
||||
|
||||
// Error severity
|
||||
assert_eq!(
|
||||
CommonError::network("test").severity(),
|
||||
ErrorSeverity::Error
|
||||
);
|
||||
|
||||
assert_eq!(
|
||||
CommonError::timeout(1000, 500).severity(),
|
||||
ErrorSeverity::Error
|
||||
);
|
||||
|
||||
// Warn severity
|
||||
assert_eq!(
|
||||
CommonError::validation("test").severity(),
|
||||
ErrorSeverity::Warn
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_is_retryable() {
|
||||
// Non-retryable errors
|
||||
assert!(!CommonError::config("test").is_retryable());
|
||||
assert!(!CommonError::validation("test").is_retryable());
|
||||
assert!(!CommonError::service(ErrorCategory::Authentication, "test").is_retryable());
|
||||
assert!(!CommonError::service(ErrorCategory::Configuration, "test").is_retryable());
|
||||
assert!(!CommonError::service(ErrorCategory::Validation, "test").is_retryable());
|
||||
|
||||
// Retryable errors
|
||||
assert!(CommonError::network("test").is_retryable());
|
||||
assert!(CommonError::timeout(1000, 500).is_retryable());
|
||||
assert!(CommonError::service(ErrorCategory::Network, "test").is_retryable());
|
||||
assert!(CommonError::service(ErrorCategory::Trading, "test").is_retryable());
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// RETRY STRATEGY MAX ATTEMPTS
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_retry_strategy_max_attempts() {
|
||||
assert_eq!(RetryStrategy::NoRetry.max_attempts(), Some(0));
|
||||
assert_eq!(RetryStrategy::Immediate.max_attempts(), Some(3));
|
||||
assert_eq!(
|
||||
RetryStrategy::Linear { base_delay_ms: 100 }.max_attempts(),
|
||||
Some(5)
|
||||
);
|
||||
assert_eq!(
|
||||
RetryStrategy::Exponential {
|
||||
base_delay_ms: 100,
|
||||
max_delay_ms: 10000
|
||||
}.max_attempts(),
|
||||
Some(7)
|
||||
);
|
||||
assert_eq!(RetryStrategy::CircuitBreaker.max_attempts(), Some(1));
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// ERROR MESSAGE FORMATTING EDGE CASES
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_common_error_empty_message() {
|
||||
let err = CommonError::config("");
|
||||
let display = format!("{}", err);
|
||||
assert_eq!(display, "Configuration error: ");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_special_characters() {
|
||||
let err = CommonError::network("Connection\nreset\tby\rpeer");
|
||||
match err {
|
||||
CommonError::Network(msg) => {
|
||||
assert!(msg.contains('\n'));
|
||||
assert!(msg.contains('\t'));
|
||||
assert!(msg.contains('\r'));
|
||||
},
|
||||
_ => panic!("Expected Network variant"),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_unicode_message() {
|
||||
let err = CommonError::validation("Invalid symbol: ¥€£");
|
||||
match err {
|
||||
CommonError::Validation(msg) => {
|
||||
assert!(msg.contains('¥'));
|
||||
assert!(msg.contains('€'));
|
||||
assert!(msg.contains('£'));
|
||||
},
|
||||
_ => panic!("Expected Validation variant"),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_very_long_message() {
|
||||
let long_msg = "x".repeat(10000);
|
||||
let err = CommonError::internal(&long_msg);
|
||||
|
||||
match err {
|
||||
CommonError::Service { message, .. } => {
|
||||
assert_eq!(message.len(), 10000 + "Internal error: ".len());
|
||||
},
|
||||
_ => panic!("Expected Service variant"),
|
||||
}
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// ERROR CATEGORY SERDE SERIALIZATION/DESERIALIZATION
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_error_category_serde_round_trip() {
|
||||
use serde_json;
|
||||
|
||||
let categories = vec![
|
||||
ErrorCategory::MarketData,
|
||||
ErrorCategory::Trading,
|
||||
ErrorCategory::Critical,
|
||||
ErrorCategory::MachineLearning,
|
||||
];
|
||||
|
||||
for category in categories {
|
||||
// Serialize
|
||||
let json = serde_json::to_string(&category).expect("Failed to serialize");
|
||||
|
||||
// Deserialize
|
||||
let deserialized: ErrorCategory = serde_json::from_str(&json)
|
||||
.expect("Failed to deserialize");
|
||||
|
||||
assert_eq!(category, deserialized);
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_error_severity_serde_round_trip() {
|
||||
use serde_json;
|
||||
|
||||
let severities = vec![
|
||||
ErrorSeverity::Debug,
|
||||
ErrorSeverity::Info,
|
||||
ErrorSeverity::Warn,
|
||||
ErrorSeverity::Error,
|
||||
ErrorSeverity::Critical,
|
||||
];
|
||||
|
||||
for severity in severities {
|
||||
// Serialize
|
||||
let json = serde_json::to_string(&severity).expect("Failed to serialize");
|
||||
|
||||
// Deserialize
|
||||
let deserialized: ErrorSeverity = serde_json::from_str(&json)
|
||||
.expect("Failed to deserialize");
|
||||
|
||||
assert_eq!(severity, deserialized);
|
||||
}
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// ERROR CATEGORY EQUALITY AND COMPARISON
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_error_category_equality() {
|
||||
assert_eq!(ErrorCategory::Trading, ErrorCategory::Trading);
|
||||
assert_ne!(ErrorCategory::Trading, ErrorCategory::MarketData);
|
||||
|
||||
// Test ML and MachineLearning are different variants
|
||||
assert_ne!(ErrorCategory::ML, ErrorCategory::MachineLearning);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_error_category_clone() {
|
||||
let category = ErrorCategory::Trading;
|
||||
let cloned = category.clone();
|
||||
assert_eq!(category, cloned);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_error_category_copy() {
|
||||
let category = ErrorCategory::Trading;
|
||||
let copied = category; // Copy trait allows this
|
||||
assert_eq!(category, copied);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_error_severity_equality() {
|
||||
assert_eq!(ErrorSeverity::Error, ErrorSeverity::Error);
|
||||
assert_ne!(ErrorSeverity::Error, ErrorSeverity::Critical);
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// RETRY STRATEGY SERDE
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_retry_strategy_serde_round_trip() {
|
||||
use serde_json;
|
||||
|
||||
let strategies = vec![
|
||||
RetryStrategy::NoRetry,
|
||||
RetryStrategy::Immediate,
|
||||
RetryStrategy::Linear { base_delay_ms: 100 },
|
||||
RetryStrategy::Exponential {
|
||||
base_delay_ms: 100,
|
||||
max_delay_ms: 10000,
|
||||
},
|
||||
RetryStrategy::CircuitBreaker,
|
||||
];
|
||||
|
||||
for strategy in strategies {
|
||||
// Serialize
|
||||
let json = serde_json::to_string(&strategy).expect("Failed to serialize");
|
||||
|
||||
// Deserialize
|
||||
let deserialized: RetryStrategy = serde_json::from_str(&json)
|
||||
.expect("Failed to deserialize");
|
||||
|
||||
assert_eq!(strategy, deserialized);
|
||||
}
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// ERROR FACTORY METHODS WITH EDGE CASES
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_common_error_timeout_zero_values() {
|
||||
let err = CommonError::timeout(0, 0);
|
||||
match err {
|
||||
CommonError::Timeout { actual_ms, max_ms } => {
|
||||
assert_eq!(actual_ms, 0);
|
||||
assert_eq!(max_ms, 0);
|
||||
},
|
||||
_ => panic!("Expected Timeout variant"),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_timeout_max_values() {
|
||||
let err = CommonError::timeout(u64::MAX, u64::MAX);
|
||||
match err {
|
||||
CommonError::Timeout { actual_ms, max_ms } => {
|
||||
assert_eq!(actual_ms, u64::MAX);
|
||||
assert_eq!(max_ms, u64::MAX);
|
||||
},
|
||||
_ => panic!("Expected Timeout variant"),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_timeout_actual_less_than_max() {
|
||||
// Even though actual < max, the error should still be created
|
||||
let err = CommonError::timeout(100, 5000);
|
||||
match err {
|
||||
CommonError::Timeout { actual_ms, max_ms } => {
|
||||
assert_eq!(actual_ms, 100);
|
||||
assert_eq!(max_ms, 5000);
|
||||
},
|
||||
_ => panic!("Expected Timeout variant"),
|
||||
}
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// COMMON ERROR DEBUG TRAIT
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_common_error_debug_format() {
|
||||
let err = CommonError::config("test");
|
||||
let debug = format!("{:?}", err);
|
||||
assert!(debug.contains("Configuration"));
|
||||
assert!(debug.contains("test"));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_service_debug_format() {
|
||||
let err = CommonError::service(ErrorCategory::Trading, "test");
|
||||
let debug = format!("{:?}", err);
|
||||
assert!(debug.contains("Service"));
|
||||
assert!(debug.contains("Trading"));
|
||||
assert!(debug.contains("test"));
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// ERROR DOWNCAST AND SOURCE CHAINS
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_common_error_implements_error_trait() {
|
||||
use std::error::Error;
|
||||
|
||||
let err: Box<dyn Error> = Box::new(CommonError::config("test"));
|
||||
assert!(err.source().is_none()); // No underlying cause
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_common_error_database_has_source() {
|
||||
use std::error::Error;
|
||||
use common::database::DatabaseError;
|
||||
|
||||
let db_err = DatabaseError::PoolExhausted;
|
||||
let err = CommonError::from(db_err);
|
||||
|
||||
let err_ref: &dyn Error = &err;
|
||||
// DatabaseError should be the source
|
||||
assert!(err_ref.source().is_some());
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// RETRY STRATEGY CALCULATE DELAY EDGE CASES
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_retry_strategy_linear_large_attempt() {
|
||||
let strategy = RetryStrategy::Linear { base_delay_ms: 1000 };
|
||||
|
||||
// Very large attempt number should not panic (saturating math)
|
||||
let delay = strategy.calculate_delay(u32::MAX).expect("should have delay");
|
||||
assert!(delay.as_millis() > 0);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_retry_strategy_exponential_overflow_protection() {
|
||||
let strategy = RetryStrategy::Exponential {
|
||||
base_delay_ms: u64::MAX,
|
||||
max_delay_ms: 1000,
|
||||
};
|
||||
|
||||
// Should cap at max_delay_ms and not panic
|
||||
let delay = strategy.calculate_delay(10).expect("should have delay");
|
||||
assert!(delay.as_millis() <= 1000);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_retry_strategy_exponential_attempt_capping() {
|
||||
let strategy = RetryStrategy::Exponential {
|
||||
base_delay_ms: 100,
|
||||
max_delay_ms: 100000,
|
||||
};
|
||||
|
||||
// Attempts > 10 should be capped to prevent overflow
|
||||
let delay_10 = strategy.calculate_delay(10).expect("should have delay");
|
||||
let delay_20 = strategy.calculate_delay(20).expect("should have delay");
|
||||
|
||||
// Both should use min(10) in the calculation
|
||||
assert_eq!(delay_10.as_millis(), delay_20.as_millis());
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// COMBINED ERROR SCENARIOS
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_combined_error_categorization_and_retry() {
|
||||
// Test that categorization and retry strategy are consistent
|
||||
|
||||
// Non-retryable configuration error
|
||||
let err = CommonError::config("test");
|
||||
assert_eq!(err.category(), ErrorCategory::Configuration);
|
||||
assert!(!err.is_retryable());
|
||||
assert!(matches!(err.retry_strategy(), RetryStrategy::NoRetry));
|
||||
|
||||
// Retryable network error
|
||||
let err = CommonError::network("test");
|
||||
assert_eq!(err.category(), ErrorCategory::Network);
|
||||
assert!(err.is_retryable());
|
||||
assert!(matches!(err.retry_strategy(), RetryStrategy::Linear { .. }));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_error_severity_matches_category() {
|
||||
// Critical categories should have Critical or Error severity
|
||||
let critical_err = CommonError::service(ErrorCategory::Critical, "test");
|
||||
assert_eq!(critical_err.severity(), ErrorSeverity::Critical);
|
||||
|
||||
let financial_err = CommonError::service(ErrorCategory::FinancialSafety, "test");
|
||||
assert_eq!(financial_err.severity(), ErrorSeverity::Critical);
|
||||
|
||||
let auth_err = CommonError::service(ErrorCategory::Authentication, "test");
|
||||
assert_eq!(auth_err.severity(), ErrorSeverity::Critical);
|
||||
|
||||
// Trading should be Error severity
|
||||
let trade_err = CommonError::service(ErrorCategory::Trading, "test");
|
||||
assert_eq!(trade_err.severity(), ErrorSeverity::Error);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_error_factory_consistency() {
|
||||
// Test that factory methods create consistent error structures
|
||||
|
||||
// config() should create Configuration variant
|
||||
let err = CommonError::config("test");
|
||||
assert!(matches!(err, CommonError::Configuration(_)));
|
||||
|
||||
// network() should create Network variant
|
||||
let err = CommonError::network("test");
|
||||
assert!(matches!(err, CommonError::Network(_)));
|
||||
|
||||
// validation() should create Validation variant
|
||||
let err = CommonError::validation("test");
|
||||
assert!(matches!(err, CommonError::Validation(_)));
|
||||
|
||||
// internal() should create Service variant with System category
|
||||
let err = CommonError::internal("test");
|
||||
match err {
|
||||
CommonError::Service { category, .. } => {
|
||||
assert_eq!(category, ErrorCategory::System);
|
||||
},
|
||||
_ => panic!("Expected Service variant"),
|
||||
}
|
||||
}
|
||||
853
common/tests/helper_functions_comprehensive_tests.rs
Normal file
853
common/tests/helper_functions_comprehensive_tests.rs
Normal file
@@ -0,0 +1,853 @@
|
||||
//! Comprehensive tests for Common crate helper functions
|
||||
//!
|
||||
//! Tests helper functions, conversions, validations, and edge cases across:
|
||||
//! - Price/Quantity type conversions (f64, Decimal, edge cases)
|
||||
//! - Trading enum Display implementations
|
||||
//! - ID types (EventId, FillId, AggregateId)
|
||||
//! - Decimal extensions (sqrt, conversions)
|
||||
//! - Threshold constants validation
|
||||
//! - Edge cases: NaN, Infinity, overflow, boundary values
|
||||
|
||||
use common::trading::{Quantity as TradingQuantity, OrderType, OrderSide, TickType, BookAction, MarketRegime, OrderEventType};
|
||||
use common::types::{
|
||||
Price, Quantity, EventId, FillId, AggregateId, DecimalExt,
|
||||
OrderType as TypesOrderType, OrderSide as TypesOrderSide,
|
||||
TimeInForce, Currency, OrderStatus, CommonTypeError,
|
||||
};
|
||||
use common::thresholds;
|
||||
use common::constants::*;
|
||||
use rust_decimal::Decimal;
|
||||
use std::str::FromStr;
|
||||
|
||||
// =============================================================================
|
||||
// Price Type Conversions & Edge Cases
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_price_from_f64_valid() {
|
||||
let price = Price::from_f64(100.50).expect("Valid price");
|
||||
assert!((price.to_f64() - 100.50).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_from_f64_zero() {
|
||||
let price = Price::from_f64(0.0).expect("Zero price");
|
||||
assert_eq!(price, Price::ZERO);
|
||||
assert_eq!(price.to_f64(), 0.0);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_from_f64_negative() {
|
||||
let result = Price::from_f64(-10.5);
|
||||
assert!(result.is_err());
|
||||
match result {
|
||||
Err(CommonTypeError::InvalidPrice { .. }) => (),
|
||||
_ => panic!("Expected InvalidPrice error for negative value"),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_from_f64_nan() {
|
||||
let result = Price::from_f64(f64::NAN);
|
||||
assert!(result.is_err());
|
||||
match result {
|
||||
Err(CommonTypeError::InvalidPrice { .. }) => (),
|
||||
_ => panic!("Expected InvalidPrice error for NaN"),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_from_f64_infinity() {
|
||||
let result = Price::from_f64(f64::INFINITY);
|
||||
assert!(result.is_err());
|
||||
match result {
|
||||
Err(CommonTypeError::InvalidPrice { .. }) => (),
|
||||
_ => panic!("Expected InvalidPrice error for Infinity"),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_from_f64_negative_infinity() {
|
||||
let result = Price::from_f64(f64::NEG_INFINITY);
|
||||
assert!(result.is_err());
|
||||
match result {
|
||||
Err(CommonTypeError::InvalidPrice { .. }) => (),
|
||||
_ => panic!("Expected InvalidPrice error for -Infinity"),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_from_f64_large_value() {
|
||||
// Test with a large but reasonable price value
|
||||
let large = 1_000_000.0; // 1 million
|
||||
let price = Price::from_f64(large).expect("Large price");
|
||||
let recovered = price.to_f64();
|
||||
assert!((recovered - large).abs() < 0.01); // Allow small rounding
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_from_f64_very_small() {
|
||||
let small = 0.000001; // 1 micro-unit
|
||||
let price = Price::from_f64(small).expect("Very small price");
|
||||
let recovered = price.to_f64();
|
||||
assert!((recovered - small).abs() < 1e-8);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_precision_loss() {
|
||||
// Test precision at 8 decimal places (fixed-point limit)
|
||||
let precise = 123.456789012345; // More than 8 decimals
|
||||
let price = Price::from_f64(precise).expect("Precise value");
|
||||
let recovered = price.to_f64();
|
||||
// Should be rounded to 8 decimal places
|
||||
assert!((recovered - precise).abs() < 1e-7);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_constants() {
|
||||
assert_eq!(Price::ZERO.to_f64(), 0.0);
|
||||
assert_eq!(Price::ONE.to_f64(), 1.0);
|
||||
assert_eq!(Price::CENT.to_f64(), 0.01);
|
||||
// MAX is u64::MAX in internal representation, which translates to a very large f64
|
||||
let max_val = Price::MAX.to_f64();
|
||||
assert!(max_val > 1e8); // At least 100 million in f64 representation
|
||||
assert!(max_val.is_finite()); // Should be finite, not infinity
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_arithmetic_add() {
|
||||
let p1 = Price::from_f64(100.0).unwrap();
|
||||
let p2 = Price::from_f64(50.0).unwrap();
|
||||
let sum = p1 + p2;
|
||||
assert!((sum.to_f64() - 150.0).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_arithmetic_sub() {
|
||||
let p1 = Price::from_f64(100.0).unwrap();
|
||||
let p2 = Price::from_f64(30.0).unwrap();
|
||||
let diff = p1 - p2;
|
||||
assert!((diff.to_f64() - 70.0).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_arithmetic_sub_underflow() {
|
||||
let p1 = Price::from_f64(10.0).unwrap();
|
||||
let p2 = Price::from_f64(30.0).unwrap();
|
||||
let diff = p1 - p2; // Should saturate to zero
|
||||
assert_eq!(diff, Price::ZERO);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_multiply() {
|
||||
let price1 = Price::from_f64(100.0).unwrap();
|
||||
let price2 = Price::from_f64(2.5).unwrap();
|
||||
let result = price1.multiply(price2).expect("Multiplication");
|
||||
assert!((result.to_f64() - 250.0).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_divide() {
|
||||
let price = Price::from_f64(100.0).unwrap();
|
||||
let result = price.divide(4.0).expect("Division");
|
||||
assert!((result.to_f64() - 25.0).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_divide_by_zero() {
|
||||
let price = Price::from_f64(100.0).unwrap();
|
||||
let result = price.divide(0.0);
|
||||
assert!(result.is_err());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_from_str_valid() {
|
||||
let price = Price::from_str("123.45").expect("Parse valid string");
|
||||
assert!((price.to_f64() - 123.45).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_from_str_invalid() {
|
||||
let result = Price::from_str("not_a_number");
|
||||
assert!(result.is_err());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_comparison_eq() {
|
||||
let p1 = Price::from_f64(100.0).unwrap();
|
||||
let p2 = Price::from_f64(100.0).unwrap();
|
||||
assert_eq!(p1, p2);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_comparison_with_f64() {
|
||||
let price = Price::from_f64(100.0).unwrap();
|
||||
assert!(price == 100.0);
|
||||
assert!(100.0 == price);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_price_comparison_ord() {
|
||||
let p1 = Price::from_f64(50.0).unwrap();
|
||||
let p2 = Price::from_f64(100.0).unwrap();
|
||||
assert!(p1 < p2);
|
||||
assert!(p2 > p1);
|
||||
assert!(p1 <= p2);
|
||||
assert!(p2 >= p1);
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// Quantity Type Conversions & Edge Cases
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_quantity_from_f64_valid() {
|
||||
let qty = Quantity::from_f64(100.50).expect("Valid quantity");
|
||||
assert!((qty.to_f64() - 100.50).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_from_f64_zero() {
|
||||
let qty = Quantity::from_f64(0.0).expect("Zero quantity");
|
||||
assert_eq!(qty, Quantity::ZERO);
|
||||
assert_eq!(qty.to_f64(), 0.0);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_from_f64_negative() {
|
||||
let result = Quantity::from_f64(-10.5);
|
||||
assert!(result.is_err());
|
||||
match result {
|
||||
Err(CommonTypeError::InvalidQuantity { .. }) => (),
|
||||
_ => panic!("Expected InvalidQuantity error for negative value"),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_from_f64_nan() {
|
||||
let result = Quantity::from_f64(f64::NAN);
|
||||
assert!(result.is_err());
|
||||
match result {
|
||||
Err(CommonTypeError::InvalidQuantity { .. }) => (),
|
||||
_ => panic!("Expected InvalidQuantity error for NaN"),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_from_f64_infinity() {
|
||||
let result = Quantity::from_f64(f64::INFINITY);
|
||||
assert!(result.is_err());
|
||||
match result {
|
||||
Err(CommonTypeError::InvalidQuantity { .. }) => (),
|
||||
_ => panic!("Expected InvalidQuantity error for Infinity"),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_constants() {
|
||||
assert_eq!(Quantity::ZERO.to_f64(), 0.0);
|
||||
assert_eq!(Quantity::ONE.to_f64(), 1.0);
|
||||
// MAX is u64::MAX in internal representation
|
||||
let max_val = Quantity::MAX.to_f64();
|
||||
assert!(max_val > 1e8); // At least 100 million
|
||||
assert!(max_val.is_finite()); // Should be finite
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_raw_value_roundtrip() {
|
||||
let original = 12345678u64;
|
||||
let qty = Quantity::from_raw(original);
|
||||
assert_eq!(qty.raw_value(), original);
|
||||
assert_eq!(qty.value(), original);
|
||||
assert_eq!(qty.as_u64(), original);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_to_decimal() {
|
||||
let qty = Quantity::from_f64(123.456).unwrap();
|
||||
let decimal = qty.to_decimal().expect("Convert to decimal");
|
||||
let as_f64: f64 = decimal.to_string().parse().unwrap();
|
||||
assert!((as_f64 - 123.456).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_arithmetic_add() {
|
||||
let q1 = Quantity::from_f64(100.0).unwrap();
|
||||
let q2 = Quantity::from_f64(50.0).unwrap();
|
||||
let sum = q1 + q2;
|
||||
assert!((sum.to_f64() - 150.0).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_arithmetic_sub() {
|
||||
let q1 = Quantity::from_f64(100.0).unwrap();
|
||||
let q2 = Quantity::from_f64(30.0).unwrap();
|
||||
let diff = q1 - q2;
|
||||
assert!((diff.to_f64() - 70.0).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_arithmetic_sub_underflow() {
|
||||
let q1 = Quantity::from_f64(10.0).unwrap();
|
||||
let q2 = Quantity::from_f64(30.0).unwrap();
|
||||
let diff = q1 - q2; // Should saturate to zero
|
||||
assert_eq!(diff, Quantity::ZERO);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_is_zero() {
|
||||
assert!(Quantity::ZERO.is_zero());
|
||||
assert!(!Quantity::ONE.is_zero());
|
||||
|
||||
let qty = Quantity::from_f64(0.0).unwrap();
|
||||
assert!(qty.is_zero());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_multiply_with_quantity() {
|
||||
let qty1 = Quantity::from_f64(10.0).unwrap();
|
||||
let qty2 = Quantity::from_f64(2.5).unwrap();
|
||||
let result = qty1.multiply(qty2).expect("Multiplication");
|
||||
// 10 * 2.5 = 25.0
|
||||
assert!((result.to_f64() - 25.0).abs() < 1e-4);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_decimal_conversion() {
|
||||
// Test converting quantity to decimal and back
|
||||
let qty = Quantity::from_f64(5.0).unwrap();
|
||||
let decimal = qty.to_decimal().expect("Convert to decimal");
|
||||
let decimal_val: f64 = decimal.to_string().parse().unwrap();
|
||||
assert!((decimal_val - 5.0).abs() < 1e-4);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_from_decimal() {
|
||||
let decimal = Decimal::from_str("123.456").unwrap();
|
||||
let qty = Quantity::from_decimal(decimal).expect("Convert from decimal");
|
||||
assert!((qty.to_f64() - 123.456).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_quantity_comparison() {
|
||||
let q1 = Quantity::from_f64(50.0).unwrap();
|
||||
let q2 = Quantity::from_f64(100.0).unwrap();
|
||||
assert!(q1 < q2);
|
||||
assert!(q2 > q1);
|
||||
assert_eq!(q1, q1);
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// Trading Quantity Edge Cases
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_trading_quantity_new_valid() {
|
||||
let qty = TradingQuantity::new(100.5).expect("Valid quantity");
|
||||
assert!((qty.to_f64() - 100.5).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_trading_quantity_negative() {
|
||||
let result = TradingQuantity::new(-5.0);
|
||||
assert!(result.is_err());
|
||||
assert_eq!(result.unwrap_err(), "Quantity cannot be negative");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_trading_quantity_nan() {
|
||||
let result = TradingQuantity::new(f64::NAN);
|
||||
assert!(result.is_err());
|
||||
assert_eq!(result.unwrap_err(), "Quantity must be finite");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_trading_quantity_infinity() {
|
||||
let result = TradingQuantity::new(f64::INFINITY);
|
||||
assert!(result.is_err());
|
||||
assert_eq!(result.unwrap_err(), "Quantity must be finite");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_trading_quantity_arithmetic() {
|
||||
let q1 = TradingQuantity::new(100.0).unwrap();
|
||||
let q2 = TradingQuantity::new(50.0).unwrap();
|
||||
|
||||
let sum = q1.add(q2);
|
||||
assert!((sum.to_f64() - 150.0).abs() < 1e-6);
|
||||
|
||||
let diff = q1.subtract(q2);
|
||||
assert!((diff.to_f64() - 50.0).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_trading_quantity_operator_overload() {
|
||||
let q1 = TradingQuantity::new(100.0).unwrap();
|
||||
let q2 = TradingQuantity::new(30.0).unwrap();
|
||||
|
||||
let sum = q1 + q2;
|
||||
assert!((sum.to_f64() - 130.0).abs() < 1e-6);
|
||||
|
||||
let diff = q1 - q2;
|
||||
assert!((diff.to_f64() - 70.0).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_trading_quantity_to_decimal() {
|
||||
let qty = TradingQuantity::new(123.456).unwrap();
|
||||
let decimal = qty.to_decimal();
|
||||
let as_str = decimal.to_string();
|
||||
assert!(as_str.starts_with("123.45"));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_trading_quantity_display() {
|
||||
let qty = TradingQuantity::new(123.456789).unwrap();
|
||||
let display = format!("{}", qty);
|
||||
assert!(display.starts_with("123.4567"));
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// Display Implementations for Enums
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_order_type_display() {
|
||||
assert_eq!(format!("{}", OrderType::Market), "MARKET");
|
||||
assert_eq!(format!("{}", OrderType::Limit), "LIMIT");
|
||||
assert_eq!(format!("{}", OrderType::Stop), "STOP");
|
||||
assert_eq!(format!("{}", OrderType::StopLimit), "STOP_LIMIT");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_order_side_display() {
|
||||
assert_eq!(format!("{}", OrderSide::Buy), "BUY");
|
||||
assert_eq!(format!("{}", OrderSide::Sell), "SELL");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_tick_type_display() {
|
||||
assert_eq!(format!("{}", TickType::Trade), "TRADE");
|
||||
assert_eq!(format!("{}", TickType::Bid), "BID");
|
||||
assert_eq!(format!("{}", TickType::Ask), "ASK");
|
||||
assert_eq!(format!("{}", TickType::Quote), "QUOTE");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_book_action_display() {
|
||||
assert_eq!(format!("{}", BookAction::Update), "UPDATE");
|
||||
assert_eq!(format!("{}", BookAction::Delete), "DELETE");
|
||||
assert_eq!(format!("{}", BookAction::Clear), "CLEAR");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_market_regime_display() {
|
||||
assert_eq!(format!("{}", MarketRegime::Normal), "NORMAL");
|
||||
assert_eq!(format!("{}", MarketRegime::Crisis), "CRISIS");
|
||||
assert_eq!(format!("{}", MarketRegime::Trending), "TRENDING");
|
||||
assert_eq!(format!("{}", MarketRegime::Sideways), "SIDEWAYS");
|
||||
assert_eq!(format!("{}", MarketRegime::Bull), "BULL");
|
||||
assert_eq!(format!("{}", MarketRegime::Bear), "BEAR");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_order_event_type_display() {
|
||||
assert_eq!(format!("{}", OrderEventType::Placed), "PLACED");
|
||||
assert_eq!(format!("{}", OrderEventType::Modified), "MODIFIED");
|
||||
assert_eq!(format!("{}", OrderEventType::Cancelled), "CANCELLED");
|
||||
assert_eq!(format!("{}", OrderEventType::Rejected), "REJECTED");
|
||||
assert_eq!(format!("{}", OrderEventType::Expired), "EXPIRED");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_types_order_type_display() {
|
||||
assert_eq!(format!("{}", TypesOrderType::Market), "MARKET");
|
||||
assert_eq!(format!("{}", TypesOrderType::Limit), "LIMIT");
|
||||
assert_eq!(format!("{}", TypesOrderType::Stop), "STOP");
|
||||
assert_eq!(format!("{}", TypesOrderType::StopLimit), "STOP_LIMIT");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_types_order_side_display() {
|
||||
assert_eq!(format!("{}", TypesOrderSide::Buy), "BUY");
|
||||
assert_eq!(format!("{}", TypesOrderSide::Sell), "SELL");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_time_in_force_display() {
|
||||
assert_eq!(format!("{}", TimeInForce::Day), "DAY");
|
||||
assert_eq!(format!("{}", TimeInForce::GoodTillCancel), "GTC");
|
||||
assert_eq!(format!("{}", TimeInForce::ImmediateOrCancel), "IOC");
|
||||
assert_eq!(format!("{}", TimeInForce::FillOrKill), "FOK");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_currency_display() {
|
||||
assert_eq!(format!("{}", Currency::USD), "USD");
|
||||
assert_eq!(format!("{}", Currency::EUR), "EUR");
|
||||
assert_eq!(format!("{}", Currency::GBP), "GBP");
|
||||
assert_eq!(format!("{}", Currency::JPY), "JPY");
|
||||
assert_eq!(format!("{}", Currency::BTC), "BTC");
|
||||
assert_eq!(format!("{}", Currency::ETH), "ETH");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_order_status_display() {
|
||||
assert_eq!(format!("{}", OrderStatus::Created), "CREATED");
|
||||
assert_eq!(format!("{}", OrderStatus::Pending), "PENDING");
|
||||
assert_eq!(format!("{}", OrderStatus::PartiallyFilled), "PARTIALLY_FILLED");
|
||||
assert_eq!(format!("{}", OrderStatus::Filled), "FILLED");
|
||||
assert_eq!(format!("{}", OrderStatus::Cancelled), "CANCELLED");
|
||||
assert_eq!(format!("{}", OrderStatus::Rejected), "REJECTED");
|
||||
assert_eq!(format!("{}", OrderStatus::Expired), "EXPIRED");
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// ID Type Validation
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_event_id_new() {
|
||||
let id1 = EventId::new();
|
||||
let id2 = EventId::new();
|
||||
assert_ne!(id1, id2); // Each should be unique
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_event_id_from_string_valid() {
|
||||
let id = EventId::from_string("test-event-123");
|
||||
assert_eq!(id.to_string(), "test-event-123");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_event_id_from_string_empty() {
|
||||
let id = EventId::from_string("");
|
||||
// Should generate new UUID for empty string
|
||||
assert!(!id.to_string().is_empty());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_event_id_display() {
|
||||
let id = EventId::from_string("display-test");
|
||||
assert_eq!(format!("{}", id), "display-test");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_fill_id_new_valid() {
|
||||
let result = FillId::new("fill-12345");
|
||||
assert!(result.is_ok());
|
||||
let fill_id = result.unwrap();
|
||||
assert_eq!(fill_id.to_string(), "fill-12345");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_fill_id_new_empty() {
|
||||
let result = FillId::new("");
|
||||
assert!(result.is_err());
|
||||
match result {
|
||||
Err(CommonTypeError::ValidationError { field, reason }) => {
|
||||
assert_eq!(field, "fill_id");
|
||||
assert!(reason.contains("empty"));
|
||||
}
|
||||
_ => panic!("Expected ValidationError for empty fill_id"),
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_fill_id_display() {
|
||||
let fill_id = FillId::new("fill-display").unwrap();
|
||||
assert_eq!(format!("{}", fill_id), "fill-display");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_aggregate_id_new_valid() {
|
||||
let result = AggregateId::new("aggregate-789");
|
||||
assert!(result.is_ok());
|
||||
let agg_id = result.unwrap();
|
||||
assert_eq!(agg_id.to_string(), "aggregate-789");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_aggregate_id_new_empty() {
|
||||
let result = AggregateId::new("");
|
||||
assert!(result.is_err());
|
||||
match result {
|
||||
Err(CommonTypeError::ValidationError { field, reason }) => {
|
||||
assert_eq!(field, "aggregate_id");
|
||||
assert!(reason.contains("empty"));
|
||||
}
|
||||
_ => panic!("Expected ValidationError for empty aggregate_id"),
|
||||
}
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// DecimalExt Trait
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_decimal_ext_from_f64_valid() {
|
||||
let decimal = Decimal::from_f64(123.456).expect("Valid conversion");
|
||||
let as_str = decimal.to_string();
|
||||
assert!(as_str.starts_with("123.45"));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_decimal_ext_from_f64_zero() {
|
||||
let decimal = Decimal::from_f64(0.0).expect("Zero");
|
||||
assert_eq!(decimal, Decimal::ZERO);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_decimal_ext_from_f64_nan() {
|
||||
let result = Decimal::from_f64(f64::NAN);
|
||||
assert!(result.is_none());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_decimal_ext_from_f64_infinity() {
|
||||
let result = Decimal::from_f64(f64::INFINITY);
|
||||
assert!(result.is_none());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_decimal_ext_sqrt_positive() {
|
||||
let decimal = Decimal::from_str("16.0").unwrap();
|
||||
let sqrt = decimal.sqrt().expect("Valid sqrt");
|
||||
let as_f64: f64 = sqrt.to_string().parse().unwrap();
|
||||
assert!((as_f64 - 4.0).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_decimal_ext_sqrt_zero() {
|
||||
let decimal = Decimal::ZERO;
|
||||
let sqrt = decimal.sqrt().expect("Sqrt of zero");
|
||||
assert_eq!(sqrt, Decimal::ZERO);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_decimal_ext_sqrt_negative() {
|
||||
let decimal = Decimal::from_str("-16.0").unwrap();
|
||||
let result = decimal.sqrt();
|
||||
assert!(result.is_none()); // No sqrt for negative numbers
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_decimal_ext_sqrt_precision() {
|
||||
let decimal = Decimal::from_str("2.0").unwrap();
|
||||
let sqrt = decimal.sqrt().expect("Sqrt of 2");
|
||||
let as_f64: f64 = sqrt.to_string().parse().unwrap();
|
||||
// sqrt(2) ≈ 1.41421356
|
||||
assert!((as_f64 - 1.41421356).abs() < 1e-6);
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// Threshold Constants Validation
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_risk_breach_thresholds_ordered() {
|
||||
assert!(thresholds::risk::BREACH_WARNING_PCT < thresholds::risk::BREACH_SOFT_PCT);
|
||||
assert!(thresholds::risk::BREACH_SOFT_PCT < thresholds::risk::BREACH_HARD_PCT);
|
||||
assert!(thresholds::risk::BREACH_HARD_PCT < thresholds::risk::BREACH_CRITICAL_PCT);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_var_z_scores_ordered() {
|
||||
assert!(thresholds::var::Z_SCORE_P90 < thresholds::var::Z_SCORE_P95);
|
||||
assert!(thresholds::var::Z_SCORE_P95 < thresholds::var::Z_SCORE_P97_5);
|
||||
assert!(thresholds::var::Z_SCORE_P97_5 < thresholds::var::Z_SCORE_P99);
|
||||
assert!(thresholds::var::Z_SCORE_P99 < thresholds::var::Z_SCORE_P99_9);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_var_confidence_levels() {
|
||||
assert_eq!(thresholds::risk::DEFAULT_VAR_CONFIDENCE, 0.95);
|
||||
assert_eq!(thresholds::risk::HIGH_VAR_CONFIDENCE, 0.99);
|
||||
assert!(thresholds::risk::DEFAULT_VAR_CONFIDENCE < thresholds::risk::HIGH_VAR_CONFIDENCE);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_time_conversion_constants() {
|
||||
assert_eq!(thresholds::time::NANOS_PER_MICRO, 1_000);
|
||||
assert_eq!(thresholds::time::NANOS_PER_MILLI, 1_000_000);
|
||||
assert_eq!(thresholds::time::NANOS_PER_SECOND, 1_000_000_000);
|
||||
assert_eq!(thresholds::time::MICROS_PER_SECOND, 1_000_000);
|
||||
assert_eq!(thresholds::time::MILLIS_PER_SECOND, 1_000);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_time_conversion_relationships() {
|
||||
assert_eq!(
|
||||
thresholds::time::NANOS_PER_MICRO * 1000,
|
||||
thresholds::time::NANOS_PER_MILLI
|
||||
);
|
||||
assert_eq!(
|
||||
thresholds::time::NANOS_PER_MILLI * 1000,
|
||||
thresholds::time::NANOS_PER_SECOND
|
||||
);
|
||||
assert_eq!(
|
||||
thresholds::time::MICROS_PER_SECOND * 1000,
|
||||
thresholds::time::NANOS_PER_SECOND
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_financial_scale_consistency() {
|
||||
assert_eq!(thresholds::financial::PRICE_SCALE, thresholds::financial::UNIFIED_SCALE_FACTOR);
|
||||
assert_eq!(thresholds::financial::QUANTITY_SCALE, thresholds::financial::UNIFIED_SCALE_FACTOR);
|
||||
assert_eq!(thresholds::financial::MONEY_SCALE, thresholds::financial::UNIFIED_SCALE_FACTOR);
|
||||
assert_eq!(thresholds::financial::UNIFIED_SCALE_FACTOR, 1_000_000);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_financial_basis_points() {
|
||||
assert_eq!(thresholds::financial::BASIS_POINTS_PER_UNIT, 10_000);
|
||||
assert_eq!(thresholds::financial::CENTS_PER_DOLLAR, 100);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_limits_price_quantity_ranges() {
|
||||
assert!(thresholds::limits::MIN_PRICE > 0.0);
|
||||
assert!(thresholds::limits::MAX_PRICE > thresholds::limits::MIN_PRICE);
|
||||
assert!(thresholds::limits::MIN_QUANTITY > 0.0);
|
||||
assert!(thresholds::limits::MAX_QUANTITY > thresholds::limits::MIN_QUANTITY);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_limits_string_lengths() {
|
||||
assert!(thresholds::limits::MAX_SYMBOL_LENGTH > 0);
|
||||
assert!(thresholds::limits::MAX_ACCOUNT_ID_LENGTH > 0);
|
||||
assert!(thresholds::limits::MAX_DESCRIPTION_LENGTH > 0);
|
||||
assert!(thresholds::limits::MAX_METADATA_KEY_LENGTH < thresholds::limits::MAX_METADATA_VALUE_LENGTH);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_performance_batch_sizes() {
|
||||
assert!(thresholds::performance::DEFAULT_BATCH_SIZE > 0);
|
||||
assert!(thresholds::performance::SIMD_BATCH_SIZE > 0);
|
||||
assert!(thresholds::performance::MAX_SMALL_BATCH_SIZE >= thresholds::performance::SIMD_BATCH_SIZE);
|
||||
assert!(thresholds::performance::RING_BUFFER_SIZE > thresholds::performance::DEFAULT_BATCH_SIZE);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_hardware_alignment_constants() {
|
||||
assert_eq!(thresholds::hardware::CACHE_LINE_SIZE, 64);
|
||||
assert_eq!(thresholds::hardware::SIMD_ALIGNMENT, 32);
|
||||
assert_eq!(thresholds::hardware::PAGE_SIZE, 4096);
|
||||
// Page size should be multiple of cache line size
|
||||
assert_eq!(thresholds::hardware::PAGE_SIZE % thresholds::hardware::CACHE_LINE_SIZE, 0);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_constants_pool_sizes() {
|
||||
assert!(DEFAULT_POOL_SIZE > 0);
|
||||
assert!(MAX_POOL_SIZE > DEFAULT_POOL_SIZE);
|
||||
assert!(MAX_POOL_SIZE >= 100);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_constants_timeouts() {
|
||||
assert!(MAX_QUERY_TIMEOUT_MS > 0);
|
||||
assert!(DEFAULT_HEALTH_CHECK_INTERVAL_SECONDS > 0);
|
||||
assert!(DEFAULT_SERVICE_TIMEOUT_SECONDS > 0);
|
||||
assert!(CONFIG_REFRESH_INTERVAL_SECONDS > 0);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_constants_latency_thresholds() {
|
||||
assert_eq!(MAX_HFT_LATENCY_MICROS, 50);
|
||||
assert!(MAX_HFT_LATENCY_MICROS > 0);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_constants_port_ranges() {
|
||||
assert!(DEFAULT_GRPC_PORT_START >= 50000);
|
||||
assert!(DEFAULT_HTTP_PORT_START >= 8000);
|
||||
}
|
||||
|
||||
// =============================================================================
|
||||
// Edge Case Combinations
|
||||
// =============================================================================
|
||||
|
||||
#[test]
|
||||
fn test_price_quantity_multiplication_edge_cases() {
|
||||
// Zero quantity multiplication
|
||||
let qty_zero = Quantity::ZERO;
|
||||
let qty_nonzero = Quantity::from_f64(100.0).unwrap();
|
||||
let result = qty_zero.multiply(qty_nonzero).unwrap();
|
||||
assert_eq!(result, Quantity::ZERO);
|
||||
|
||||
// Zero price multiplication
|
||||
let price_zero = Price::ZERO;
|
||||
let price_nonzero = Price::from_f64(10.0).unwrap();
|
||||
let result = price_zero.multiply(price_nonzero).unwrap();
|
||||
assert_eq!(result, Price::ZERO);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_conversion_roundtrip_price() {
|
||||
let original = 123.456789;
|
||||
let price = Price::from_f64(original).unwrap();
|
||||
let decimal = price.to_decimal().unwrap();
|
||||
let price2 = Price::from_decimal(decimal);
|
||||
|
||||
// Should be approximately equal (within precision limits)
|
||||
assert!((price.to_f64() - price2.to_f64()).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_conversion_roundtrip_quantity() {
|
||||
let original = 987.654321;
|
||||
let qty = Quantity::from_f64(original).unwrap();
|
||||
let decimal = qty.to_decimal().unwrap();
|
||||
let qty2 = Quantity::from_decimal(decimal).unwrap();
|
||||
|
||||
// Should be approximately equal (within precision limits)
|
||||
assert!((qty.to_f64() - qty2.to_f64()).abs() < 1e-6);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_boundary_values_u64_max() {
|
||||
// Test near u64::MAX boundaries - internal representation is u64::MAX
|
||||
let max_qty = Quantity::MAX;
|
||||
let qty_val = max_qty.to_f64();
|
||||
assert!(qty_val > 1e8); // At least 100 million
|
||||
assert!(qty_val.is_finite());
|
||||
|
||||
let max_price = Price::MAX;
|
||||
let price_val = max_price.to_f64();
|
||||
assert!(price_val > 1e8); // At least 100 million
|
||||
assert!(price_val.is_finite());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_very_small_values_precision() {
|
||||
// Test precision at very small values
|
||||
let small = 0.00000001; // 1e-8
|
||||
let price = Price::from_f64(small).unwrap();
|
||||
let recovered = price.to_f64();
|
||||
assert!((recovered - small).abs() < 1e-9);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_saturating_arithmetic_overflow() {
|
||||
// Test that arithmetic saturates instead of panicking
|
||||
let max_qty = Quantity::MAX;
|
||||
let one = Quantity::ONE;
|
||||
|
||||
let sum = max_qty + one; // Should saturate
|
||||
assert_eq!(sum, Quantity::MAX); // Saturating add
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_multiple_operations_accumulation() {
|
||||
// Test accumulation of rounding errors
|
||||
let mut price = Price::from_f64(1.0).unwrap();
|
||||
|
||||
for _ in 0..1000 {
|
||||
price = (price + Price::from_f64(0.001).unwrap()) - Price::from_f64(0.001).unwrap();
|
||||
}
|
||||
|
||||
// Should remain close to 1.0 despite many operations
|
||||
assert!((price.to_f64() - 1.0).abs() < 0.01);
|
||||
}
|
||||
@@ -414,13 +414,13 @@ fn test_symbol_operations() {
|
||||
|
||||
#[test]
|
||||
fn test_order_type_variants() {
|
||||
assert_eq!(OrderType::Market.to_owned(), "MARKET");
|
||||
assert_eq!(OrderType::Limit.to_owned(), "LIMIT");
|
||||
assert_eq!(OrderType::Stop.to_owned(), "STOP");
|
||||
assert_eq!(OrderType::StopLimit.to_owned(), "STOP_LIMIT");
|
||||
assert_eq!(OrderType::Iceberg.to_owned(), "ICEBERG");
|
||||
assert_eq!(OrderType::TrailingStop.to_owned(), "TRAILING_STOP");
|
||||
assert_eq!(OrderType::Hidden.to_owned(), "HIDDEN");
|
||||
assert_eq!(OrderType::Market.to_string(), "MARKET");
|
||||
assert_eq!(OrderType::Limit.to_string(), "LIMIT");
|
||||
assert_eq!(OrderType::Stop.to_string(), "STOP");
|
||||
assert_eq!(OrderType::StopLimit.to_string(), "STOP_LIMIT");
|
||||
assert_eq!(OrderType::Iceberg.to_string(), "ICEBERG");
|
||||
assert_eq!(OrderType::TrailingStop.to_string(), "TRAILING_STOP");
|
||||
assert_eq!(OrderType::Hidden.to_string(), "HIDDEN");
|
||||
}
|
||||
|
||||
#[test]
|
||||
@@ -441,12 +441,12 @@ fn test_order_type_try_from_i32() {
|
||||
|
||||
#[test]
|
||||
fn test_order_status_variants() {
|
||||
assert_eq!(OrderStatus::Created.to_owned(), "CREATED");
|
||||
assert_eq!(OrderStatus::Submitted.to_owned(), "SUBMITTED");
|
||||
assert_eq!(OrderStatus::PartiallyFilled.to_owned(), "PARTIALLY_FILLED");
|
||||
assert_eq!(OrderStatus::Filled.to_owned(), "FILLED");
|
||||
assert_eq!(OrderStatus::Rejected.to_owned(), "REJECTED");
|
||||
assert_eq!(OrderStatus::Cancelled.to_owned(), "CANCELLED");
|
||||
assert_eq!(OrderStatus::Created.to_string(), "CREATED");
|
||||
assert_eq!(OrderStatus::Submitted.to_string(), "SUBMITTED");
|
||||
assert_eq!(OrderStatus::PartiallyFilled.to_string(), "PARTIALLY_FILLED");
|
||||
assert_eq!(OrderStatus::Filled.to_string(), "FILLED");
|
||||
assert_eq!(OrderStatus::Rejected.to_string(), "REJECTED");
|
||||
assert_eq!(OrderStatus::Cancelled.to_string(), "CANCELLED");
|
||||
}
|
||||
|
||||
#[test]
|
||||
@@ -460,8 +460,8 @@ fn test_order_status_try_from_i32() {
|
||||
|
||||
#[test]
|
||||
fn test_order_side_variants() {
|
||||
assert_eq!(OrderSide::Buy.to_owned(), "BUY");
|
||||
assert_eq!(OrderSide::Sell.to_owned(), "SELL");
|
||||
assert_eq!(OrderSide::Buy.to_string(), "BUY");
|
||||
assert_eq!(OrderSide::Sell.to_string(), "SELL");
|
||||
}
|
||||
|
||||
#[test]
|
||||
@@ -474,12 +474,12 @@ fn test_order_side_try_from_i32() {
|
||||
|
||||
#[test]
|
||||
fn test_currency_variants() {
|
||||
assert_eq!(Currency::USD.to_owned(), "USD");
|
||||
assert_eq!(Currency::EUR.to_owned(), "EUR");
|
||||
assert_eq!(Currency::GBP.to_owned(), "GBP");
|
||||
assert_eq!(Currency::JPY.to_owned(), "JPY");
|
||||
assert_eq!(Currency::BTC.to_owned(), "BTC");
|
||||
assert_eq!(Currency::ETH.to_owned(), "ETH");
|
||||
assert_eq!(Currency::USD.to_string(), "USD");
|
||||
assert_eq!(Currency::EUR.to_string(), "EUR");
|
||||
assert_eq!(Currency::GBP.to_string(), "GBP");
|
||||
assert_eq!(Currency::JPY.to_string(), "JPY");
|
||||
assert_eq!(Currency::BTC.to_string(), "BTC");
|
||||
assert_eq!(Currency::ETH.to_string(), "ETH");
|
||||
}
|
||||
|
||||
#[test]
|
||||
@@ -496,10 +496,10 @@ fn test_currency_ordering() {
|
||||
|
||||
#[test]
|
||||
fn test_time_in_force_variants() {
|
||||
assert_eq!(TimeInForce::Day.to_owned(), "DAY");
|
||||
assert_eq!(TimeInForce::GoodTillCancel.to_owned(), "GTC");
|
||||
assert_eq!(TimeInForce::ImmediateOrCancel.to_owned(), "IOC");
|
||||
assert_eq!(TimeInForce::FillOrKill.to_owned(), "FOK");
|
||||
assert_eq!(TimeInForce::Day.to_string(), "DAY");
|
||||
assert_eq!(TimeInForce::GoodTillCancel.to_string(), "GTC");
|
||||
assert_eq!(TimeInForce::ImmediateOrCancel.to_string(), "IOC");
|
||||
assert_eq!(TimeInForce::FillOrKill.to_string(), "FOK");
|
||||
}
|
||||
|
||||
#[test]
|
||||
@@ -525,15 +525,15 @@ fn test_service_status_available() {
|
||||
|
||||
#[test]
|
||||
fn test_market_regime_variants() {
|
||||
assert_eq!(MarketRegime::Normal.to_owned(), "Normal");
|
||||
assert_eq!(MarketRegime::Crisis.to_owned(), "Crisis");
|
||||
assert_eq!(MarketRegime::Bull.to_owned(), "Bull");
|
||||
assert_eq!(MarketRegime::Bear.to_owned(), "Bear");
|
||||
assert_eq!(MarketRegime::HighVolatility.to_owned(), "HighVolatility");
|
||||
assert_eq!(MarketRegime::Normal.to_string(), "Normal");
|
||||
assert_eq!(MarketRegime::Crisis.to_string(), "Crisis");
|
||||
assert_eq!(MarketRegime::Bull.to_string(), "Bull");
|
||||
assert_eq!(MarketRegime::Bear.to_string(), "Bear");
|
||||
assert_eq!(MarketRegime::HighVolatility.to_string(), "HighVolatility");
|
||||
|
||||
// Custom variant
|
||||
let custom = MarketRegime::Custom(42);
|
||||
assert_eq!(custom.to_owned(), "Custom(42)");
|
||||
assert_eq!(custom.to_string(), "Custom(42)");
|
||||
}
|
||||
|
||||
#[test]
|
||||
@@ -1325,7 +1325,7 @@ fn test_order_fill_zero_quantity() {
|
||||
let qty = Quantity::from_f64(100.0).unwrap();
|
||||
let price = Price::from_f64(150.0).unwrap();
|
||||
|
||||
let order = Order::limit(symbol, OrderSide::Buy, qty, price);
|
||||
let _order = Order::limit(symbol, OrderSide::Buy, qty, price);
|
||||
|
||||
// Create zero-quantity order for fill percentage calculation
|
||||
let zero_order = Order::limit(Symbol::from("TEST"), OrderSide::Buy, Quantity::ZERO, price);
|
||||
|
||||
Reference in New Issue
Block a user