author | alfadur |
Tue, 28 May 2019 21:28:32 +0300 | |
changeset 15075 | e935b1ad23f3 |
parent 15074 | c5a6e8566425 |
child 15111 | 1e45db229f9f |
permissions | -rw-r--r-- |
13419 | 1 |
use proptest::{ |
2 |
arbitrary::{any, any_with, Arbitrary, StrategyFor}, |
|
14457 | 3 |
strategy::{BoxedStrategy, Just, Map, Strategy}, |
4 |
test_runner::{Reason, TestRunner}, |
|
13419 | 5 |
}; |
6 |
||
15074 | 7 |
use crate::core::types::{GameCfg, HedgehogInfo, ServerVar, ServerVar::*, TeamInfo}; |
13439 | 8 |
|
15075 | 9 |
use super::messages::{HwProtocolMessage, HwProtocolMessage::*}; |
13419 | 10 |
|
11 |
// Due to inability to define From between Options |
|
14457 | 12 |
trait Into2<T>: Sized { |
13 |
fn into2(self) -> T; |
|
14 |
} |
|
15 |
impl<T> Into2<T> for T { |
|
16 |
fn into2(self) -> T { |
|
17 |
self |
|
18 |
} |
|
19 |
} |
|
13433
fb104e150878
Implement to_raw_protocol for Rnd and enable tests. Add cargo/rls build artifacts to .gitignore
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13432
diff
changeset
|
20 |
impl Into2<Vec<String>> for Vec<Ascii> { |
fb104e150878
Implement to_raw_protocol for Rnd and enable tests. Add cargo/rls build artifacts to .gitignore
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13432
diff
changeset
|
21 |
fn into2(self) -> Vec<String> { |
fb104e150878
Implement to_raw_protocol for Rnd and enable tests. Add cargo/rls build artifacts to .gitignore
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13432
diff
changeset
|
22 |
self.into_iter().map(|x| x.0).collect() |
fb104e150878
Implement to_raw_protocol for Rnd and enable tests. Add cargo/rls build artifacts to .gitignore
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13432
diff
changeset
|
23 |
} |
fb104e150878
Implement to_raw_protocol for Rnd and enable tests. Add cargo/rls build artifacts to .gitignore
Marcin Mielniczuk <marmistrz.dev@zoho.eu>
parents:
13432
diff
changeset
|
24 |
} |
14457 | 25 |
impl Into2<String> for Ascii { |
26 |
fn into2(self) -> String { |
|
27 |
self.0 |
|
28 |
} |
|
29 |
} |
|
30 |
impl Into2<Option<String>> for Option<Ascii> { |
|
31 |
fn into2(self) -> Option<String> { |
|
32 |
self.map(|x| x.0) |
|
33 |
} |
|
13419 | 34 |
} |
35 |
||
36 |
macro_rules! proto_msg_case { |
|
14457 | 37 |
($val: ident()) => { |
38 |
Just($val) |
|
39 |
}; |
|
40 |
($val: ident($arg: ty)) => { |
|
41 |
any::<$arg>().prop_map(|v| $val(v.into2())) |
|
42 |
}; |
|
43 |
($val: ident($arg1: ty, $arg2: ty)) => { |
|
44 |
any::<($arg1, $arg2)>().prop_map(|v| $val(v.0.into2(), v.1.into2())) |
|
45 |
}; |
|
46 |
($val: ident($arg1: ty, $arg2: ty, $arg3: ty)) => { |
|
47 |
any::<($arg1, $arg2, $arg3)>().prop_map(|v| $val(v.0.into2(), v.1.into2(), v.2.into2())) |
|
48 |
}; |
|
13419 | 49 |
} |
50 |
||
51 |
macro_rules! proto_msg_match { |
|
13439 | 52 |
($var: expr, def = $default: expr, $($num: expr => $constr: ident $res: tt),*) => ( |
13419 | 53 |
match $var { |
54 |
$($num => (proto_msg_case!($constr $res)).boxed()),*, |
|
55 |
_ => Just($default).boxed() |
|
56 |
} |
|
57 |
) |
|
58 |
} |
|
59 |
||
13432 | 60 |
/// Wrapper type for generating non-empty strings |
13419 | 61 |
#[derive(Debug)] |
62 |
struct Ascii(String); |
|
63 |
||
64 |
impl Arbitrary for Ascii { |
|
65 |
type Parameters = <String as Arbitrary>::Parameters; |
|
66 |
||
13666 | 67 |
fn arbitrary_with(_args: Self::Parameters) -> Self::Strategy { |
13482 | 68 |
"[a-zA-Z0-9]+".prop_map(Ascii).boxed() |
13419 | 69 |
} |
70 |
||
71 |
type Strategy = BoxedStrategy<Ascii>; |
|
72 |
} |
|
73 |
||
13439 | 74 |
impl Arbitrary for GameCfg { |
75 |
type Parameters = (); |
|
76 |
||
13666 | 77 |
fn arbitrary_with(_args: <Self as Arbitrary>::Parameters) -> <Self as Arbitrary>::Strategy { |
15074 | 78 |
use crate::core::types::GameCfg::*; |
14457 | 79 |
(0..10) |
80 |
.no_shrink() |
|
81 |
.prop_flat_map(|i| { |
|
82 |
proto_msg_match!(i, def = FeatureSize(0), |
|
13439 | 83 |
0 => FeatureSize(u32), |
84 |
1 => MapType(Ascii), |
|
85 |
2 => MapGenerator(u32), |
|
86 |
3 => MazeSize(u32), |
|
87 |
4 => Seed(Ascii), |
|
88 |
5 => Template(u32), |
|
89 |
6 => Ammo(Ascii, Option<Ascii>), |
|
13801 | 90 |
7 => Scheme(Ascii, Vec<Ascii>), |
13439 | 91 |
8 => Script(Ascii), |
92 |
9 => Theme(Ascii), |
|
93 |
10 => DrawnMap(Ascii)) |
|
14457 | 94 |
}) |
95 |
.boxed() |
|
13439 | 96 |
} |
97 |
||
98 |
type Strategy = BoxedStrategy<GameCfg>; |
|
99 |
} |
|
100 |
||
101 |
impl Arbitrary for TeamInfo { |
|
102 |
type Parameters = (); |
|
103 |
||
13666 | 104 |
fn arbitrary_with(_args: <Self as Arbitrary>::Parameters) -> <Self as Arbitrary>::Strategy { |
14457 | 105 |
( |
106 |
"[a-z]+", |
|
107 |
0u8..127u8, |
|
108 |
"[a-z]+", |
|
109 |
"[a-z]+", |
|
110 |
"[a-z]+", |
|
111 |
"[a-z]+", |
|
112 |
0u8..127u8, |
|
113 |
) |
|
13439 | 114 |
.prop_map(|(name, color, grave, fort, voice_pack, flag, difficulty)| { |
115 |
fn hog(n: u8) -> HedgehogInfo { |
|
14457 | 116 |
HedgehogInfo { |
117 |
name: format!("hog{}", n), |
|
118 |
hat: format!("hat{}", n), |
|
119 |
} |
|
13439 | 120 |
} |
14457 | 121 |
let hedgehogs = [ |
122 |
hog(1), |
|
123 |
hog(2), |
|
124 |
hog(3), |
|
125 |
hog(4), |
|
126 |
hog(5), |
|
127 |
hog(6), |
|
128 |
hog(7), |
|
129 |
hog(8), |
|
130 |
]; |
|
13439 | 131 |
TeamInfo { |
14795 | 132 |
owner: String::new(), |
14457 | 133 |
name, |
134 |
color, |
|
135 |
grave, |
|
136 |
fort, |
|
137 |
voice_pack, |
|
138 |
flag, |
|
139 |
difficulty, |
|
140 |
hedgehogs, |
|
141 |
hedgehogs_number: 0, |
|
13439 | 142 |
} |
14457 | 143 |
}) |
144 |
.boxed() |
|
13439 | 145 |
} |
146 |
||
147 |
type Strategy = BoxedStrategy<TeamInfo>; |
|
148 |
} |
|
149 |
||
14783 | 150 |
impl Arbitrary for ServerVar { |
151 |
type Parameters = (); |
|
152 |
||
153 |
fn arbitrary_with(args: Self::Parameters) -> Self::Strategy { |
|
14795 | 154 |
(0..=2) |
14783 | 155 |
.no_shrink() |
156 |
.prop_flat_map(|i| { |
|
157 |
proto_msg_match!(i, def = ServerVar::LatestProto(0), |
|
158 |
0 => MOTDNew(Ascii), |
|
159 |
1 => MOTDOld(Ascii), |
|
160 |
2 => LatestProto(u16) |
|
161 |
) |
|
162 |
}) |
|
163 |
.boxed() |
|
164 |
} |
|
165 |
||
166 |
type Strategy = BoxedStrategy<ServerVar>; |
|
167 |
} |
|
168 |
||
15075 | 169 |
pub fn gen_proto_msg() -> BoxedStrategy<HwProtocolMessage> where { |
14795 | 170 |
let res = (0..=55).no_shrink().prop_flat_map(|i| { |
171 |
proto_msg_match!(i, def = Ping, |
|
14457 | 172 |
0 => Ping(), |
173 |
1 => Pong(), |
|
174 |
2 => Quit(Option<Ascii>), |
|
175 |
4 => Global(Ascii), |
|
14795 | 176 |
5 => Watch(u32), |
14457 | 177 |
6 => ToggleServerRegisteredOnly(), |
178 |
7 => SuperPower(), |
|
179 |
8 => Info(Ascii), |
|
180 |
9 => Nick(Ascii), |
|
181 |
10 => Proto(u16), |
|
182 |
11 => Password(Ascii, Ascii), |
|
183 |
12 => Checker(u16, Ascii, Ascii), |
|
184 |
13 => List(), |
|
185 |
14 => Chat(Ascii), |
|
186 |
15 => CreateRoom(Ascii, Option<Ascii>), |
|
187 |
16 => JoinRoom(Ascii, Option<Ascii>), |
|
188 |
17 => Follow(Ascii), |
|
189 |
18 => Rnd(Vec<Ascii>), |
|
190 |
19 => Kick(Ascii), |
|
191 |
20 => Ban(Ascii, Ascii, u32), |
|
192 |
21 => BanIP(Ascii, Ascii, u32), |
|
193 |
22 => BanNick(Ascii, Ascii, u32), |
|
194 |
23 => BanList(), |
|
195 |
24 => Unban(Ascii), |
|
14783 | 196 |
25 => SetServerVar(ServerVar), |
14457 | 197 |
26 => GetServerVar(), |
198 |
27 => RestartServer(), |
|
199 |
28 => Stats(), |
|
200 |
29 => Part(Option<Ascii>), |
|
201 |
30 => Cfg(GameCfg), |
|
202 |
31 => AddTeam(Box<TeamInfo>), |
|
203 |
32 => RemoveTeam(Ascii), |
|
204 |
33 => SetHedgehogsNumber(Ascii, u8), |
|
205 |
34 => SetTeamColor(Ascii, u8), |
|
206 |
35 => ToggleReady(), |
|
207 |
36 => StartGame(), |
|
208 |
37 => EngineMessage(Ascii), |
|
209 |
38 => RoundFinished(), |
|
210 |
39 => ToggleRestrictJoin(), |
|
211 |
40 => ToggleRestrictTeams(), |
|
212 |
41 => ToggleRegisteredOnly(), |
|
213 |
42 => RoomName(Ascii), |
|
214 |
43 => Delegate(Ascii), |
|
215 |
44 => TeamChat(Ascii), |
|
216 |
45 => MaxTeams(u8), |
|
217 |
46 => Fix(), |
|
218 |
47 => Unfix(), |
|
219 |
48 => Greeting(Ascii), |
|
220 |
//49 => CallVote(Option<(String, Option<String>)>), |
|
221 |
50 => Vote(bool), |
|
222 |
51 => ForceVote(bool), |
|
223 |
52 => Save(Ascii, Ascii), |
|
224 |
53 => Delete(Ascii), |
|
225 |
54 => SaveRoom(Ascii), |
|
14795 | 226 |
55 => LoadRoom(Ascii) |
14457 | 227 |
) |
228 |
}); |
|
13419 | 229 |
res.boxed() |
13421
d1368c776a4f
Enable all lints from the rust-2018-idioms suite.
marmistrz
parents:
13419
diff
changeset
|
230 |
} |