forked from ipfs/go-ipfs-cmds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommand_test.go
225 lines (198 loc) · 4.48 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
package cmds
import (
"bytes"
"io"
"testing"
)
type dummyCloser struct{}
func (c dummyCloser) Close() error {
return nil
}
func newBufferResponseEmitter() ResponseEmitter {
buf := bytes.NewBuffer(nil)
wc := writecloser{Writer: buf}
return NewResponseEmitter(wc, Text)
}
func noop(req Request, res Response) {
return
}
type writecloser struct {
io.Writer
io.Closer
}
func TestOptionValidation(t *testing.T) {
cmd := Command{
Options: []Option{
IntOption("b", "beep", "enables beeper"),
StringOption("B", "boop", "password for booper"),
},
Run: noop,
}
opts, _ := cmd.GetOptions(nil)
re := newBufferResponseEmitter()
req, _ := NewRequest(nil, nil, nil, nil, nil, opts)
req.SetOption("beep", true)
err := cmd.Call(req, re)
if err == nil {
t.Error("Should have failed (incorrect type)")
}
re = newBufferResponseEmitter()
req, _ = NewRequest(nil, nil, nil, nil, nil, opts)
req.SetOption("beep", 5)
err = cmd.Call(req, re)
if err != nil {
t.Error(err, "Should have passed")
}
re = newBufferResponseEmitter()
req, _ = NewRequest(nil, nil, nil, nil, nil, opts)
req.SetOption("beep", 5)
req.SetOption("boop", "test")
err = cmd.Call(req, re)
if err != nil {
t.Error("Should have passed")
}
re = newBufferResponseEmitter()
req, _ = NewRequest(nil, nil, nil, nil, nil, opts)
req.SetOption("b", 5)
req.SetOption("B", "test")
err = cmd.Call(req, re)
if err != nil {
t.Error("Should have passed")
}
re = newBufferResponseEmitter()
req, _ = NewRequest(nil, nil, nil, nil, nil, opts)
req.SetOption("foo", 5)
err = cmd.Call(req, re)
if err != nil {
t.Error("Should have passed")
}
re = newBufferResponseEmitter()
req, _ = NewRequest(nil, nil, nil, nil, nil, opts)
req.SetOption(EncShort, "json")
err = cmd.Call(req, re)
if err != nil {
t.Error("Should have passed")
}
re = newBufferResponseEmitter()
req, _ = NewRequest(nil, nil, nil, nil, nil, opts)
req.SetOption("b", "100")
err = cmd.Call(req, re)
if err != nil {
t.Error("Should have passed")
}
re = newBufferResponseEmitter()
req, _ = NewRequest(nil, nil, nil, nil, &cmd, opts)
req.SetOption("b", ":)")
err = cmd.Call(req, re)
if err == nil {
t.Error("Should have failed (string value not convertible to int)")
}
err = req.SetOptions(map[string]interface{}{
"b": 100,
})
if err != nil {
t.Error("Should have passed")
}
err = req.SetOptions(map[string]interface{}{
"b": ":)",
})
if err == nil {
t.Error("Should have failed (string value not convertible to int)")
}
}
func TestRegistration(t *testing.T) {
cmdA := &Command{
Options: []Option{
IntOption("beep", "number of beeps"),
},
Run: noop,
}
cmdB := &Command{
Options: []Option{
IntOption("beep", "number of beeps"),
},
Run: noop,
Subcommands: map[string]*Command{
"a": cmdA,
},
}
cmdC := &Command{
Options: []Option{
StringOption("encoding", "data encoding type"),
},
Run: noop,
}
path := []string{"a"}
_, err := cmdB.GetOptions(path)
if err == nil {
t.Error("Should have failed (option name collision)")
}
_, err = cmdC.GetOptions(nil)
if err == nil {
t.Error("Should have failed (option name collision with global options)")
}
}
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: HelpText{
ShortDescription: "This is other short",
},
}
cmdA := &Command{
Helptext: 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")
}
}