Files
optimclaw/tests/tool_schema_validation.rs
T
OutBack Dingo 6d9dbbb3b9 fork: rename IronClaw → OptimClaw
Full rename of all identifiers, filenames, and references:
  ironclaw → optimclaw
  IronClaw → OptimClaw
  IRONCLAW → OPTIMCLAW
  ironclaw_common → optimclaw_common
  ironclaw_safety → optimclaw_safety

Upstream: nearai/ironclaw
2026-03-29 06:27:52 +07:00

167 lines
5.5 KiB
Rust

//! Validates that all built-in tool schemas conform to OpenAI strict-mode rules.
//!
//! This catches the class of bugs where `required` keys aren't in `properties`,
//! properties are missing `type` (intentional freeform is allowed), or nested
//! objects/arrays are malformed.
//!
//! See: <https://github.com/nearai/optimclaw/issues/352> (QA plan, item 1.1)
use optimclaw::tools::validate_tool_schema;
use optimclaw::tools::{Tool, ToolRegistry};
/// Validate schemas of all tools registered via `register_builtin_tools()` and
/// `register_dev_tools()` (echo, time, json, http, shell, file tools).
///
/// These tools can be constructed without external dependencies (no DB, no
/// workspace, no extension manager). Tools requiring dependencies (memory, job,
/// skill, extension, routine) are validated individually below where test
/// construction helpers exist.
#[tokio::test]
async fn all_core_builtin_tool_schemas_are_valid() {
let registry = ToolRegistry::new();
registry.register_builtin_tools();
registry.register_dev_tools();
let tools = registry.all().await;
assert!(
!tools.is_empty(),
"registry should have tools after registration"
);
let mut all_errors = Vec::new();
for tool in &tools {
let schema = tool.parameters_schema();
let errors = validate_tool_schema(&schema, tool.name());
if !errors.is_empty() {
all_errors.push(format!(
"Tool '{}' has schema errors:\n {}",
tool.name(),
errors.join("\n ")
));
}
}
assert!(
all_errors.is_empty(),
"Tool schema validation failures:\n{}",
all_errors.join("\n\n")
);
}
/// Verify the exact set of tools registered by the core registration methods.
/// This guards against a new tool being added without schema validation coverage.
#[tokio::test]
async fn core_registration_covers_expected_tools() {
let registry = ToolRegistry::new();
registry.register_builtin_tools();
registry.register_dev_tools();
let mut names = registry.list().await;
names.sort();
let expected = &[
"apply_patch",
"echo",
"http",
"json",
"list_dir",
"read_file",
"shell",
"time",
"write_file",
];
assert_eq!(
names, expected,
"Core tool set changed. Update this test and ensure new tools have valid schemas."
);
}
/// Validate individual tool schemas that are known to use non-trivial patterns.
/// These are regression tests for specific bugs.
#[test]
fn json_tool_freeform_data_field_is_valid() {
// Regression: json tool's "data" field intentionally has no "type" for
// OpenAI compatibility (union types with arrays require "items").
let tool = optimclaw::tools::builtin::JsonTool;
let schema = tool.parameters_schema();
let errors = validate_tool_schema(&schema, "json");
assert!(errors.is_empty(), "json tool schema errors: {errors:?}");
// Verify the freeform pattern is still in place
let data = schema
.get("properties")
.and_then(|p| p.get("data"))
.expect("json tool should have 'data' property");
assert!(
data.get("type").is_none(),
"json.data should be freeform (no type) for OpenAI compatibility"
);
}
#[test]
fn http_tool_headers_array_is_valid() {
// Regression: http tool's "headers" is an array of {name, value} objects.
let tool = optimclaw::tools::builtin::HttpTool::new();
let schema = tool.parameters_schema();
let errors = validate_tool_schema(&schema, "http");
assert!(errors.is_empty(), "http tool schema errors: {errors:?}");
// Verify array structure
let headers = schema
.get("properties")
.and_then(|p| p.get("headers"))
.expect("http tool should have 'headers' property");
assert_eq!(
headers.get("type").and_then(|t| t.as_str()),
Some("array"),
"headers should be an array"
);
assert!(
headers.get("items").is_some(),
"headers array should have items defined"
);
}
#[test]
fn time_tool_schema_is_valid() {
let tool = optimclaw::tools::builtin::TimeTool;
let schema = tool.parameters_schema();
let errors = validate_tool_schema(&schema, "time");
assert!(errors.is_empty(), "time tool schema errors: {errors:?}");
}
#[test]
fn shell_tool_schema_is_valid() {
let tool = optimclaw::tools::builtin::ShellTool::new();
let schema = tool.parameters_schema();
let errors = validate_tool_schema(&schema, "shell");
assert!(errors.is_empty(), "shell tool schema errors: {errors:?}");
}
/// Validates that all core tools work correctly under a multi-threaded tokio runtime.
/// This catches sync-async boundary bugs like tokio::sync::RwLock::blocking_read()
/// panicking when called from within a multi-threaded runtime context.
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn all_core_tools_work_in_multi_thread_runtime() {
let registry = ToolRegistry::new();
registry.register_builtin_tools();
registry.register_dev_tools();
let tools = registry.all().await;
assert!(
!tools.is_empty(),
"registry should have tools after registration"
);
for tool in &tools {
// These sync trait methods must not panic in multi-thread runtime
let _ = tool.name();
let _ = tool.description();
let _ = tool.parameters_schema();
let _ = tool.requires_approval(&serde_json::json!({}));
let _ = tool.requires_sanitization();
let _ = tool.domain();
}
}