This repository has been archived by the owner on May 11, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathparser_gen_test.go
302 lines (291 loc) · 6.26 KB
/
parser_gen_test.go
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
package main
import (
"flag"
"testing"
)
var update = flag.Bool("update", false, "update .golden files")
type value string
func (v value) String() string {
return string(v)
}
func (v value) Set(n string) error {
p := &v
*p = value(n)
return nil
}
func Test_handle_generated(t *testing.T) {
for i, tc := range []struct {
name string
flags []*flag.Flag
error string
expected int
}{
{
name: "limit",
flags: []*flag.Flag{
{
Name: "limit",
Value: value("1"),
},
},
expected: 1,
},
{
name: "limit: invalid attemptLimit",
flags: []*flag.Flag{
{
Name: "limit",
Value: value("attemptLimit"),
},
},
error: `handle: strconv.ParseUint: parsing "attemptLimit": invalid syntax`,
},
{
name: "delay",
flags: []*flag.Flag{
{
Name: "delay",
Value: value("1s"),
},
},
expected: 1,
},
{
name: "delay: invalid duration",
flags: []*flag.Flag{
{
Name: "delay",
Value: value("duration"),
},
},
error: "handle: time: invalid duration duration",
},
{
name: "wait",
flags: []*flag.Flag{
{
Name: "wait",
Value: value("1s,1s,1s,1s,1s"),
},
},
expected: 1,
},
{
name: "wait: invalid duration",
flags: []*flag.Flag{
{
Name: "wait",
Value: value("1s,1s,duration,1s,1s"),
},
},
error: "handle: time: invalid duration duration",
},
{
name: "backoff",
flags: []*flag.Flag{
{
Name: "backoff",
Value: value("inc:1s,1s"),
},
},
expected: 1,
},
{
name: "backoff: unknown algorithm",
flags: []*flag.Flag{
{
Name: "backoff",
Value: value("x"),
},
},
error: "handle: parse algorithm: unknown algorithm x",
},
{
name: "backoff with jitter",
flags: []*flag.Flag{
{
Name: "tbackoff",
Value: value("inc:1s,1s full"),
},
},
expected: 1,
},
{
name: "backoff with jitter: invalid argument count",
flags: []*flag.Flag{
{
Name: "tbackoff",
Value: value("inc:1s,1s"),
},
},
error: "handle: invalid argument count",
},
{
name: "backoff with jitter: unknown algorithm",
flags: []*flag.Flag{
{
Name: "tbackoff",
Value: value("x full"),
},
},
error: "handle: parse algorithm: unknown algorithm x",
},
{
name: "backoff with jitter: unknown transformation",
flags: []*flag.Flag{
{
Name: "tbackoff",
Value: value("inc:1s,1s x"),
},
},
error: "handle: parse transformation: unknown transformation x",
},
} {
strategies, err := handle(tc.flags)
switch {
case tc.error == "" && err != nil:
t.Errorf("unexpected error %q at {%s:%d} test case", err, tc.name, i)
case tc.error != "" && err == nil:
t.Errorf("expected error %q, obtained nil at {%s:%d} test case", tc.error, tc.name, i)
case tc.error != "" && err != nil && tc.error != err.Error():
t.Errorf("expected error %q, obtained %q at {%s:%d} test case", tc.error, err, tc.name, i)
case len(strategies) != tc.expected:
t.Errorf("expected %d strategies, obtained %d", tc.expected, len(strategies))
}
}
}
func Test_parseAlgorithm_generated(t *testing.T) {
for i, tc := range []struct {
name string
args string
error string
}{
{
name: "incremental",
args: "inc:1s,1s",
},
{
name: "incremental: invalid argument count",
args: "inc:1s",
error: "invalid argument count",
},
{
name: "incremental: invalid initial",
args: "inc:initial,1s",
error: "time: invalid duration initial",
},
{
name: "incremental: invalid increment",
args: "inc:1s,increment",
error: "time: invalid duration increment",
},
{
name: "linear",
args: "lin:1s",
},
{
name: "linear: invalid factor",
args: "lin:factor",
error: "time: invalid duration factor",
},
{
name: "exponential",
args: "exp:1s,1.0",
},
{
name: "exponential: invalid argument count",
args: "exp:1s",
error: "invalid argument count",
},
{
name: "exponential: invalid factor",
args: "exp:factor,1.0",
error: "time: invalid duration factor",
},
{
name: "exponential: invalid base",
args: "exp:1s,base",
error: `strconv.ParseFloat: parsing "base": invalid syntax`,
},
{
name: "binary exponential",
args: "binexp:1s",
},
{
name: "binary exponential: invalid factor",
args: "binexp:factor",
error: "time: invalid duration factor",
},
{
name: "fibonacci",
args: "fib:1s",
},
{
name: "fibonacci: invalid factor",
args: "fib:factor",
error: "time: invalid duration factor",
},
} {
alg, err := parseAlgorithm(tc.args)
switch {
case tc.error == "" && err != nil:
t.Errorf("unexpected error %q at {%s:%d} test case", err, tc.name, i)
case tc.error != "" && err == nil:
t.Errorf("expected error %q, obtained nil at {%s:%d} test case", tc.error, tc.name, i)
case tc.error != "" && err != nil:
if tc.error != err.Error() {
t.Errorf("expected error %q, obtained %q at {%s:%d} test case", tc.error, err, tc.name, i)
}
case alg == nil:
t.Error("expected correct algorithm, obtained nil")
}
}
}
func Test_parseTransform_generated(t *testing.T) {
for i, tc := range []struct {
name string
args string
error string
}{
{
name: "full",
args: "full",
},
{
name: "equal",
args: "equal",
},
{
name: "deviation",
args: "dev:1.0",
},
{
name: "deviation: invalid factor",
args: "dev:factor",
error: `strconv.ParseFloat: parsing "factor": invalid syntax`,
},
{
name: "normal distribution",
args: "ndist:1.0",
},
{
name: "normal distribution: invalid standardDeviation",
args: "ndist:standardDeviation",
error: `strconv.ParseFloat: parsing "standardDeviation": invalid syntax`,
},
} {
tr, err := parseTransform(tc.args)
switch {
case tc.error == "" && err != nil:
t.Errorf("unexpected error %q at {%s:%d} test case", err, tc.name, i)
case tc.error != "" && err == nil:
t.Errorf("expected error %q, obtained nil at {%s:%d} test case", tc.error, tc.name, i)
case tc.error != "" && err != nil:
if tc.error != err.Error() {
t.Errorf("expected error %q, obtained %q at {%s:%d} test case", tc.error, err, tc.name, i)
}
case tr == nil:
t.Error("expected correct transformation, obtained nil")
}
}
}