shep_core/protocol/
frame.rs1use serde::{Deserialize, Serialize};
12
13use crate::protocol::{BusEvent, Reply};
14
15#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
21#[serde(untagged)]
22#[non_exhaustive]
25pub enum ServerFrame {
26 Reply(Reply),
28 Event(BusEvent),
30}
31
32#[cfg(test)]
33mod tests {
34 use super::*;
35 use crate::protocol::{
36 BusEvent, ProcessEventKind, ProcessInfo, Reply, Response, RpcError, RpcErrorCode,
37 encode_frame,
38 };
39 use crate::status::ProcStatus;
40
41 fn sample_reply() -> Reply {
42 Reply {
43 id: 7,
44 result: Ok(Response::Pong),
45 }
46 }
47
48 fn sample_event() -> BusEvent {
49 BusEvent::Process {
50 event: ProcessEventKind::Online,
51 info: ProcessInfo {
52 id: 3,
53 name: "web".to_string(),
54 status: ProcStatus::Online,
55 pid: Some(4242),
56 restarts: 0,
57 uptime_ms: 0,
58 fold: None,
59 out_file: Some("/home/ada/.shep/logs/web-0-out.log".to_string()),
60 err_file: Some("/home/ada/.shep/logs/web-0-err.log".to_string()),
61 cpu_percent: None,
62 memory_bytes: None,
63 dog: None,
64 lambs: None,
65 last_exit: None,
66 smit: None,
67 instance: None,
68 handshook: None,
69 dog_stale: None,
70 pending: None,
71 overridden: None,
72 },
73 manually: false,
74 at_ms: 1_700_000_000_000,
75 }
76 }
77
78 #[test]
79 fn server_frame_decodes_both_directions_of_the_stream() {
80 let reply = r#"{"id":1,"result":{"Ok":{"kind":"pong"}}}"#;
83 assert!(matches!(
84 serde_json::from_str::<ServerFrame>(reply).unwrap(),
85 ServerFrame::Reply(Reply { id: 1, .. })
86 ));
87 let event = r#"{"event":"log_out","data":{"id":3,"line":"ready"}}"#;
88 assert!(matches!(
89 serde_json::from_str::<ServerFrame>(event).unwrap(),
90 ServerFrame::Event(BusEvent::LogOut { id: 3, .. })
91 ));
92 }
93
94 #[test]
95 fn server_frame_is_byte_identical_to_its_payload() {
96 let reply = sample_reply();
99 assert_eq!(
100 encode_frame(&ServerFrame::Reply(reply.clone())).unwrap(),
101 encode_frame(&reply).unwrap()
102 );
103 let event = sample_event();
104 assert_eq!(
105 encode_frame(&ServerFrame::Event(event.clone())).unwrap(),
106 encode_frame(&event).unwrap()
107 );
108 }
109
110 #[test]
111 fn an_error_reply_still_decodes_as_a_reply_frame() {
112 let err = Reply {
113 id: 2,
114 result: Err(RpcError {
115 code: RpcErrorCode::DeadlineExceeded,
116 message: "request deadline of 5000 ms expired".to_string(),
117 daemon_version: None,
118 }),
119 };
120 let json = serde_json::to_string(&err).unwrap();
121 assert_eq!(
122 serde_json::from_str::<ServerFrame>(&json).unwrap(),
123 ServerFrame::Reply(err)
124 );
125 }
126}