grok-build-upstream-mirror/crates/codegen/xai-grok-tools-api/tests/wire_shape.rs

150 lines
5.3 KiB
Rust
Raw Normal View History

//! Serde wire-shape pin tests.
//!
//! `ToolConfigEntry` is serialized into session-bind metadata and backend
//! JSONB config storage. These tests pin the exact JSON shape so a
//! field rename/retype in `grok-tools.proto` cannot silently break those
//! wire contracts (the producer and consumer live in separate services).
use xai_grok_tools_api::ToolConfigEntry;
fn full_entry() -> ToolConfigEntry {
ToolConfigEntry {
id: "GrokBuild:grep".to_owned(),
params_json: Some(r#"{"max_results":50}"#.to_owned()),
name_override: Some("search".to_owned()),
params_name_overrides: std::collections::HashMap::from([(
"pattern".to_owned(),
"query".to_owned(),
)]),
behavior_version: Some("legacy-0.4.10".to_owned()),
description_override: Some("Search the codebase".to_owned()),
}
}
Synced from monorepo Synced from monorepo Changes: - Workspace server: report `/ready` as failed with dwell on hub connect failure - Refresh OIDC token for the Grok agent in the shell - ACP terminal output recorder - Cross-platform provider auth commands in the shell - Default `/resume` to Grok sessions with a hint for hidden external sessions - Resume sessions by title with `--resume` - Limit app-builder archive size - Data-driven tag labels for slash commands - Doctor fixes for tmux - Custom provider gateways and subprocess environment policy in the shell - `/tutorial` — opt-in onboarding tour of Grok Build - Soft and required CLI version checks in the shell - Privacy banner env overrides survive live settings updates - Add remote flag to override the image-edit model - Return profile fields from auth info even when the access token is expired - Add edit control on queued prompt rows - Keep fail-closed policy when clearing orphans with no team - Setting to disable the Ctrl+Space/F8 voice shortcut - Pass `--raw` to pw-record so Linux dictation works on older PipeWire - Validate git URLs when adding marketplace entries - Stop shipping stale tool-doc parameter and tool names - Re-point dashboard attach after `/fork` only when the parent was attached - Surface Grok Computer media-generation results as file-path chunks - Clear web background-task tray on kill and keep the task description - Show privacy upsell banner in agent view until acted on - Add tools-server client callback surface - Protect persistent global hook sources Source-Revision: 95d84f443eddcbed6cbfd6eed22e2eafe6b3939d
2026-07-23 17:12:33 +00:00
fn finalize_request_minimal() -> xai_grok_tools_api::FinalizeToolServerConfigRequest {
xai_grok_tools_api::FinalizeToolServerConfigRequest {
tools: vec![],
truncation: None,
system_reminders_enabled: false,
initial_tool_state_json: None,
behavior_preset: None,
client_callback_addr: None,
session_id: None,
client_callback_secret: None,
}
}
#[test]
fn tool_config_entry_serializes_to_pinned_json_shape() {
let value = serde_json::to_value(full_entry()).expect("serialize");
assert_eq!(
value,
serde_json::json!({
"id": "GrokBuild:grep",
"params_json": "{\"max_results\":50}",
"name_override": "search",
"params_name_overrides": {"pattern": "query"},
"behavior_version": "legacy-0.4.10",
"description_override": "Search the codebase",
})
);
}
#[test]
fn tool_config_entry_round_trips() {
let entry = full_entry();
let json = serde_json::to_string(&entry).expect("serialize");
let back: ToolConfigEntry = serde_json::from_str(&json).expect("deserialize");
assert_eq!(back, entry);
}
#[test]
fn minimal_entry_deserializes_from_id_only() {
// Consumers must accept sparse payloads: optional fields absent, map empty.
let back: ToolConfigEntry =
serde_json::from_value(serde_json::json!({"id": "GrokBuild:read_file"}))
.expect("deserialize minimal");
assert_eq!(back.id, "GrokBuild:read_file");
assert_eq!(back.params_json, None);
assert_eq!(back.name_override, None);
assert!(back.params_name_overrides.is_empty());
assert_eq!(back.behavior_version, None);
assert_eq!(back.description_override, None);
}
#[test]
fn missing_id_fails_to_deserialize() {
// `id` is the only required field: a payload without it must be rejected
// instead of silently deserializing with an empty id.
let result: Result<ToolConfigEntry, _> =
serde_json::from_value(serde_json::json!({"name_override": "search"}));
assert!(result.is_err(), "payload without `id` must be rejected");
}
#[test]
fn explicit_null_optional_fields_deserialize_as_none() {
// `#[serde(default)]` covers *absent* keys; explicit `null` is handled by
// the `Option` fields themselves. Pin that both shapes are accepted.
let back: ToolConfigEntry = serde_json::from_value(serde_json::json!({
"id": "GrokBuild:read_file",
"params_json": null,
"name_override": null,
"behavior_version": null,
"description_override": null,
}))
.expect("deserialize explicit nulls");
assert_eq!(back.params_json, None);
assert_eq!(back.name_override, None);
assert_eq!(back.behavior_version, None);
assert_eq!(back.description_override, None);
}
#[test]
fn explicit_null_map_is_rejected() {
// The map field is not `Option`-typed: `null` is not coerced to an empty
// map. Producers must omit the key or emit `{}`. Pin the rejection so a
// codegen change that silently starts accepting `null` is caught.
let result: Result<ToolConfigEntry, _> = serde_json::from_value(serde_json::json!({
"id": "GrokBuild:read_file",
"params_name_overrides": null,
}));
assert!(
result.is_err(),
"null params_name_overrides must be rejected (omit the key or send {{}})"
);
}
Synced from monorepo Synced from monorepo Changes: - Workspace server: report `/ready` as failed with dwell on hub connect failure - Refresh OIDC token for the Grok agent in the shell - ACP terminal output recorder - Cross-platform provider auth commands in the shell - Default `/resume` to Grok sessions with a hint for hidden external sessions - Resume sessions by title with `--resume` - Limit app-builder archive size - Data-driven tag labels for slash commands - Doctor fixes for tmux - Custom provider gateways and subprocess environment policy in the shell - `/tutorial` — opt-in onboarding tour of Grok Build - Soft and required CLI version checks in the shell - Privacy banner env overrides survive live settings updates - Add remote flag to override the image-edit model - Return profile fields from auth info even when the access token is expired - Add edit control on queued prompt rows - Keep fail-closed policy when clearing orphans with no team - Setting to disable the Ctrl+Space/F8 voice shortcut - Pass `--raw` to pw-record so Linux dictation works on older PipeWire - Validate git URLs when adding marketplace entries - Stop shipping stale tool-doc parameter and tool names - Re-point dashboard attach after `/fork` only when the parent was attached - Surface Grok Computer media-generation results as file-path chunks - Clear web background-task tray on kill and keep the task description - Show privacy upsell banner in agent view until acted on - Add tools-server client callback surface - Protect persistent global hook sources Source-Revision: 95d84f443eddcbed6cbfd6eed22e2eafe6b3939d
2026-07-23 17:12:33 +00:00
#[test]
fn finalize_request_callback_fields_are_optional_and_snake_case() {
let mut req = finalize_request_minimal();
req.client_callback_addr = Some("http://127.0.0.1:50051".to_owned());
req.session_id = Some("session-123".to_owned());
req.client_callback_secret = Some("secret-123".to_owned());
let value = serde_json::to_value(&req).expect("serialize");
assert_eq!(
value.get("client_callback_addr"),
Some(&serde_json::json!("http://127.0.0.1:50051"))
);
assert_eq!(
value.get("session_id"),
Some(&serde_json::json!("session-123"))
);
assert_eq!(
value.get("client_callback_secret"),
Some(&serde_json::json!("secret-123"))
);
}
#[test]
fn finalize_request_callback_fields_default_when_absent() {
let back: xai_grok_tools_api::FinalizeToolServerConfigRequest =
serde_json::from_value(serde_json::json!({
"tools": [],
"system_reminders_enabled": false,
}))
.expect("deserialize sparse finalize request");
assert_eq!(back.client_callback_addr, None);
assert_eq!(back.session_id, None);
assert_eq!(back.client_callback_secret, None);
}