()
| 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 |
nothing calls this directly
no test coverage detected