-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain_test.go
263 lines (245 loc) · 6.92 KB
/
main_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
package main
import (
"bytes"
"fmt"
"os"
"strings"
"testing"
"github.com/yuuki/binrep/pkg/config"
)
func TestRun_global(t *testing.T) {
if err := os.Setenv("BINREP_BACKEND_ENDPOINT", "s3://binrep-testing"); err != nil {
panic(err)
}
tests := []struct {
desc string
arg string
expectedStatus int
expectedSubOut string
expectedSubErr string
}{
{
desc: "no arg",
arg: "binrep",
expectedStatus: 2,
expectedSubErr: "Usage: binrep",
},
{
desc: "version flag",
arg: "binrep --version",
expectedStatus: 0,
expectedSubErr: fmt.Sprintf("binrep version %s, build %s, date %s", version, commit, date),
},
{
desc: "undefined flag",
arg: "binrep --undefined",
expectedStatus: 1,
expectedSubErr: "--undefined is undefined subcommand or option",
},
{
desc: "credits flag",
arg: "binrep --credits",
expectedStatus: 0,
expectedSubOut: "= Binrep licensed under: =",
},
{
desc: "help flag",
arg: "binrep --help",
expectedStatus: 0,
expectedSubErr: "Usage: binrep",
},
}
for _, tc := range tests {
outStream, errStream := new(bytes.Buffer), new(bytes.Buffer)
cli := &CLI{outStream: outStream, errStream: errStream}
args := strings.Split(tc.arg, " ")
status := cli.Run(args)
if status != tc.expectedStatus {
t.Errorf("desc: %q, status should be %v, not %v", tc.desc, tc.expectedStatus, status)
}
if !strings.Contains(outStream.String(), tc.expectedSubOut) {
t.Errorf("desc: %q, subout should contain %q, got %q", tc.desc, tc.expectedSubOut, outStream.String())
}
if !strings.Contains(errStream.String(), tc.expectedSubErr) {
t.Errorf("desc: %q, subout should contain %q, got %q", tc.desc, tc.expectedSubErr, errStream.String())
}
}
}
func TestRun_endpoint(t *testing.T) {
// Clear endpoint
if err := os.Setenv("BINREP_BACKEND_ENDPOINT", ""); err != nil {
panic(err)
}
tests := []struct {
desc string
arg string
expectedStatus int
expectedSubOut string
expectedSubErr string
}{
{
desc: "--endpoint",
arg: "binrep --endpoint s3://binrep-testing",
expectedStatus: 1,
expectedSubErr: "Usage: binrep",
},
{
desc: "no endpoint value",
arg: "binrep --endpoint",
expectedStatus: 1,
expectedSubErr: "want --endpoint value",
},
{
desc: "no list --help option",
arg: "binrep list",
expectedStatus: 2,
expectedSubErr: "BackendEndpoint required. Use --endpoint or BINREP_BACKEND_ENDPOINT",
},
{
desc: "list --help option",
arg: "binrep list --help",
expectedStatus: 2,
expectedSubErr: "Usage: binrep list",
},
{
desc: "no show --help option",
arg: "binrep list",
expectedStatus: 2,
expectedSubErr: "BackendEndpoint required. Use --endpoint or BINREP_BACKEND_ENDPOINT",
},
{
desc: "show --help option",
arg: "binrep show --help",
expectedStatus: 2,
expectedSubErr: "Usage: binrep show",
},
{
desc: "no push --help option",
arg: "binrep push yuuki/testing ./dummy",
expectedStatus: 2,
expectedSubErr: "BackendEndpoint required. Use --endpoint or BINREP_BACKEND_ENDPOINT",
},
{
desc: "push --help option",
arg: "binrep push --help",
expectedStatus: 2,
expectedSubErr: "Usage: binrep push",
},
{
desc: "no pull --help option",
arg: "binrep pull yuuki/testing ./dummy",
expectedStatus: 2,
expectedSubErr: "BackendEndpoint required. Use --endpoint or BINREP_BACKEND_ENDPOINT",
},
{
desc: "pull --help option",
arg: "binrep pull --help",
expectedStatus: 2,
expectedSubErr: "Usage: binrep pull",
},
}
for _, tc := range tests {
config.Config.BackendEndpoint = ""
outStream, errStream := new(bytes.Buffer), new(bytes.Buffer)
cli := &CLI{outStream: outStream, errStream: errStream}
args := strings.Split(tc.arg, " ")
status := cli.Run(args)
if status != tc.expectedStatus {
t.Errorf("desc: %q, status should be %v, not %v", tc.desc, tc.expectedStatus, status)
}
if !strings.Contains(outStream.String(), tc.expectedSubOut) {
t.Errorf("desc: %q, subout should contain %q, got %q", tc.desc, tc.expectedSubOut, outStream.String())
}
if !strings.Contains(errStream.String(), tc.expectedSubErr) {
t.Errorf("desc: %q, subout should contain %q, got %q", tc.desc, tc.expectedSubErr, errStream.String())
}
}
}
func TestRun_subCommand(t *testing.T) {
if err := os.Setenv("BINREP_BACKEND_ENDPOINT", "s3://binrep-testing"); err != nil {
panic(err)
}
tests := []struct {
desc string
arg string
expectedStatus int
expectedSubOut string
}{
// list
{
desc: "list: display help",
arg: "binrep list --help",
expectedStatus: 2,
expectedSubOut: "Usage: binrep list",
},
{
desc: "list: extra arguments error",
arg: "binrep list hoge",
expectedStatus: 2,
expectedSubOut: "extra arguments",
},
// show
{
desc: "show: display help",
arg: "binrep show --help",
expectedStatus: 2,
expectedSubOut: "Usage: binrep show",
},
{
desc: "show: arguments error",
arg: "binrep show",
expectedStatus: 2,
expectedSubOut: "too few arguments",
},
// push
{
desc: "push: display help",
arg: "binrep push --help",
expectedStatus: 2,
expectedSubOut: "Usage: binrep push",
},
{
desc: "push: arguments error (len: 0)",
arg: "binrep push",
expectedStatus: 2,
expectedSubOut: "too few arguments",
},
{
desc: "push: arguments error (len: 1)",
arg: "binrep push hoge",
expectedStatus: 2,
expectedSubOut: "too few arguments",
},
// pull
{
desc: "pull: display help",
arg: "binrep pull --help",
expectedStatus: 2,
expectedSubOut: "Usage: binrep pull",
},
{
desc: "pull: arguments error (len: 1)",
arg: "binrep pull hoge",
expectedStatus: 2,
expectedSubOut: "too few or many arguments",
},
{
desc: "pull: arguments error (len: 3)",
arg: "binrep pull hoge foo bar",
expectedStatus: 2,
expectedSubOut: "too few or many arguments",
},
}
for _, tc := range tests {
outStream, errStream := new(bytes.Buffer), new(bytes.Buffer)
cli := &CLI{outStream: outStream, errStream: errStream}
args := strings.Split(tc.arg, " ")
status := cli.Run(args)
if status != tc.expectedStatus {
t.Errorf("desc: %q, status should be %v, not %v", tc.desc, tc.expectedStatus, status)
}
if !strings.Contains(errStream.String(), tc.expectedSubOut) {
t.Errorf("desc: %q, subout should contain %q, got %q", tc.desc, tc.expectedSubOut, errStream.String())
}
}
}