-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommands_test.go
313 lines (277 loc) · 8.74 KB
/
commands_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
303
304
305
306
307
308
309
310
311
312
313
package commandgo
import (
"fmt"
"net/url"
"strconv"
"strings"
"testing"
)
var testVarBool bool
var testVarString string
var testVarURL *url.URL
func testFunc(s string) string {
return fmt.Sprintf("--%s--", s)
}
func testFuncInt(i int) string {
return fmt.Sprintf("--%d--", i)
}
func testFuncUrl(u *url.URL) string {
if u == nil {
return ""
}
return u.String()
}
type testStruct struct {
FieldInt int
FieldBool bool
FieldFloat float64
}
func (t testStruct) CapitalString(s string) string {
return strings.ToUpper(s)
}
func (t testStruct) CapitalFields() []string {
return []string{
strconv.Itoa(t.FieldInt),
strconv.FormatBool(t.FieldBool),
strconv.FormatFloat(t.FieldFloat, 0, 2, 64),
}
}
func TestCommands_Run_NoCommand(t *testing.T) {
cmds := Commands{}
_, err := cmds.Run()
if err != ErrorNoCommandFound {
t.Fatalf("expected %v error with empty command line, found %v", ErrorNoCommandFound, err)
}
_, err = cmds.Run("test")
if err != ErrorCommandNotKnown {
t.Fatalf("expected %v error with empty command map, found %v", ErrorCommandNotKnown, err)
}
cmds = Commands{"test": testFunc}
_, err = cmds.Run()
if err != ErrorNoCommandFound {
t.Fatalf("expected %v error with empty command line, found %v", ErrorNoCommandFound, err)
}
_, err = cmds.Run("unknown")
if err != ErrorCommandNotKnown {
t.Fatalf("expected %v error with unknown command, found %v", ErrorCommandNotKnown, err)
}
_, err = cmds.Run("test")
if err == nil || !strings.HasPrefix(err.Error(), "missing argument") {
t.Fatalf("expected error %s with known command, no param, found %v", "missing argument", err)
}
_, err = cmds.Run("test", "hello")
if err != nil {
t.Fatalf("expected no error with known command, found %v", err)
}
}
func TestCommands_Run_vars(t *testing.T) {
testVarBool = false
testVarString = ""
testVarURL = nil
cmds := Commands{
"-flag1": &testVarBool,
"-flag2": &testVarString,
"-flag3": &testVarURL,
"": testFunc,
}
out, err := cmds.Run("-flag1", "-flag2", "hello", "-flag3", "http://www.google.com/")
if err == nil || !strings.HasPrefix(err.Error(), "missing argument") {
t.Fatalf("expected error %s with valid command map but no command param. found %v", "missing argument", err)
}
out, err = cmds.Run("teststring", "-flag1", "-flag2", "hello", "-flag3", "http://www.google.com/")
if err != nil {
t.Fatalf("unexpected error with valid command line and command param. found %v", err)
}
if len(out) != 1 {
t.Fatalf("unexpected output with valid command line %v", out)
}
if out[0].(string) != "--teststring--" {
t.Fatalf("unexpected output expected %v, found %v", "--teststring--", out[0])
}
if !testVarBool {
t.Fatalf("unexpected testvarbool, expected %v, found %v", true, testVarBool)
}
if testVarString != "hello" {
t.Fatalf("unexpected testvarstring, expected %v, found %v", "hello", testVarString)
}
if testVarURL == nil {
t.Fatalf("unexpected testvarurl, expected %v, found nil", "http://www.google.com/")
}
if testVarURL.String() != "http://www.google.com/" {
t.Fatalf("unexpected testvarurl, expected %v, found %s", "http://www.google.com/", testVarURL.String())
}
}
func TestCommands_Run_Fields(t *testing.T) {
test := &testStruct{}
cmd := Commands{
"-b": &test.FieldBool,
"-i": &test.FieldInt,
"-f": &test.FieldFloat,
"cap": test.CapitalString,
}
out, err := cmd.Run("cap", "teststring", "-i", "555", "-b", "-f", "0.555")
if err != nil {
t.Fatalf("unexpected error %v", err)
}
if len(out) != 1 {
t.Fatalf("unexpected output. Expected %d item, found %d", 1, len(out))
}
if out[0].(string) != strings.ToUpper("teststring") {
t.Fatalf("unexpected output. Expected %s, found %s", strings.ToUpper("teststring"), out[0].(string))
}
if !test.FieldBool {
t.Fatalf("unexpected field value. bool expected %v, found %v", true, test.FieldBool)
}
if test.FieldInt != 555 {
t.Fatalf("unexpected field value. int expected %v, found %v", 555, test.FieldInt)
}
if test.FieldFloat != 0.555 {
t.Fatalf("unexpected field value. int expected %v, found %v", 0.555, test.FieldFloat)
}
}
func TestCommands_Run_Func(t *testing.T) {
cmd := Commands{
"dash": testFunc,
}
_, err := cmd.Run("dash")
if err == nil || !strings.HasPrefix(err.Error(), "missing argument") {
t.Fatalf("expected error %s, found %s", "missing argument", err)
}
out, err := cmd.Run("dash", "abc")
if err != nil {
t.Fatalf("unexpected error %s", err)
}
if len(out) != 1 || out[0].(string) != "--abc--" {
t.Fatalf("unexpected output, expected %s, found %v", "--abc---", out[0])
}
cmd = Commands{
"url": testFuncUrl,
}
out, err = cmd.Run("url", "nonsense://bla bla")
if err == nil {
t.Fatalf("expected error, found none")
}
out, err = cmd.Run("url", "http://www.google.com")
if err != nil {
t.Fatalf("unexpected error, %s", err)
}
if len(out) != 1 || out[0].(string) != "http://www.google.com" {
t.Fatalf("unexpected output, expected %s, found %v", "http://www.google.com", out[0])
}
}
func TestCommands_Run_Meth(t *testing.T) {
ts := &testStruct{}
cmd := Commands{
"meth": ts.CapitalString,
}
_, err := cmd.Run("meth")
if err == nil || !strings.HasPrefix(err.Error(), "missing argument") {
t.Fatalf("expected error %s, found %s", "missing argument", err)
}
out, err := cmd.Run("meth", "abc")
if err != nil {
t.Fatalf("unexpected error %s", err)
}
if len(out) != 1 || out[0].(string) != "ABC" {
t.Fatalf("unexpected output, expected %s, found %v", "ABC", out[0])
}
}
func TestCommands_Run_Default(t *testing.T) {
cmd := Commands{
"": testFunc,
"num": testFuncInt,
}
_, err := cmd.Run()
if err == nil || !strings.HasPrefix(err.Error(), "missing argument") {
t.Fatalf("expected error %s, found %s", "missing argument", err)
}
_, err = cmd.Run("num")
if err == nil || !strings.HasPrefix(err.Error(), "missing argument") {
t.Fatalf("expected error %s, found %s", "missing argument", err)
}
out, err := cmd.Run("teststring")
if err != nil {
t.Fatalf("unexpected error %s,", err)
}
if len(out) != 1 || out[0].(string) != "--teststring--" {
t.Fatalf("unexpected output. expected %s, found %s", "--teststring--", out[0])
}
_, err = cmd.Run("num", "teststring")
if err == nil || !strings.HasSuffix(err.Error(), "could not be read as a int") {
t.Fatalf("expected error %s, found %v", "could not be read as a int", err)
}
out, err = cmd.Run("num", "123")
if err != nil {
t.Fatalf("unexpected error, %v", err)
}
if len(out) != 1 || out[0].(string) != "--123--" {
t.Fatalf("unexpected output. expected %v, found %v", "--123--", out[0])
}
}
func TestCommands_Run_Submaps(t *testing.T) {
ts := &testStruct{}
cmds := Commands{
"-b": &testVarBool,
"0func": testFunc,
"one": Commands{
"-u": &testVarURL,
"1func": testFunc,
"two": Commands{
"-s": &testVarString,
"2func": ts.CapitalString,
},
},
}
// level zero, no flags
out, err := cmds.Run("0func", "teststring")
if err != nil {
t.Fatalf("unexpected error, %v", err)
}
if len(out) != 1 && out[0].(string) != "teststring" {
t.Fatalf("unexpected output testing subcommands. Expected %s, found %v", "teststring", out[0])
}
// level zero, valid flag
testVarBool = false
out, err = cmds.Run("0func", "teststring", "-b", "true")
if err != nil {
t.Fatalf("unexpected error, %v", err)
}
if len(out) != 1 && out[0].(string) != "teststring" {
t.Fatalf("unexpected output testing subcommands. Expected %s, found %v", "teststring", out[0])
}
if !testVarBool {
t.Fatalf("unexpected flag value testing testvarbool. Expected %v, found %v", true, testVarBool)
}
// level zero, flag out of scope
testVarString = ""
out, err = cmds.Run("0func", "teststring", "-s", "hello")
if err == nil || !strings.HasPrefix(err.Error(), "unexpected flag found") {
t.Fatalf("expected error unexpected flag found, %v", err)
}
// level one, no flags
out, err = cmds.Run("one", "1func", "teststring")
if err != nil {
t.Fatalf("unexpected error testing subcommands, %v", err)
}
// level one, valid flags
testVarURL = nil
testVarBool = false
out, err = cmds.Run("one", "1func", "teststring", "-u", "http://www.google.com", "-b", "true")
if err != nil {
t.Fatalf("unexpected error testing subcommands, %v", err)
}
if testVarURL == nil {
t.Fatalf("no value assigned to test flag variable testvarurl")
}
if testVarURL.String() != "http://www.google.com" {
t.Fatalf("unexpected value assigned to test flag variable testvarurl. expected %s, found %s", "http://www.google.com", testVarURL.String())
}
if !testVarBool {
t.Fatalf("unexpected value assigned to test flag variable testvarbool")
}
// level one, invalid flags
out, err = cmds.Run("one", "1func", "teststring", "-s", "teststring")
if err == nil || !strings.HasPrefix(err.Error(), "unexpected flag found") {
t.Fatalf("expected error unexpected flag found, %v", err)
}
}