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/kiro.rs:554–560  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

552
553 #[test]
554 fn test_parse_event_missing_session_id() {
555 let hook = make_hook();
556 let input = br#"{"cwd": "/tmp"}"#;
557 let event = hook.parse_event(HookType::TurnStart, input).unwrap();
558 // Should generate a fallback session ID
559 assert!(event.session_id.starts_with("kiro-"));
560 }
561
562 // --- parse_event: empty session_id generates fallback ---
563

Callers

nothing calls this directly

Calls 3

make_hookFunction · 0.70
unwrapMethod · 0.45
parse_eventMethod · 0.45

Tested by

no test coverage detected