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