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

Function test_validate_session_id_too_long

atomic-agent/src/turn/session.rs:1041–1045  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1039
1040 #[test]
1041 fn test_validate_session_id_too_long() {
1042 let long_id = "a".repeat(256);
1043 let err = validate_session_id(&long_id).unwrap_err();
1044 assert!(matches!(err, AgentError::SessionIdInvalid { .. }));
1045 }
1046
1047 // SessionStore: save / load
1048

Callers

nothing calls this directly

Calls 1

validate_session_idFunction · 0.85

Tested by

no test coverage detected