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

Function test_parse_event_invalid_json

atomic-agent/src/hooks/kiro.rs:538–546  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

536
537 #[test]
538 fn test_parse_event_invalid_json() {
539 let hook = make_hook();
540 let result = hook.parse_event(HookType::TurnStart, b"not json");
541 assert!(result.is_err());
542 assert!(matches!(
543 result.unwrap_err(),
544 AgentError::HookParseFailed { .. }
545 ));
546 }
547
548 // --- parse_event: missing session_id generates fallback ---
549

Callers

nothing calls this directly

Calls 2

make_hookFunction · 0.70
parse_eventMethod · 0.45

Tested by

no test coverage detected