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

Function test_parse_stop_session_end_fire

atomic-agent/src/hooks/grok.rs:587–596  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

585
586 #[test]
587 fn test_parse_stop_session_end_fire() {
588 let hook = make_hook();
589 let input = br#"{"sessionId": "s1", "reason": "channel_closed"}"#;
590 let event = hook.parse_event(HookType::TurnEnd, input).unwrap();
591 let raw = event.raw_json.unwrap();
592 assert_eq!(
593 raw.get("finish_reason").and_then(Value::as_str),
594 Some("session-end")
595 );
596 }
597
598 #[test]
599 fn test_parse_pre_tool_use() {

Callers

nothing calls this directly

Calls 3

make_hookFunction · 0.70
unwrapMethod · 0.45
parse_eventMethod · 0.45

Tested by

no test coverage detected