Files
foxhunt/config/tests/validation_edge_cases_tests.rs
jgrusewski 83629f9ca8 feat(deployment): Complete Runpod GPU deployment infrastructure
Implement comprehensive Runpod deployment with S3 volume mount architecture for
FP32 ML model training on Tesla V100 GPUs.

## Infrastructure Components

### Deployment Scripts (scripts/)
- runpod_deploy.sh: Master deployment orchestrator (8-step workflow)
- runpod_upload.sh: S3 upload for binaries and test data
- upload_env_to_runpod.sh: Secure .env credentials upload
- runpod_deploy_test.sh: Prerequisites validation

### Docker Configuration
- Dockerfile.runpod: Multi-stage CUDA 12.1 runtime (~2GB, no binaries)
- entrypoint.sh: Volume verification and training execution
- Architecture: Volume mount (NO S3 downloads in pods)

### S3 Configuration
- Bucket: se3zdnb5o4 (Iceland region: eur-is-1)
- Endpoint: https://s3api-eur-is-1.runpod.io
- Structure: binaries/, test_data/, models/, .env

### OpenTofu Infrastructure (terraform/runpod/)
- main.tf: Pod and volume resources
- variables.tf: Configuration variables
- outputs.tf: Pod connection info
- Security: NO credentials in state (uses volume .env)

## Deployment Assets Uploaded

### Training Binaries (77MB)
- train_tft_parquet (23M) - TFT-225 features
- train_mamba2_parquet (22M) - MAMBA-2 state space
- train_dqn (22M) - Deep Q-Network
- train_ppo (13M) - Proximal Policy Optimization

### Test Data (13.8 MB)
- 9 Parquet files: ES.FUT, NQ.FUT, 6E.FUT, ZN.FUT (180-day datasets)

### Credentials
- .env file (1.5 KB, private access, chmod 600)

## Documentation

### Deployment Guides
- RUNPOD_DEPLOYMENT_READY_SUMMARY.md: Complete deployment status
- RUNPOD_VOLUME_DEPLOYMENT_GUIDE.md: Step-by-step guide (42KB)
- RUNPOD_DEPLOYMENT_QUICK_START.md: Quick reference
- RUNPOD_UPLOAD_GUIDE.md: S3 upload instructions
- RUNPOD_VOLUME_CONFIGURATION_COMPLETE.md: S3 setup report
- RUNPOD_S3_PARQUET_UPLOAD_REPORT.md: Data upload verification

### Architecture Documentation
- RUNPOD_VOLUME_MOUNT_ARCHITECTURE.md: Volume mount design
- RUNPOD_S3_ARCHITECTURE_DIAGRAM.txt: S3 API vs filesystem access
- DOCKERFILE_RUNPOD_FINAL_SUMMARY.md: Docker image specification

### Decision Documentation
- RUNPOD_DEPLOYMENT_CHECKLIST.md: Go/no-go decision matrix (27KB)
- RUNPOD_DEPLOYMENT_DECISION_TREE.md: Decision workflow
- FP32_RUNPOD_DEPLOYMENT_READY.md: FP32 deployment readiness

## QAT Enhancements

### Core QAT Infrastructure
- ml/src/memory_optimization/qat.rs: Enhanced QAT observer (+226 lines)
- ml/src/memory_optimization/auto_batch_size.rs: OOM recovery (+84 lines)
- ml/src/tft/qat_tft.rs: QAT TFT wrapper (+154 lines)
- ml/src/trainers/tft.rs: QAT training integration (+433 lines)
- ml/src/qat_metrics_exporter.rs: NEW - QAT metrics export

### QAT Testing
- ml/tests/qat_integration_tests.rs: NEW - Integration test suite
- ml/tests/qat_gradient_clipping_test.rs: NEW - Gradient clipping tests
- ml/tests/qat_device_consistency_test.rs: Device mismatch tests (+205 lines)
- ml/tests/qat_accuracy_validation_test.rs: Accuracy validation
- ml/tests/qat_tft_integration_test.rs: TFT QAT integration

### QAT Documentation
- ml/docs/QAT_GUIDE.md: Comprehensive QAT guide (+616 lines)
- ml/docs/QAT_GRADIENT_CHECKPOINTING_WORKAROUND.md: NEW - Workaround guide
- QAT_BLOCKERS_ROOT_CAUSE_ANALYSIS.md: P0 blocker analysis (44KB)
- QAT_ACCURACY_VALIDATION_REPORT.md: Accuracy comparison
- QAT_GRADIENT_CLIPPING_VALIDATION_REPORT.md: Clipping validation

### QAT Monitoring
- config/grafana/dashboards/qat-training-metrics.json: NEW - Grafana dashboard

## AWS CLI Configuration

### Credentials Setup
- ~/.aws/credentials: Runpod profile configured
  - Access Key: user_2xxA3XcIFj16yfL3aBon9niiSpr
  - Secret Key: (from RUNPOD_S3_SECRET)
- ~/.aws/config: Iceland region (eur-is-1)

## Production Readiness

### FP32 Models:  READY FOR DEPLOYMENT
- DQN: 15-20s training, ~6MB GPU memory
- PPO: 7-10s training, ~145MB GPU memory
- MAMBA-2: 2-3 min training, ~164MB GPU memory
- TFT-225: 3-5 min training, ~500MB GPU memory
- Total GPU Budget: 815MB (fits on 4GB+ Tesla V100)

### QAT Models: 🔴 BLOCKED
- 24 tests implemented but DO NOT COMPILE (11 errors)
- 3 P0 blockers: device mismatch, gradient checkpointing, OOM recovery
- Timeline: 1-2 weeks to fix (13h P0 fixes + validation)

### Wave D Features:  OPERATIONAL
- 225 features fully integrated
- Feature extraction: 5.10μs/bar (196x faster than target)
- Wave D backtest: Sharpe 2.00, Win Rate 60%, Drawdown 15%
- Database migration 045: Applied cleanly, zero conflicts

## Cost Analysis

### One-Time Setup
- Network Volume: $4/month (50GB SSD)
- Upload costs: FREE (S3 API included)

### Per Training Run (TFT-225)
- GPU: Tesla V100-PCIE-16GB @ $0.29/hr
- Training Time: ~4 hours
- Cost per run: $1.16

### Monthly (20 Training Runs)
- Storage: $4.00/month
- Training: $23.20/month (20 runs × $1.16)
- Total: $27.20/month

## Security

### Credentials Management
-  NO credentials in Docker image
-  NO credentials in Terraform state
-  .env gitignored and not committed
-  .env file private on S3 (HTTP 401 on public access)
-  Docker Hub repository PRIVATE (jgrusewski/foxhunt)

### Access Control
- S3 API: Local client uploads only
- Volume mount: Pod filesystem access only
- Authentication: AWS CLI with Runpod profile required

## Next Steps

1.  COMPLETE: Build Docker image
2.  PENDING: Push to Docker Hub
3.  PENDING: Deploy pod via Runpod console
4.  PENDING: Validate training on Tesla V100

## Performance Targets

- Build time: 5-10 min
- Upload time: ~20 sec (90MB total)
- Pod startup: ~30 sec
- Training time: 3-5 min (TFT-225)
- Total deployment: ~40 min from start to first training run

## Test Status

- FP32 tests: 597/608 passing (98.2%)
- QAT tests: 0/24 passing (compilation errors)
- Overall: 2,062/2,086 passing (98.8% excluding QAT)

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

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

741 lines
20 KiB
Rust

//! Validation edge cases tests for config package
//!
//! This test suite covers edge cases in validation logic for:
//! - Invalid configuration values
//! - Schema validation errors
//! - Environment override edge cases
//! - Configuration reload scenarios
use config::{
database::DatabaseConfig,
runtime::{
CacheRuntimeConfig, DatabaseRuntimeConfig, Environment, LimitsConfig, RuntimeConfig,
TimeoutConfig,
},
schemas::{AssetClassificationSchema, S3Config},
symbol_config::{AssetClassification, SymbolConfig},
vault::VaultConfig,
};
use std::time::Duration;
// ============================================================================
// Test Helper Functions
// ============================================================================
fn create_test_symbol_config() -> SymbolConfig {
SymbolConfig::new("TEST".to_string(), AssetClassification::Equity)
}
// ============================================================================
// Invalid Configuration Tests
// ============================================================================
#[test]
fn test_s3config_validate_empty_bucket_name_error() {
let config = S3Config {
bucket_name: String::new(),
region: "us-east-1".to_string(),
..S3Config::default()
};
let result = config.validate();
assert!(result.is_err());
assert_eq!(result.unwrap_err(), "S3 bucket name cannot be empty");
}
#[test]
fn test_s3config_validate_empty_region_error() {
let config = S3Config {
bucket_name: "my-bucket".to_string(),
region: String::new(),
..S3Config::default()
};
let result = config.validate();
assert!(result.is_err());
assert_eq!(result.unwrap_err(), "S3 region cannot be empty");
}
#[test]
fn test_s3config_validate_both_empty() {
let config = S3Config {
bucket_name: String::new(),
region: String::new(),
..S3Config::default()
};
let result = config.validate();
assert!(result.is_err());
// Should fail on bucket name first
assert!(result.unwrap_err().contains("bucket name"));
}
#[test]
fn test_s3config_whitespace_only_bucket() {
let config = S3Config {
bucket_name: " ".to_string(),
region: "us-east-1".to_string(),
..S3Config::default()
};
// Should still pass validation (only checks empty, not whitespace)
assert!(config.validate().is_ok());
}
#[test]
fn test_s3config_negative_timeout() {
let config = S3Config {
timeout: Duration::from_secs(0),
..S3Config::default()
};
// Zero timeout is technically valid
assert!(config.validate().is_ok());
}
#[test]
fn test_s3config_zero_max_retry_attempts() {
let config = S3Config {
max_retry_attempts: 0,
..S3Config::default()
};
// Zero retries is valid (no retries)
assert!(config.validate().is_ok());
}
#[test]
fn test_s3config_very_large_retry_attempts() {
let config = S3Config {
max_retry_attempts: u32::MAX,
..S3Config::default()
};
assert!(config.validate().is_ok());
}
#[test]
fn test_database_config_validate_empty_url() {
let config = DatabaseConfig {
url: String::new(),
..DatabaseConfig::default()
};
let result = config.validate();
assert!(result.is_err());
assert_eq!(result.unwrap_err(), "Database URL cannot be empty");
}
#[test]
fn test_database_config_validate_whitespace_url() {
let config = DatabaseConfig {
url: " ".to_string(),
..DatabaseConfig::default()
};
// Whitespace-only URL passes validation (only checks empty)
assert!(config.validate().is_ok());
}
#[test]
fn test_database_config_zero_max_connections() {
let config = DatabaseConfig {
max_connections: 0,
..DatabaseConfig::default()
};
// Zero connections is technically valid in struct
assert!(config.validate().is_ok());
}
#[test]
fn test_database_config_min_greater_than_max() {
let config = DatabaseConfig {
min_connections: 100,
max_connections: 10,
..DatabaseConfig::default()
};
// This logical error isn't caught by current validation
assert!(config.validate().is_ok());
}
#[test]
fn test_vault_config_validate_empty_url() {
let config = VaultConfig::new(
String::new(),
"test-token".to_string(),
"secret".to_string(),
);
let result = config.validate();
assert!(result.is_err());
assert_eq!(result.unwrap_err(), "Vault URL cannot be empty");
}
#[test]
fn test_vault_config_validate_empty_token() {
let config = VaultConfig::new(
"http://localhost:8200".to_string(),
String::new(),
"secret".to_string(),
);
let result = config.validate();
assert!(result.is_err());
assert_eq!(result.unwrap_err(), "Vault token cannot be empty");
}
#[test]
fn test_vault_config_validate_empty_mount_path() {
let config = VaultConfig::new(
"http://localhost:8200".to_string(),
"test-token".to_string(),
String::new(),
);
let result = config.validate();
assert!(result.is_err());
assert_eq!(result.unwrap_err(), "Vault mount path cannot be empty");
}
#[test]
fn test_vault_config_validate_all_empty() {
let config = VaultConfig::new(String::new(), String::new(), String::new());
let result = config.validate();
assert!(result.is_err());
// Should fail on URL first
assert!(result.unwrap_err().contains("URL"));
}
#[test]
fn test_symbol_config_validate_empty_symbol() {
let mut config = create_test_symbol_config();
config.symbol = String::new();
let result = config.validate();
assert!(result.is_err());
assert_eq!(result.unwrap_err(), "Symbol cannot be empty");
}
#[test]
fn test_symbol_config_validate_zero_tick_size() {
let mut config = create_test_symbol_config();
config.symbol = "BTCUSD".to_string();
config.tick_size = 0.0;
let result = config.validate();
assert!(result.is_err());
assert!(result.unwrap_err().contains("Tick size must be positive"));
}
#[test]
fn test_symbol_config_validate_negative_tick_size() {
let mut config = create_test_symbol_config();
config.symbol = "BTCUSD".to_string();
config.tick_size = -0.01;
let result = config.validate();
assert!(result.is_err());
assert!(result.unwrap_err().contains("Tick size must be positive"));
}
#[test]
fn test_symbol_config_validate_zero_lot_size() {
let mut config = create_test_symbol_config();
config.symbol = "BTCUSD".to_string();
config.lot_size = 0.0;
let result = config.validate();
assert!(result.is_err());
assert!(result.unwrap_err().contains("Lot size must be positive"));
}
#[test]
fn test_symbol_config_validate_negative_lot_size() {
let mut config = create_test_symbol_config();
config.symbol = "BTCUSD".to_string();
config.lot_size = -1.0;
let result = config.validate();
assert!(result.is_err());
assert!(result.unwrap_err().contains("Lot size must be positive"));
}
#[test]
fn test_symbol_config_validate_multiple_errors() {
let mut config = create_test_symbol_config();
config.symbol = String::new();
config.tick_size = -0.01;
config.lot_size = -1.0;
let result = config.validate();
assert!(result.is_err());
// Should fail on first error (empty symbol)
assert!(result.unwrap_err().contains("Symbol cannot be empty"));
}
// ============================================================================
// Runtime Config Validation Tests
// ============================================================================
#[test]
fn test_database_runtime_config_zero_query_timeout() {
let config = DatabaseRuntimeConfig {
query_timeout: Duration::from_millis(0),
..DatabaseRuntimeConfig::with_defaults(Environment::Development)
};
let result = config.validate();
assert!(result.is_err());
assert!(result
.unwrap_err()
.to_string()
.contains("Query timeout must be positive"));
}
#[test]
fn test_database_runtime_config_zero_pool_size() {
let config = DatabaseRuntimeConfig {
pool_size: 0,
..DatabaseRuntimeConfig::with_defaults(Environment::Development)
};
let result = config.validate();
assert!(result.is_err());
assert!(result
.unwrap_err()
.to_string()
.contains("Pool size must be positive"));
}
#[test]
fn test_database_runtime_config_pool_exceeds_max() {
let config = DatabaseRuntimeConfig {
pool_size: 100,
max_pool_size: 50,
..DatabaseRuntimeConfig::with_defaults(Environment::Development)
};
let result = config.validate();
assert!(result.is_err());
assert!(result
.unwrap_err()
.to_string()
.contains("Pool size cannot exceed max pool size"));
}
#[test]
fn test_database_runtime_config_pool_equals_max() {
let config = DatabaseRuntimeConfig {
pool_size: 50,
max_pool_size: 50,
..DatabaseRuntimeConfig::with_defaults(Environment::Development)
};
// Equal values should be valid
assert!(config.validate().is_ok());
}
#[test]
fn test_cache_runtime_config_zero_ttl() {
let config = CacheRuntimeConfig {
position_ttl: Duration::from_secs(0),
..CacheRuntimeConfig::with_defaults(Environment::Development)
};
let result = config.validate();
assert!(result.is_err());
assert!(result
.unwrap_err()
.to_string()
.contains("Position TTL must be positive"));
}
#[test]
fn test_cache_runtime_config_zero_var_ttl() {
let config = CacheRuntimeConfig {
var_ttl: Duration::from_secs(0),
..CacheRuntimeConfig::with_defaults(Environment::Development)
};
let result = config.validate();
assert!(result.is_err());
assert!(result
.unwrap_err()
.to_string()
.contains("VaR TTL must be positive"));
}
#[test]
fn test_timeout_config_zero_grpc_timeout() {
let config = TimeoutConfig {
grpc_connect_timeout: Duration::from_secs(0),
..TimeoutConfig::with_defaults(Environment::Development)
};
let result = config.validate();
assert!(result.is_err());
assert!(result
.unwrap_err()
.to_string()
.contains("gRPC connect timeout must be positive"));
}
#[test]
fn test_timeout_config_zero_max_connections() {
let config = TimeoutConfig {
max_concurrent_connections: 0,
..TimeoutConfig::with_defaults(Environment::Development)
};
let result = config.validate();
assert!(result.is_err());
assert!(result
.unwrap_err()
.to_string()
.contains("Max concurrent connections must be positive"));
}
#[test]
fn test_limits_config_zero_retry_attempts() {
let config = LimitsConfig {
retry_max_attempts: 0,
..LimitsConfig::with_defaults(Environment::Development)
};
let result = config.validate();
assert!(result.is_err());
assert!(result
.unwrap_err()
.to_string()
.contains("Retry max attempts must be positive"));
}
#[test]
fn test_limits_config_invalid_backoff_multiplier() {
let config = LimitsConfig {
retry_backoff_multiplier: 1.0,
..LimitsConfig::with_defaults(Environment::Development)
};
let result = config.validate();
assert!(result.is_err());
assert!(result
.unwrap_err()
.to_string()
.contains("Backoff multiplier must be > 1.0"));
}
#[test]
fn test_limits_config_backoff_multiplier_less_than_one() {
let config = LimitsConfig {
retry_backoff_multiplier: 0.5,
..LimitsConfig::with_defaults(Environment::Development)
};
let result = config.validate();
assert!(result.is_err());
assert!(result
.unwrap_err()
.to_string()
.contains("Backoff multiplier must be > 1.0"));
}
#[test]
fn test_limits_config_zero_ml_batch_size() {
let config = LimitsConfig {
ml_max_batch_size: 0,
..LimitsConfig::with_defaults(Environment::Development)
};
let result = config.validate();
assert!(result.is_err());
assert!(result
.unwrap_err()
.to_string()
.contains("ML max batch size must be positive"));
}
#[test]
fn test_limits_config_var_confidence_negative() {
let config = LimitsConfig {
risk_var_confidence: -0.1,
..LimitsConfig::with_defaults(Environment::Development)
};
let result = config.validate();
assert!(result.is_err());
assert!(result
.unwrap_err()
.to_string()
.contains("VaR confidence must be between 0.0 and 1.0"));
}
#[test]
fn test_limits_config_var_confidence_greater_than_one() {
let config = LimitsConfig {
risk_var_confidence: 1.5,
..LimitsConfig::with_defaults(Environment::Development)
};
let result = config.validate();
assert!(result.is_err());
assert!(result
.unwrap_err()
.to_string()
.contains("VaR confidence must be between 0.0 and 1.0"));
}
#[test]
fn test_limits_config_var_confidence_zero() {
let config = LimitsConfig {
risk_var_confidence: 0.0,
..LimitsConfig::with_defaults(Environment::Development)
};
// 0.0 is actually valid based on the validation logic (>= 0.0 && <= 1.0)
assert!(config.validate().is_ok());
}
#[test]
fn test_limits_config_var_confidence_one() {
let config = LimitsConfig {
risk_var_confidence: 1.0,
..LimitsConfig::with_defaults(Environment::Development)
};
// 1.0 is actually valid based on the validation logic (>= 0.0 && <= 1.0)
assert!(config.validate().is_ok());
}
#[test]
fn test_limits_config_var_confidence_edge_valid() {
let config = LimitsConfig {
risk_var_confidence: 0.99,
..LimitsConfig::with_defaults(Environment::Development)
};
assert!(config.validate().is_ok());
}
#[test]
fn test_runtime_config_validates_all_subconfigs() {
let mut config = RuntimeConfig::with_defaults(Environment::Development);
// Break database config
config.database.pool_size = 0;
let result = config.validate();
assert!(result.is_err());
assert!(result
.unwrap_err()
.to_string()
.contains("Pool size must be positive"));
}
// ============================================================================
// Schema Validation Tests
// ============================================================================
#[test]
fn test_asset_classification_empty_patterns() {
let schema = AssetClassificationSchema {
asset_type_rules: Default::default(),
default_sectors: Default::default(),
currency_patterns: Vec::new(),
crypto_patterns: Vec::new(),
};
// With no patterns, should fall back to default
let result = schema.classify_sector("BTCUSD", None);
assert_eq!(result, "Other");
}
#[test]
fn test_asset_classification_invalid_regex_pattern() {
let schema = AssetClassificationSchema {
asset_type_rules: Default::default(),
default_sectors: Default::default(),
currency_patterns: vec!["[invalid".to_string()], // Invalid regex
crypto_patterns: Vec::new(),
};
// Should not panic, should fallback to default
let result = schema.classify_sector("USDUSD", None);
assert_eq!(result, "Other");
}
#[test]
fn test_asset_classification_empty_instrument_id() {
let schema = AssetClassificationSchema::new();
let result = schema.classify_sector("", None);
assert_eq!(result, "Other");
}
#[test]
fn test_asset_classification_unknown_asset_type() {
let schema = AssetClassificationSchema::new();
let result = schema.classify_sector("UNKNOWN", Some("UNKNOWN_TYPE"));
assert_eq!(result, "Other");
}
#[test]
fn test_asset_classification_null_asset_type() {
let schema = AssetClassificationSchema::new();
let result = schema.classify_sector("BTCUSD", None);
// BTCUSD matches "USD" currency pattern first before checking crypto patterns
assert_eq!(result, "Currencies");
}
// ============================================================================
// Environment Override Tests
// ============================================================================
// Note: Environment detection tests are skipped because they modify global
// environment state which can interfere with other tests. The detect() logic
// is straightforward and tested in the runtime module's tests.
#[test]
#[ignore = "Skipped due to env var interference"]
fn test_environment_detect_production_variants() {
// These tests would need serial_test to run safely
// For now, we test the enum methods instead
}
#[test]
#[ignore = "Skipped due to env var interference"]
fn test_environment_detect_staging_variants() {
// These tests would need serial_test to run safely
}
#[test]
#[ignore = "Skipped due to env var interference"]
fn test_environment_detect_development_default() {
// These tests would need serial_test to run safely
}
#[test]
#[ignore = "Skipped due to env var interference"]
fn test_environment_detect_empty_string() {
// These tests would need serial_test to run safely
}
#[test]
fn test_environment_is_production() {
assert!(Environment::Production.is_production());
assert!(!Environment::Staging.is_production());
assert!(!Environment::Development.is_production());
}
#[test]
fn test_environment_is_development() {
assert!(Environment::Development.is_development());
assert!(!Environment::Staging.is_development());
assert!(!Environment::Production.is_development());
}
// ============================================================================
// Configuration Value Edge Cases
// ============================================================================
#[test]
fn test_s3config_extremely_long_bucket_name() {
let long_name = "a".repeat(1000);
let config = S3Config {
bucket_name: long_name,
..S3Config::default()
};
// Should pass validation (no length limit enforced)
assert!(config.validate().is_ok());
}
#[test]
fn test_s3config_special_characters_bucket_name() {
let config = S3Config {
bucket_name: "my-bucket_123.test".to_string(),
..S3Config::default()
};
assert!(config.validate().is_ok());
}
#[test]
fn test_s3config_unicode_bucket_name() {
let config = S3Config {
bucket_name: "测试-bucket".to_string(),
..S3Config::default()
};
// Should pass (validation doesn't check character set)
assert!(config.validate().is_ok());
}
#[test]
fn test_database_config_max_connections_u32_max() {
let config = DatabaseConfig {
max_connections: u32::MAX,
..DatabaseConfig::default()
};
assert!(config.validate().is_ok());
}
#[test]
fn test_database_config_very_long_url() {
let long_url = format!("postgresql://user:pass@{}/db", "a".repeat(1000));
let config = DatabaseConfig {
url: long_url,
..DatabaseConfig::default()
};
assert!(config.validate().is_ok());
}
#[test]
fn test_symbol_config_very_small_tick_size() {
let mut config = create_test_symbol_config();
config.symbol = "BTCUSD".to_string();
config.tick_size = f64::MIN_POSITIVE;
assert!(config.validate().is_ok());
}
#[test]
fn test_symbol_config_very_large_tick_size() {
let mut config = create_test_symbol_config();
config.symbol = "BTCUSD".to_string();
config.tick_size = f64::MAX;
assert!(config.validate().is_ok());
}
#[test]
fn test_runtime_config_development_defaults() {
let config = RuntimeConfig::with_defaults(Environment::Development);
assert!(config.validate().is_ok());
}
#[test]
fn test_runtime_config_staging_defaults() {
let config = RuntimeConfig::with_defaults(Environment::Staging);
assert!(config.validate().is_ok());
}
#[test]
fn test_runtime_config_production_defaults() {
let config = RuntimeConfig::with_defaults(Environment::Production);
assert!(config.validate().is_ok());
}
#[test]
fn test_runtime_config_serialization_roundtrip() {
let config = RuntimeConfig::with_defaults(Environment::Development);
let json = serde_json::to_string(&config).unwrap();
let deserialized: RuntimeConfig = serde_json::from_str(&json).unwrap();
assert!(deserialized.validate().is_ok());
}