author | alfadur |
Fri, 13 Jul 2018 19:52:19 +0300 | |
changeset 13525 | 1ee192f13456 |
parent 13483 | d79795acaa73 |
child 13529 | 5359ff75da3a |
permissions | -rw-r--r-- |
13436
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
1 |
/** The parsers for the chat and multiplayer protocol. The main parser is `message`. |
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
2 |
* # Protocol |
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
3 |
* All messages consist of `\n`-separated strings. The end of a message is |
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
4 |
* indicated by a double newline - `\n\n`. |
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
5 |
* |
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
6 |
* For example, a nullary command like PING will be actually sent as `PING\n\n`. |
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
7 |
* A unary command, such as `START_GAME nick` will be actually sent as `START_GAME\nnick\n\n`. |
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
8 |
*/ |
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
9 |
|
12138 | 10 |
use nom::*; |
11 |
||
13421 | 12 |
use std::{ |
13 |
str, str::FromStr, |
|
14 |
ops::Range |
|
15 |
}; |
|
16 |
use super::{ |
|
17 |
messages::{HWProtocolMessage, HWProtocolMessage::*}, |
|
18 |
test::gen_proto_msg |
|
19 |
}; |
|
13424 | 20 |
use server::coretypes::{ |
13483 | 21 |
HedgehogInfo, TeamInfo, GameCfg, VoteType |
13424 | 22 |
}; |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
23 |
|
12138 | 24 |
named!(end_of_message, tag!("\n\n")); |
12147
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12145
diff
changeset
|
25 |
named!(str_line<&[u8], &str>, map_res!(not_line_ending, str::from_utf8)); |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12145
diff
changeset
|
26 |
named!( a_line<&[u8], String>, map!(str_line, String::from)); |
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12145
diff
changeset
|
27 |
named!( u8_line<&[u8], u8>, map_res!(str_line, FromStr::from_str)); |
13525 | 28 |
named!(u16_line<&[u8], u16>, map_res!(str_line, FromStr::from_str)); |
12147
4d7d41be1993
Start refactoring path from getting message from client to reacting to it
unc0rr
parents:
12145
diff
changeset
|
29 |
named!(u32_line<&[u8], u32>, map_res!(str_line, FromStr::from_str)); |
13483 | 30 |
named!(yes_no_line<&[u8], bool>, alt!( |
31 |
do_parse!(tag_no_case!("YES") >> (true)) |
|
32 |
| do_parse!(tag_no_case!("NO") >> (false)))); |
|
13443 | 33 |
named!(opt_param<&[u8], Option<String> >, alt!( |
34 |
do_parse!(peek!(tag!("\n\n")) >> (None)) |
|
35 |
| do_parse!(tag!("\n") >> s: str_line >> (Some(s.to_string()))))); |
|
13437 | 36 |
named!(spaces<&[u8], &[u8]>, preceded!(tag!(" "), eat_separator!(" "))); |
13443 | 37 |
named!(opt_space_param<&[u8], Option<String> >, alt!( |
38 |
do_parse!(peek!(tag!("\n\n")) >> (None)) |
|
39 |
| do_parse!(spaces >> s: str_line >> (Some(s.to_string()))))); |
|
13424 | 40 |
named!(hog_line<&[u8], HedgehogInfo>, |
41 |
do_parse!(name: str_line >> eol >> hat: str_line >> |
|
42 |
(HedgehogInfo{name: name.to_string(), hat: hat.to_string()}))); |
|
43 |
named!(_8_hogs<&[u8], [HedgehogInfo; 8]>, |
|
44 |
do_parse!(h1: hog_line >> eol >> h2: hog_line >> eol >> |
|
45 |
h3: hog_line >> eol >> h4: hog_line >> eol >> |
|
46 |
h5: hog_line >> eol >> h6: hog_line >> eol >> |
|
47 |
h7: hog_line >> eol >> h8: hog_line >> |
|
48 |
([h1, h2, h3, h4, h5, h6, h7, h8]))); |
|
13483 | 49 |
named!(voting<&[u8], VoteType>, alt!( |
50 |
do_parse!(tag_no_case!("KICK") >> spaces >> n: a_line >> |
|
51 |
(VoteType::Kick(n))) |
|
52 |
| do_parse!(tag_no_case!("MAP") >> |
|
53 |
n: opt!(preceded!(spaces, a_line)) >> |
|
54 |
(VoteType::Map(n))) |
|
55 |
| do_parse!(tag_no_case!("PAUSE") >> |
|
56 |
(VoteType::Pause)) |
|
57 |
| do_parse!(tag_no_case!("NEWSEED") >> |
|
58 |
(VoteType::NewSeed)) |
|
59 |
| do_parse!(tag_no_case!("HEDGEHOGS") >> spaces >> n: u8_line >> |
|
60 |
(VoteType::HedgehogsPerTeam(n))))); |
|
12139 | 61 |
|
13436
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
62 |
/** Recognizes messages which do not take any parameters */ |
12138 | 63 |
named!(basic_message<&[u8], HWProtocolMessage>, alt!( |
12140 | 64 |
do_parse!(tag!("PING") >> (Ping)) |
12138 | 65 |
| do_parse!(tag!("PONG") >> (Pong)) |
66 |
| do_parse!(tag!("LIST") >> (List)) |
|
12140 | 67 |
| do_parse!(tag!("BANLIST") >> (BanList)) |
12138 | 68 |
| do_parse!(tag!("GET_SERVER_VAR") >> (GetServerVar)) |
12140 | 69 |
| do_parse!(tag!("TOGGLE_READY") >> (ToggleReady)) |
70 |
| do_parse!(tag!("START_GAME") >> (StartGame)) |
|
13428 | 71 |
| do_parse!(tag!("ROUNDFINISHED") >> m: opt_param >> (RoundFinished)) |
12140 | 72 |
| do_parse!(tag!("TOGGLE_RESTRICT_JOINS") >> (ToggleRestrictJoin)) |
73 |
| do_parse!(tag!("TOGGLE_RESTRICT_TEAMS") >> (ToggleRestrictTeams)) |
|
12138 | 74 |
| do_parse!(tag!("TOGGLE_REGISTERED_ONLY") >> (ToggleRegisteredOnly)) |
75 |
)); |
|
76 |
||
13436
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
77 |
/** Recognizes messages which take exactly one parameter */ |
12138 | 78 |
named!(one_param_message<&[u8], HWProtocolMessage>, alt!( |
12140 | 79 |
do_parse!(tag!("NICK") >> eol >> n: a_line >> (Nick(n))) |
80 |
| do_parse!(tag!("INFO") >> eol >> n: a_line >> (Info(n))) |
|
81 |
| do_parse!(tag!("CHAT") >> eol >> m: a_line >> (Chat(m))) |
|
13421 | 82 |
| do_parse!(tag!("PART") >> msg: opt_param >> (Part(msg))) |
12140 | 83 |
| do_parse!(tag!("FOLLOW") >> eol >> n: a_line >> (Follow(n))) |
84 |
| do_parse!(tag!("KICK") >> eol >> n: a_line >> (Kick(n))) |
|
85 |
| do_parse!(tag!("UNBAN") >> eol >> n: a_line >> (Unban(n))) |
|
86 |
| do_parse!(tag!("EM") >> eol >> m: a_line >> (EngineMessage(m))) |
|
87 |
| do_parse!(tag!("TEAMCHAT") >> eol >> m: a_line >> (TeamChat(m))) |
|
88 |
| do_parse!(tag!("ROOM_NAME") >> eol >> n: a_line >> (RoomName(n))) |
|
89 |
| do_parse!(tag!("REMOVE_TEAM") >> eol >> n: a_line >> (RemoveTeam(n))) |
|
90 |
||
13525 | 91 |
| do_parse!(tag!("PROTO") >> eol >> d: u16_line >> (Proto(d))) |
12140 | 92 |
|
93 |
| do_parse!(tag!("QUIT") >> msg: opt_param >> (Quit(msg))) |
|
94 |
)); |
|
95 |
||
13436
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
96 |
/** Recognizes messages preceded with CMD */ |
12140 | 97 |
named!(cmd_message<&[u8], HWProtocolMessage>, preceded!(tag!("CMD\n"), alt!( |
98 |
do_parse!(tag_no_case!("STATS") >> (Stats)) |
|
99 |
| do_parse!(tag_no_case!("FIX") >> (Fix)) |
|
100 |
| do_parse!(tag_no_case!("UNFIX") >> (Unfix)) |
|
13437 | 101 |
| do_parse!(tag_no_case!("RESTART_SERVER") >> spaces >> tag!("YES") >> (RestartServer)) |
12140 | 102 |
| do_parse!(tag_no_case!("REGISTERED_ONLY") >> (ToggleServerRegisteredOnly)) |
103 |
| do_parse!(tag_no_case!("SUPER_POWER") >> (SuperPower)) |
|
13437 | 104 |
| do_parse!(tag_no_case!("PART") >> m: opt_space_param >> (Part(m))) |
105 |
| do_parse!(tag_no_case!("QUIT") >> m: opt_space_param >> (Quit(m))) |
|
106 |
| do_parse!(tag_no_case!("DELEGATE") >> spaces >> n: a_line >> (Delegate(n))) |
|
107 |
| do_parse!(tag_no_case!("SAVEROOM") >> spaces >> r: a_line >> (SaveRoom(r))) |
|
108 |
| do_parse!(tag_no_case!("LOADROOM") >> spaces >> r: a_line >> (LoadRoom(r))) |
|
109 |
| do_parse!(tag_no_case!("DELETE") >> spaces >> r: a_line >> (Delete(r))) |
|
110 |
| do_parse!(tag_no_case!("GLOBAL") >> spaces >> m: a_line >> (Global(m))) |
|
111 |
| do_parse!(tag_no_case!("WATCH") >> spaces >> i: a_line >> (Watch(i))) |
|
112 |
| do_parse!(tag_no_case!("GREETING") >> spaces >> m: a_line >> (Greeting(m))) |
|
13483 | 113 |
| do_parse!(tag_no_case!("VOTE") >> spaces >> m: yes_no_line >> (Vote(m))) |
114 |
| do_parse!(tag_no_case!("FORCE") >> spaces >> m: yes_no_line >> (ForceVote(m))) |
|
13437 | 115 |
| do_parse!(tag_no_case!("INFO") >> spaces >> n: a_line >> (Info(n))) |
116 |
| do_parse!(tag_no_case!("MAXTEAMS") >> spaces >> n: u8_line >> (MaxTeams(n))) |
|
13483 | 117 |
| do_parse!(tag_no_case!("CALLVOTE") >> |
118 |
v: opt!(preceded!(spaces, voting)) >> (CallVote(v))) |
|
13436
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
119 |
| do_parse!( |
13437 | 120 |
tag_no_case!("RND") >> alt!(spaces | peek!(end_of_message)) >> |
13436
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
121 |
v: str_line >> |
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
122 |
(Rnd(v.split_whitespace().map(String::from).collect()))) |
12140 | 123 |
))); |
124 |
||
125 |
named!(complex_message<&[u8], HWProtocolMessage>, alt!( |
|
126 |
do_parse!(tag!("PASSWORD") >> eol >> |
|
127 |
p: a_line >> eol >> |
|
128 |
s: a_line >> |
|
129 |
(Password(p, s))) |
|
130 |
| do_parse!(tag!("CHECKER") >> eol >> |
|
131 |
i: u32_line >> eol >> |
|
132 |
n: a_line >> eol >> |
|
133 |
p: a_line >> |
|
134 |
(Checker(i, n, p))) |
|
135 |
| do_parse!(tag!("CREATE_ROOM") >> eol >> |
|
136 |
n: a_line >> |
|
137 |
p: opt_param >> |
|
138 |
(CreateRoom(n, p))) |
|
13421 | 139 |
| do_parse!(tag!("JOIN_ROOM") >> eol >> |
12140 | 140 |
n: a_line >> |
141 |
p: opt_param >> |
|
13421 | 142 |
(JoinRoom(n, p))) |
13424 | 143 |
| do_parse!(tag!("ADD_TEAM") >> eol >> |
144 |
name: a_line >> eol >> |
|
145 |
color: u8_line >> eol >> |
|
146 |
grave: a_line >> eol >> |
|
147 |
fort: a_line >> eol >> |
|
148 |
voice_pack: a_line >> eol >> |
|
149 |
flag: a_line >> eol >> |
|
150 |
difficulty: u8_line >> eol >> |
|
151 |
hedgehogs: _8_hogs >> |
|
152 |
(AddTeam(TeamInfo{ |
|
153 |
name, color, grave, fort, |
|
154 |
voice_pack, flag, difficulty, |
|
155 |
hedgehogs, hedgehogs_number: 0 |
|
156 |
}))) |
|
157 |
| do_parse!(tag!("HH_NUM") >> eol >> |
|
158 |
n: a_line >> eol >> |
|
159 |
c: u8_line >> |
|
160 |
(SetHedgehogsNumber(n, c))) |
|
161 |
| do_parse!(tag!("TEAM_COLOR") >> eol >> |
|
162 |
n: a_line >> eol >> |
|
163 |
c: u8_line >> |
|
164 |
(SetTeamColor(n, c))) |
|
12140 | 165 |
| do_parse!(tag!("BAN") >> eol >> |
166 |
n: a_line >> eol >> |
|
167 |
r: a_line >> eol >> |
|
168 |
t: u32_line >> |
|
169 |
(Ban(n, r, t))) |
|
170 |
| do_parse!(tag!("BAN_IP") >> eol >> |
|
171 |
n: a_line >> eol >> |
|
172 |
r: a_line >> eol >> |
|
173 |
t: u32_line >> |
|
174 |
(BanIP(n, r, t))) |
|
175 |
| do_parse!(tag!("BAN_NICK") >> eol >> |
|
176 |
n: a_line >> eol >> |
|
177 |
r: a_line >> eol >> |
|
178 |
t: u32_line >> |
|
179 |
(BanNick(n, r, t))) |
|
12138 | 180 |
)); |
181 |
||
13427 | 182 |
named!(cfg_message<&[u8], HWProtocolMessage>, preceded!(tag!("CFG\n"), map!(alt!( |
183 |
do_parse!(tag!("THEME") >> eol >> |
|
184 |
name: a_line >> |
|
185 |
(GameCfg::Theme(name))) |
|
186 |
| do_parse!(tag!("SCRIPT") >> eol >> |
|
187 |
name: a_line >> |
|
188 |
(GameCfg::Script(name))) |
|
189 |
| do_parse!(tag!("AMMO") >> eol >> |
|
190 |
name: a_line >> |
|
191 |
value: opt_param >> |
|
192 |
(GameCfg::Ammo(name, value))) |
|
193 |
| do_parse!(tag!("SCHEME") >> eol >> |
|
13446 | 194 |
name: a_line >> |
195 |
values: opt!(preceded!(eol, separated_list!(eol, a_line))) >> |
|
196 |
(GameCfg::Scheme(name, values))) |
|
13427 | 197 |
| do_parse!(tag!("FEATURE_SIZE") >> eol >> |
198 |
value: u32_line >> |
|
199 |
(GameCfg::FeatureSize(value))) |
|
200 |
| do_parse!(tag!("MAP") >> eol >> |
|
201 |
value: a_line >> |
|
202 |
(GameCfg::MapType(value))) |
|
203 |
| do_parse!(tag!("MAPGEN") >> eol >> |
|
204 |
value: u32_line >> |
|
205 |
(GameCfg::MapGenerator(value))) |
|
206 |
| do_parse!(tag!("MAZE_SIZE") >> eol >> |
|
207 |
value: u32_line >> |
|
208 |
(GameCfg::MazeSize(value))) |
|
209 |
| do_parse!(tag!("SEED") >> eol >> |
|
210 |
value: a_line >> |
|
211 |
(GameCfg::Seed(value))) |
|
212 |
| do_parse!(tag!("TEMPLATE") >> eol >> |
|
213 |
value: u32_line >> |
|
214 |
(GameCfg::Template(value))) |
|
215 |
| do_parse!(tag!("DRAWNMAP") >> eol >> |
|
216 |
value: a_line >> |
|
217 |
(GameCfg::DrawnMap(value))) |
|
218 |
), Cfg))); |
|
219 |
||
12142
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
220 |
named!(malformed_message<&[u8], HWProtocolMessage>, |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
221 |
do_parse!(separated_list!(eol, a_line) >> (Malformed))); |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
222 |
|
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
223 |
named!(empty_message<&[u8], HWProtocolMessage>, |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
224 |
do_parse!(alt!(end_of_message | eol) >> (Empty))); |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
225 |
|
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
226 |
named!(message<&[u8], HWProtocolMessage>, alt!(terminated!( |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
227 |
alt!( |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
228 |
basic_message |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
229 |
| one_param_message |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
230 |
| cmd_message |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
231 |
| complex_message |
13427 | 232 |
| cfg_message |
12142
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
233 |
), end_of_message |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
234 |
) |
12145 | 235 |
| terminated!(malformed_message, end_of_message) |
12142
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
236 |
| empty_message |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
237 |
) |
193dfdcb0620
- Use logging facilities instead of plain println!
unc0rr
parents:
12141
diff
changeset
|
238 |
); |
12138 | 239 |
|
12141 | 240 |
named!(pub extract_messages<&[u8], Vec<HWProtocolMessage> >, many0!(complete!(message))); |
12138 | 241 |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
242 |
proptest! { |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
243 |
#[test] |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
244 |
fn is_parser_composition_idempotent(ref msg in gen_proto_msg()) { |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
245 |
println!("!! Msg: {:?}, Bytes: {:?} !!", msg, msg.to_raw_protocol().as_bytes()); |
13443 | 246 |
assert_eq!(message(msg.to_raw_protocol().as_bytes()), Ok((&b""[..], msg.clone()))) |
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
247 |
} |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
248 |
} |
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
249 |
|
12138 | 250 |
#[test] |
251 |
fn parse_test() { |
|
13443 | 252 |
assert_eq!(message(b"PING\n\n"), Ok((&b""[..], Ping))); |
253 |
assert_eq!(message(b"START_GAME\n\n"), Ok((&b""[..], StartGame))); |
|
254 |
assert_eq!(message(b"NICK\nit's me\n\n"), Ok((&b""[..], Nick("it's me".to_string())))); |
|
255 |
assert_eq!(message(b"PROTO\n51\n\n"), Ok((&b""[..], Proto(51)))); |
|
256 |
assert_eq!(message(b"QUIT\nbye-bye\n\n"), Ok((&b""[..], Quit(Some("bye-bye".to_string()))))); |
|
257 |
assert_eq!(message(b"QUIT\n\n"), Ok((&b""[..], Quit(None)))); |
|
258 |
assert_eq!(message(b"CMD\nwatch demo\n\n"), Ok((&b""[..], Watch("demo".to_string())))); |
|
259 |
assert_eq!(message(b"BAN\nme\nbad\n77\n\n"), Ok((&b""[..], Ban("me".to_string(), "bad".to_string(), 77)))); |
|
12141 | 260 |
|
13443 | 261 |
assert_eq!(message(b"CMD\nPART\n\n"), Ok((&b""[..], Part(None)))); |
262 |
assert_eq!(message(b"CMD\nPART _msg_\n\n"), Ok((&b""[..], Part(Some("_msg_".to_string()))))); |
|
13124
1e39b8749072
separated the server logic from all the async io mess.
alfadur
parents:
12147
diff
changeset
|
263 |
|
13443 | 264 |
assert_eq!(message(b"CMD\nRND\n\n"), Ok((&b""[..], Rnd(vec![])))); |
13436
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
265 |
assert_eq!( |
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
266 |
message(b"CMD\nRND A B\n\n"), |
13443 | 267 |
Ok((&b""[..], Rnd(vec![String::from("A"), String::from("B")]))) |
13436
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
268 |
); |
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
269 |
|
13443 | 270 |
assert_eq!(extract_messages(b"QUIT\n1\n2\n\n"), Ok((&b""[..], vec![Malformed]))); |
12145 | 271 |
|
13443 | 272 |
assert_eq!(extract_messages(b"PING\n\nPING\n\nP"), Ok((&b"P"[..], vec![Ping, Ping]))); |
273 |
assert_eq!(extract_messages(b"SING\n\nPING\n\n"), Ok((&b""[..], vec![Malformed, Ping]))); |
|
274 |
assert_eq!(extract_messages(b"\n\n\n\nPING\n\n"), Ok((&b""[..], vec![Empty, Empty, Ping]))); |
|
275 |
assert_eq!(extract_messages(b"\n\n\nPING\n\n"), Ok((&b""[..], vec![Empty, Empty, Ping]))); |
|
13436
6a818f9192f4
Implement parsing for rnd and add a little documentation
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13428
diff
changeset
|
276 |
} |