MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / test_parse_post_tool_use_error

Function test_parse_post_tool_use_error

atomic-agent/src/hooks/agy.rs:563–570  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

561
562 #[test]
563 fn test_parse_post_tool_use_error() {
564 let hook = make_hook();
565 let input = br#"{"conversationId": "ec33ebf9", "stepIdx": 7, "error": "exit status 1"}"#;
566 let event = hook.parse_event(HookType::PostToolUse, input).unwrap();
567 assert_eq!(event.tool_use_id.as_deref(), Some("7"));
568 let raw = event.raw_json.unwrap();
569 assert_eq!(raw.get("status").and_then(Value::as_str), Some("error"));
570 }
571
572 #[test]
573 fn test_parse_missing_conversation_id_defaults_unknown() {

Callers

nothing calls this directly

Calls 3

make_hookFunction · 0.70
unwrapMethod · 0.45
parse_eventMethod · 0.45

Tested by

no test coverage detected