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
/
parser_test.go
216 lines (204 loc) · 5.19 KB
/
parser_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
package main
import (
"flag"
"io"
"io/ioutil"
"testing"
"github.com/kamilsk/retry/v4/strategy"
"github.com/stretchr/testify/assert"
)
func Test_parse(t *testing.T) {
before := usage
usage = func(output io.Writer, metadata Metadata) func() { return func() {} }
defer func() { usage = before }()
for _, tc := range []struct {
name string
before func()
do func() (obtained, expected string)
after func()
}{
{
name: "help call",
do: func() (obtained, expected string) {
expected = flag.ErrHelp.Error()
if _, err := parse(ioutil.Discard, "test", "-h"); err != nil {
obtained = err.Error()
}
return
},
},
{
name: "unsupported cursor",
before: func() {
var unsupported int
compliance["unsupported"] = struct {
cursor interface{}
usage string
handler func(*flag.Flag) (strategy.Strategy, error)
}{
cursor: &unsupported,
}
},
do: func() (obtained, expected string) {
expected = "init: an unsupported cursor type *int"
if _, err := parse(ioutil.Discard, "test"); err != nil {
obtained = err.Error()
}
return
},
after: func() {
delete(compliance, "unsupported")
},
},
{
name: "invalid arguments",
do: func() (obtained, expected string) {
expected = "parse: flag provided but not defined: -test"
if _, err := parse(ioutil.Discard, "test", "-test=invalid"); err != nil {
obtained = err.Error()
}
return
},
},
// TODO issue#104
//{
// name: "invalid timeout",
// do: func() (obtained, expected string) {
// expected = `parse: invalid value "Timeout" for flag -timeout: time: invalid duration Timeout`
// if _, err := parse(ioutil.Discard, "test", "-timeout=Timeout"); err != nil {
// obtained = err.Error()
// }
// return
// },
//},
{
name: "invalid strategy",
do: func() (obtained, expected string) {
expected = "parse: handle: time: invalid duration duration"
if _, err := parse(ioutil.Discard, "test", "-delay=duration"); err != nil {
obtained = err.Error()
}
return
},
},
{
name: "nothing to do",
do: func() (obtained, expected string) {
expected = "please provide a command to retry"
if _, err := parse(ioutil.Discard, "test", "-delay=1s"); err != nil {
obtained = err.Error()
}
return
},
},
{
name: "success",
do: func() (obtained, expected string) {
expected = ""
if _, err := parse(ioutil.Discard, "test", "-delay=1s", "--", "whoami"); err != nil {
obtained = err.Error()
}
return
},
},
} {
if tc.before != nil {
tc.before()
}
obtained, expected := tc.do()
assert.Equal(t, expected, obtained)
if tc.after != nil {
tc.after()
}
}
}
func Test_handle(t *testing.T) {
for i, tc := range []struct {
name string
flags []*flag.Flag
error string
expected int
}{
{
name: "empty list",
flags: nil,
expected: 0,
},
} {
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(t *testing.T) {
for i, tc := range []struct {
name string
args string
error string
}{
{
name: "not matched",
args: "~",
error: "parse algorithm: invalid argument ~",
},
{
name: "unknown algorithm",
args: "x",
error: "parse algorithm: unknown algorithm x",
},
} {
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(t *testing.T) {
for i, tc := range []struct {
name string
args string
error string
}{
{
name: "not matched",
args: "~",
error: "parse transformation: invalid argument ~",
},
{
name: "unknown transformation",
args: "x",
error: "parse transformation: unknown transformation x",
},
} {
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")
}
}
}