forked from urfave/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
args_test.go
220 lines (202 loc) · 4.86 KB
/
args_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
package cli
import (
"context"
"errors"
"testing"
"time"
"github.com/stretchr/testify/require"
)
func TestArgumentsRootCommand(t *testing.T) {
cmd := buildMinimalTestCommand()
var ival int64
var fval float64
var fvals []float64
cmd.Arguments = []Argument{
&IntArg{
Name: "ia",
Min: 1,
Max: 1,
Destination: &ival,
},
&FloatArg{
Name: "fa",
Min: 0,
Max: 2,
Destination: &fval,
Values: &fvals,
},
}
require.NoError(t, cmd.Run(context.Background(), []string{"foo", "10"}))
require.Equal(t, int64(10), ival)
require.NoError(t, cmd.Run(context.Background(), []string{"foo", "12", "10.1"}))
require.Equal(t, int64(12), ival)
require.Equal(t, []float64{10.1}, fvals)
require.NoError(t, cmd.Run(context.Background(), []string{"foo", "13", "10.1", "11.09"}))
require.Equal(t, int64(13), ival)
require.Equal(t, []float64{10.1, 11.09}, fvals)
require.Error(t, errors.New("No help topic for '12.1"), cmd.Run(context.Background(), []string{"foo", "13", "10.1", "11.09", "12.1"}))
require.Equal(t, int64(13), ival)
require.Equal(t, []float64{10.1, 11.09}, fvals)
}
func TestArgumentsSubcommand(t *testing.T) {
cmd := buildMinimalTestCommand()
var ifval int64
var svals []string
var tval time.Time
cmd.Commands = []*Command{
{
Name: "subcmd",
Flags: []Flag{
&IntFlag{
Name: "foo",
Value: 10,
Destination: &ifval,
},
},
Arguments: []Argument{
&TimestampArg{
Name: "ta",
Min: 1,
Max: 1,
Destination: &tval,
Config: TimestampConfig{
Layout: time.RFC3339,
},
},
&StringArg{
Name: "sa",
Min: 1,
Max: 3,
Values: &svals,
},
},
},
}
require.Error(t, errors.New("sufficient count of arg sa not provided, given 0 expected 1"), cmd.Run(context.Background(), []string{"foo", "subcmd", "2006-01-02T15:04:05Z"}))
require.NoError(t, cmd.Run(context.Background(), []string{"foo", "subcmd", "2006-01-02T15:04:05Z", "fubar"}))
require.Equal(t, time.Date(2006, time.January, 2, 15, 4, 5, 0, time.UTC), tval)
require.Equal(t, []string{"fubar"}, svals)
require.NoError(t, cmd.Run(context.Background(), []string{"foo", "subcmd", "--foo", "100", "2006-01-02T15:04:05Z", "fubar", "some"}))
require.Equal(t, int64(100), ifval)
require.Equal(t, time.Date(2006, time.January, 2, 15, 4, 5, 0, time.UTC), tval)
require.Equal(t, []string{"fubar", "some"}, svals)
}
func TestArgsUsage(t *testing.T) {
arg := &IntArg{
Name: "ia",
Min: 0,
Max: 1,
}
tests := []struct {
name string
min int
max int
expected string
}{
{
name: "optional",
min: 0,
max: 1,
expected: "[ia]",
},
{
name: "zero or more",
min: 0,
max: 2,
expected: "[ia ...]",
},
{
name: "one",
min: 1,
max: 1,
expected: "ia [ia ...]",
},
{
name: "many",
min: 2,
max: 1,
expected: "ia [ia ...]",
},
{
name: "many2",
min: 2,
max: 0,
expected: "ia [ia ...]",
},
{
name: "unlimited",
min: 2,
max: -1,
expected: "ia [ia ...]",
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
arg.Min, arg.Max = test.min, test.max
require.Equal(t, test.expected, arg.Usage())
})
}
}
func TestSingleOptionalArg(t *testing.T) {
cmd := buildMinimalTestCommand()
var s1 string
arg := &StringArg{
Min: 0,
Max: 1,
Destination: &s1,
}
cmd.Arguments = []Argument{
arg,
}
require.NoError(t, cmd.Run(context.Background(), []string{"foo"}))
require.Equal(t, "", s1)
arg.Value = "bar"
require.NoError(t, cmd.Run(context.Background(), []string{"foo"}))
require.Equal(t, "bar", s1)
require.NoError(t, cmd.Run(context.Background(), []string{"foo", "zbar"}))
require.Equal(t, "zbar", s1)
}
func TestUnboundedArgs(t *testing.T) {
arg := &StringArg{
Min: 0,
Max: -1,
}
tests := []struct {
name string
args []string
values []string
expected []string
}{
{
name: "cmd accepts no args",
args: []string{"foo"},
expected: nil,
},
{
name: "cmd uses given args",
args: []string{"foo", "bar", "baz"},
expected: []string{"bar", "baz"},
},
{
name: "cmd uses default values",
args: []string{"foo"},
values: []string{"zbar", "zbaz"},
expected: []string{"zbar", "zbaz"},
},
{
name: "given args override default values",
args: []string{"foo", "bar", "baz"},
values: []string{"zbar", "zbaz"},
expected: []string{"bar", "baz"},
},
}
cmd := buildMinimalTestCommand()
cmd.Arguments = []Argument{arg}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
arg.Values = &test.values
require.NoError(t, cmd.Run(context.Background(), test.args))
require.Equal(t, test.expected, *arg.Values)
})
}
}