test(wfe-yaml): coverage pass to 90%+ and fix duration parsing bug

Added 51 tests: compiler hooks/parallel/error behavior (20),
validation error paths (15), shell integration tests (7),
lib.rs file loading (5), interpolation edge cases (4).

Fixed parse_duration_ms: "ms" suffix was unreachable because
strip_suffix('s') matched first. Now checks "ms" before "s".

Coverage: 40% → 90.3%. 326 total workspace tests.
This commit is contained in:
2026-03-25 21:42:26 +00:00
parent b89563af63
commit ce68e4beed
6 changed files with 1304 additions and 3 deletions

View File

@@ -75,3 +75,44 @@ merged:
assert!(result.contains("&default"));
assert!(result.contains("*default"));
}
#[test]
fn null_value_interpolated_as_null_string() {
let mut config = HashMap::new();
config.insert("val".to_string(), serde_json::Value::Null);
let result = interpolate("value: ((val))", &config).unwrap();
assert_eq!(result, "value: null");
}
#[test]
fn boolean_value_interpolated() {
let mut config = HashMap::new();
config.insert("flag".to_string(), serde_json::json!(true));
let result = interpolate("enabled: ((flag))", &config).unwrap();
assert_eq!(result, "enabled: true");
}
#[test]
fn nested_path_unresolved_segment_returns_error() {
let mut config = HashMap::new();
config.insert(
"config".to_string(),
serde_json::json!({"database": {"host": "localhost"}}),
);
let result = interpolate("port: ((config.database.port))", &config);
assert!(result.is_err());
let err = result.unwrap_err().to_string();
assert!(err.contains("config.database.port"));
}
#[test]
fn numeric_value_interpolated() {
let mut config = HashMap::new();
config.insert("count".to_string(), serde_json::json!(42));
let result = interpolate("count: ((count))", &config).unwrap();
assert_eq!(result, "count: 42");
}