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

Function test_parse_event_missing_session_id

atomic-agent/src/hooks/kilo.rs:533–539  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

531
532 #[test]
533 fn test_parse_event_missing_session_id() {
534 let hook = make_hook();
535 let input = br#"{"cwd": "/tmp"}"#;
536 let event = hook.parse_event(HookType::TurnStart, input).unwrap();
537 // Should generate a fallback session ID
538 assert!(event.session_id.starts_with("kilo-"));
539 }
540
541 #[test]
542 fn test_parse_event_empty_session_id() {

Callers

nothing calls this directly

Calls 3

make_hookFunction · 0.70
unwrapMethod · 0.45
parse_eventMethod · 0.45

Tested by

no test coverage detected