()
| 1095 | |
| 1096 | #[test] |
| 1097 | fn test_validate_session_id_too_long() { |
| 1098 | let long_id = "a".repeat(256); |
| 1099 | let err = validate_session_id(&long_id).unwrap_err(); |
| 1100 | assert!(matches!(err, AgentError::SessionIdInvalid { .. })); |
| 1101 | } |
| 1102 | |
| 1103 | // SessionStore: save / load |
| 1104 |
nothing calls this directly
no test coverage detected