forked from ipfs/go-ipfs-cmds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
command_test.go
403 lines (343 loc) · 8.04 KB
/
command_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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
package cmds
import (
"context"
"io"
"testing"
"time"
"github.com/ipfs/go-ipfs-cmdkit"
)
// nopClose implements io.Close and does nothing
type nopCloser struct{}
func (c nopCloser) Close() error { return nil }
type testEmitter testing.T
func (s *testEmitter) Close() error {
return nil
}
func (s *testEmitter) SetLength(_ uint64) {}
func (s *testEmitter) SetError(err interface{}, code cmdkit.ErrorType) {
(*testing.T)(s).Error(err)
}
func (s *testEmitter) Emit(value interface{}) error {
return nil
}
// newTestEmitter fails the test if it receives an error.
func newTestEmitter(t *testing.T) *testEmitter {
return (*testEmitter)(t)
}
// noop does nothing and can be used as a noop Run function
func noop(req *Request, re ResponseEmitter, env Environment) {}
// writecloser implements io.WriteCloser by embedding
// an io.Writer and an io.Closer
type writecloser struct {
io.Writer
io.Closer
}
// TestOptionValidation tests whether option type validation works
func TestOptionValidation(t *testing.T) {
cmd := &Command{
Options: []cmdkit.Option{
cmdkit.IntOption("b", "beep", "enables beeper"),
cmdkit.StringOption("B", "boop", "password for booper"),
},
Run: noop,
}
re := newTestEmitter(t)
req, err := NewRequest(context.Background(), nil, map[string]interface{}{
"beep": true,
}, nil, nil, cmd)
if err == nil {
t.Error("Should have failed (incorrect type)")
}
re = newTestEmitter(t)
req, err = NewRequest(context.Background(), nil, map[string]interface{}{
"beep": 5,
}, nil, nil, cmd)
if err != nil {
t.Error(err, "Should have passed")
}
cmd.Call(req, re, nil)
re = newTestEmitter(t)
req, err = NewRequest(context.Background(), nil, map[string]interface{}{
"beep": 5,
"boop": "test",
}, nil, nil, cmd)
if err != nil {
t.Error("Should have passed")
}
cmd.Call(req, re, nil)
re = newTestEmitter(t)
req, err = NewRequest(context.Background(), nil, map[string]interface{}{
"b": 5,
"B": "test",
}, nil, nil, cmd)
if err != nil {
t.Error("Should have passed")
}
cmd.Call(req, re, nil)
re = newTestEmitter(t)
req, err = NewRequest(context.Background(), nil, map[string]interface{}{
"foo": 5,
}, nil, nil, cmd)
if err != nil {
t.Error("Should have passed")
}
cmd.Call(req, re, nil)
re = newTestEmitter(t)
req, err = NewRequest(context.Background(), nil, map[string]interface{}{
EncLong: "json",
}, nil, nil, cmd)
if err != nil {
t.Error("Should have passed")
}
cmd.Call(req, re, nil)
re = newTestEmitter(t)
req, err = NewRequest(context.Background(), nil, map[string]interface{}{
"b": "100",
}, nil, nil, cmd)
if err != nil {
t.Error("Should have passed")
}
cmd.Call(req, re, nil)
re = newTestEmitter(t)
req, err = NewRequest(context.Background(), nil, map[string]interface{}{
"b": ":)",
}, nil, nil, cmd)
if err == nil {
t.Error("Should have failed (string value not convertible to int)")
}
}
func TestRegistration(t *testing.T) {
cmdA := &Command{
Options: []cmdkit.Option{
cmdkit.IntOption("beep", "number of beeps"),
},
Run: noop,
}
cmdB := &Command{
Options: []cmdkit.Option{
cmdkit.IntOption("beep", "number of beeps"),
},
Run: noop,
Subcommands: map[string]*Command{
"a": cmdA,
},
}
path := []string{"a"}
_, err := cmdB.GetOptions(path)
if err == nil {
t.Error("Should have failed (option name collision)")
}
}
func TestResolving(t *testing.T) {
cmdC := &Command{}
cmdB := &Command{
Subcommands: map[string]*Command{
"c": cmdC,
},
}
cmdB2 := &Command{}
cmdA := &Command{
Subcommands: map[string]*Command{
"b": cmdB,
"B": cmdB2,
},
}
cmd := &Command{
Subcommands: map[string]*Command{
"a": cmdA,
},
}
cmds, err := cmd.Resolve([]string{"a", "b", "c"})
if err != nil {
t.Error(err)
}
if len(cmds) != 4 || cmds[0] != cmd || cmds[1] != cmdA || cmds[2] != cmdB || cmds[3] != cmdC {
t.Error("Returned command path is different than expected", cmds)
}
}
func TestWalking(t *testing.T) {
cmdA := &Command{
Subcommands: map[string]*Command{
"b": &Command{},
"B": &Command{},
},
}
i := 0
cmdA.Walk(func(c *Command) {
i = i + 1
})
if i != 3 {
t.Error("Command tree walk didn't work, expected 3 got:", i)
}
}
func TestHelpProcessing(t *testing.T) {
cmdB := &Command{
Helptext: cmdkit.HelpText{
ShortDescription: "This is other short",
},
}
cmdA := &Command{
Helptext: cmdkit.HelpText{
ShortDescription: "This is short",
},
Subcommands: map[string]*Command{
"a": cmdB,
},
}
cmdA.ProcessHelp()
if len(cmdA.Helptext.LongDescription) == 0 {
t.Error("LongDescription was not set on basis of ShortDescription")
}
if len(cmdB.Helptext.LongDescription) == 0 {
t.Error("LongDescription was not set on basis of ShortDescription")
}
}
type postRunTestCase struct {
length uint64
err *cmdkit.Error
emit []interface{}
postRun func(*Request, ResponseEmitter) ResponseEmitter
next []interface{}
finalLength uint64
}
// TestPostRun tests whether commands with PostRun return the intended result
func TestPostRun(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
var testcases = []postRunTestCase{
postRunTestCase{
length: 3,
err: nil,
emit: []interface{}{7},
finalLength: 4,
next: []interface{}{14},
postRun: func(req *Request, re ResponseEmitter) ResponseEmitter {
re_, res := NewChanResponsePair(req)
go func() {
defer re.Close()
l := res.Length()
re.SetLength(l + 1)
for {
v, err := res.Next()
if err == io.EOF {
return
}
if err != nil {
re.SetError(err, cmdkit.ErrNormal)
t.Fatal(err)
return
}
i := v.(int)
err = re.Emit(2 * i)
if err != nil {
re.SetError(err, cmdkit.ErrNormal)
return
}
}
}()
return re_
},
},
}
for _, tc := range testcases {
cmd := &Command{
Run: func(req *Request, re ResponseEmitter, env Environment) {
re.SetLength(tc.length)
for _, v := range tc.emit {
err := re.Emit(v)
if err != nil {
t.Fatal(err)
}
}
err := re.Close()
if err != nil {
t.Fatal(err)
}
},
PostRun: PostRunMap{
CLI: tc.postRun,
},
}
req, err := NewRequest(ctx, nil, map[string]interface{}{
EncLong: CLI,
}, nil, nil, cmd)
if err != nil {
t.Fatal(err)
}
opts := req.Options
if opts == nil {
t.Fatal("req.Options() is nil")
}
encTypeIface := opts[EncLong]
if encTypeIface == nil {
t.Fatal("req.Options()[EncLong] is nil")
}
encType := EncodingType(encTypeIface.(string))
if encType == "" {
t.Fatal("no encoding type")
}
if encType != CLI {
t.Fatal("wrong encoding type")
}
re, res := NewChanResponsePair(req)
re = cmd.PostRun[PostRunType(encType)](req, re)
cmd.Call(req, re, nil)
l := res.Length()
if l != tc.finalLength {
t.Fatal("wrong final length")
}
for _, x := range tc.next {
ch := make(chan interface{})
go func() {
v, err := res.Next()
if err != nil {
close(ch)
t.Fatal(err)
}
ch <- v
}()
select {
case v, ok := <-ch:
if !ok {
t.Fatal("error checking all next values - channel closed")
}
if x != v {
t.Fatalf("final check of emitted values failed. got %v but expected %v", v, x)
}
case <-time.After(50 * time.Millisecond):
t.Fatal("too few values in next")
}
}
_, err = res.Next()
if err != io.EOF {
t.Fatal("expected EOF, got", err)
}
}
}
func TestCancel(t *testing.T) {
wait := make(chan struct{})
ctx, cancel := context.WithCancel(context.Background())
req, err := NewRequest(ctx, nil, nil, nil, nil, &Command{})
if err != nil {
t.Fatal(err)
}
re, res := NewChanResponsePair(req)
go func() {
err := re.Emit("abc")
if err != context.Canceled {
t.Errorf("re: expected context.Canceled but got %v", err)
} else {
t.Log("re.Emit err:", err)
}
re.Close()
close(wait)
}()
cancel()
_, err = res.Next()
if err != context.Canceled {
t.Errorf("res: expected context.Canceled but got %v", err)
} else {
t.Log("res.Emit err:", err)
}
<-wait
}