Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions codex-rs/core/src/tools/spec_plan_model_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ async fn search_tool_description_falls_back_to_connector_name_without_descriptio
}

#[tokio::test]
async fn test_mcp_tool_property_missing_type_defaults_to_string() {
async fn test_mcp_tool_property_missing_type_defaults_to_empty_schema() {
let config = test_config().await;
let model_info = construct_model_info_offline("gpt-5.4", &config);
let mut features = Features::with_defaults();
Expand Down Expand Up @@ -950,10 +950,7 @@ async fn test_mcp_tool_property_missing_type_defaults_to_string() {
name: "search".to_string(),
parameters: JsonSchema::object(
/*properties*/
BTreeMap::from([(
"query".to_string(),
JsonSchema::string(Some("search query".to_string())),
)]),
BTreeMap::from([("query".to_string(), JsonSchema::default())]),
/*required*/ None,
/*additional_properties*/ None
),
Expand Down
5 changes: 1 addition & 4 deletions codex-rs/tools/src/dynamic_tool_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@ fn parse_dynamic_tool_sanitizes_input_schema() {
name: "lookup_ticket".to_string(),
description: "Fetch a ticket".to_string(),
input_schema: JsonSchema::object(
BTreeMap::from([(
"id".to_string(),
JsonSchema::string(Some("Ticket identifier".to_string()),),
)]),
BTreeMap::from([("id".to_string(), JsonSchema::default(),)]),
/*required*/ None,
/*additional_properties*/ None
),
Expand Down
4 changes: 3 additions & 1 deletion codex-rs/tools/src/json_schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ pub fn parse_tool_input_schema(input_schema: &JsonValue) -> Result<JsonSchema, s
/// - Collapses `const` into single-value `enum`.
/// - Fills required child fields for object/array schema types, including
/// nullable unions, with permissive defaults when absent.
/// - Coerces object schemas with no recognized schema hints into `{}`.
fn sanitize_json_schema(value: &mut JsonValue) {
match value {
JsonValue::Bool(_) => {
Expand Down Expand Up @@ -228,7 +229,8 @@ fn sanitize_json_schema(value: &mut JsonValue) {
{
schema_types.push(JsonSchemaPrimitiveType::Number);
} else {
schema_types.push(JsonSchemaPrimitiveType::String);
map.clear();
return;
}
}

Expand Down
82 changes: 73 additions & 9 deletions codex-rs/tools/src/json_schema_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ fn parse_tool_input_schema_infers_object_shape_and_defaults_properties() {
//
// Expected normalization behavior:
// - `properties` implies an object schema when `type` is omitted.
// - The child property keeps its description and defaults to a string type.
// - The child property has no recognized schema hints, so it is coerced to
// an empty permissive schema.
let schema = parse_tool_input_schema(&serde_json::json!({
"properties": {
"query": {"description": "search query"}
Expand All @@ -45,16 +46,33 @@ fn parse_tool_input_schema_infers_object_shape_and_defaults_properties() {
assert_eq!(
schema,
JsonSchema::object(
BTreeMap::from([(
"query".to_string(),
JsonSchema::string(Some("search query".to_string())),
)]),
BTreeMap::from([("query".to_string(), JsonSchema::default())]),
/*required*/ None,
/*additional_properties*/ None
)
);
}

#[test]
fn parse_tool_input_schema_coerces_unrecognized_object_schema_to_empty_schema() {
// Example schema shape:
// {
// "description": "Ticket identifier",
// "title": "Ticket ID"
// }
//
// Expected normalization behavior:
// - Object schemas with no recognized schema hints are treated as
// malformed and coerced to the empty permissive schema.
let schema = parse_tool_input_schema(&serde_json::json!({
"description": "Ticket identifier",
"title": "Ticket ID"
}))
.expect("parse schema");

assert_eq!(schema, JsonSchema::default());
}

#[test]
fn parse_tool_input_schema_preserves_integer_and_defaults_array_items() {
// Example schema shape:
Expand Down Expand Up @@ -250,16 +268,62 @@ fn parse_tool_input_schema_infers_string_from_enum_const_and_format_keywords() {
}

#[test]
fn parse_tool_input_schema_defaults_empty_schema_to_string() {
fn parse_tool_input_schema_preserves_empty_schema() {
// Example schema shape:
// {}
//
// Expected normalization behavior:
// - With no structural hints at all, the normalizer falls back to a
// permissive string schema.
// - An empty JSON Schema is already a valid permissive schema, so it stays
// empty rather than being rewritten as an object schema.
let schema = parse_tool_input_schema(&serde_json::json!({})).expect("parse schema");

assert_eq!(schema, JsonSchema::string(/*description*/ None));
assert_eq!(schema, JsonSchema::default());
}

#[test]
fn parse_tool_input_schema_preserves_nested_empty_schema() {
// Example schema shape:
// {
// "type": "object",
// "properties": {
// "metadata": {
// "properties": {
// "extra": {}
// }
// }
// }
// }
//
// Expected normalization behavior:
// - The sanitizer recurses through nested object properties.
// - The innermost `extra` field is an empty JSON Schema and stays empty.
let schema = parse_tool_input_schema(&serde_json::json!({
"type": "object",
"properties": {
"metadata": {
"properties": {
"extra": {}
}
}
}
}))
.expect("parse schema");

assert_eq!(
schema,
JsonSchema::object(
BTreeMap::from([(
"metadata".to_string(),
JsonSchema::object(
BTreeMap::from([("extra".to_string(), JsonSchema::default())]),
/*required*/ None,
/*additional_properties*/ None,
)
)]),
/*required*/ None,
/*additional_properties*/ None,
)
);
}

#[test]
Expand Down
Loading