1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
use super::common::wire_header_1_0::WireHeader as Raw;
use super::request::RequestHeader;
use super::ResponseStatus;
use super::Result;
use log::error;
use std::convert::{TryFrom, TryInto};
use std::io::{Read, Write};
mod response_body;
mod response_header;
pub use response_body::ResponseBody;
pub use response_header::ResponseHeader;
#[cfg(feature = "testing")]
pub use super::common::wire_header_1_0::WireHeader as RawHeader;
#[derive(PartialEq, Debug)]
pub struct Response {
pub header: ResponseHeader,
pub body: ResponseBody,
}
impl Response {
fn new() -> Response {
Response {
header: ResponseHeader::new(),
body: ResponseBody::new(),
}
}
pub fn from_request_header(header: RequestHeader, status: ResponseStatus) -> Response {
let mut response = Response::new();
response.header = header.into();
response.header.status = status;
response
}
pub fn from_status(status: ResponseStatus) -> Response {
let mut response = Response::new();
response.header.status = status;
response
}
pub fn write_to_stream(self, stream: &mut impl Write) -> Result<()> {
let mut raw_header: Raw = self.header.into();
raw_header.body_len = u32::try_from(self.body.len())?;
raw_header.write_to_stream(stream)?;
self.body.write_to_stream(stream)?;
Ok(())
}
pub fn read_from_stream(stream: &mut impl Read, body_len_limit: usize) -> Result<Response> {
let raw_header = Raw::read_from_stream(stream)?;
let body_len = usize::try_from(raw_header.body_len)?;
if body_len > body_len_limit {
error!(
"Request body length ({}) bigger than the limit given ({}).",
body_len, body_len_limit
);
return Err(ResponseStatus::BodySizeExceedsLimit);
}
let body = ResponseBody::read_from_stream(stream, body_len)?;
Ok(Response {
header: raw_header.try_into()?,
body,
})
}
}
#[cfg(test)]
mod tests {
use super::super::utils::tests as test_utils;
use super::super::{BodyType, Opcode, ProviderID, ResponseStatus};
use super::*;
#[test]
fn response_to_stream() {
let mut mock = test_utils::MockReadWrite { buffer: Vec::new() };
let response = get_response();
response
.write_to_stream(&mut mock)
.expect("Failed to write response");
assert_eq!(mock.buffer, get_response_bytes());
}
#[test]
fn stream_to_response() {
let mut mock = test_utils::MockReadWrite {
buffer: get_response_bytes(),
};
let response =
Response::read_from_stream(&mut mock, 1000).expect("Failed to read response");
assert_eq!(response, get_response());
}
#[test]
#[should_panic(expected = "Failed to read response")]
fn failed_read() {
let mut fail_mock = test_utils::MockFailReadWrite;
let _ = Response::read_from_stream(&mut fail_mock, 1000).expect("Failed to read response");
}
#[test]
#[should_panic(expected = "Response body too large")]
fn body_too_large() {
let mut mock = test_utils::MockReadWrite {
buffer: get_response_bytes(),
};
let _ = Response::read_from_stream(&mut mock, 0).expect("Response body too large");
}
#[test]
#[should_panic(expected = "Failed to write response")]
fn failed_write() {
let response: Response = get_response();
let mut fail_mock = test_utils::MockFailReadWrite;
response
.write_to_stream(&mut fail_mock)
.expect("Failed to write response");
}
#[test]
fn wrong_version() {
let mut mock = test_utils::MockReadWrite {
buffer: get_response_bytes(),
};
mock.buffer[6] = 0xFF;
mock.buffer[7] = 0xFF;
let response_status =
Response::read_from_stream(&mut mock, 1000).expect_err("Should have failed.");
assert_eq!(
response_status,
ResponseStatus::WireProtocolVersionNotSupported
);
}
fn get_response() -> Response {
let body = ResponseBody::from_bytes(vec![0x70, 0x80, 0x90]);
let header = ResponseHeader {
provider: ProviderID::Core,
session: 0x11_22_33_44_55_66_77_88,
content_type: BodyType::Protobuf,
opcode: Opcode::Ping,
status: ResponseStatus::Success,
};
Response { header, body }
}
fn get_response_bytes() -> Vec<u8> {
vec![
0x10, 0xA7, 0xC0, 0x5E, 0x1e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x88, 0x77, 0x66,
0x55, 0x44, 0x33, 0x22, 0x11, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00,
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x80, 0x90,
]
}
}