-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathcli_test.go
396 lines (341 loc) · 12.1 KB
/
cli_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
/*
Copyright 2020 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cli
import (
"os"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
internalconfig "sigs.k8s.io/kubebuilder/v2/pkg/cli/internal/config"
"sigs.k8s.io/kubebuilder/v2/pkg/model/config"
"sigs.k8s.io/kubebuilder/v2/pkg/plugin"
)
// Test plugin types and constructors.
type mockPlugin struct {
name string
version plugin.Version
projectVersions []string
}
func (p mockPlugin) Name() string { return p.name }
func (p mockPlugin) Version() plugin.Version { return p.version }
func (p mockPlugin) SupportedProjectVersions() []string { return p.projectVersions }
func makeBasePlugin(name, version string, projVers ...string) plugin.Plugin {
v, err := plugin.ParseVersion(version)
if err != nil {
panic(err)
}
return mockPlugin{name, v, projVers}
}
func makePluginsForKeys(keys ...string) (plugins []plugin.Plugin) {
for _, key := range keys {
n, v := plugin.SplitKey(key)
plugins = append(plugins, makeBasePlugin(n, v, internalconfig.DefaultVersion))
}
return
}
type mockSubcommand struct{}
func (mockSubcommand) UpdateContext(*plugin.Context) {}
func (mockSubcommand) BindFlags(*pflag.FlagSet) {}
func (mockSubcommand) InjectConfig(*config.Config) {}
func (mockSubcommand) Run() error { return nil }
// nolint:maligned
type mockAllPlugin struct {
mockPlugin
mockInitPlugin
mockCreateAPIPlugin
mockCreateWebhookPlugin
mockEditPlugin
}
type mockInitPlugin struct{ mockSubcommand }
type mockCreateAPIPlugin struct{ mockSubcommand }
type mockCreateWebhookPlugin struct{ mockSubcommand }
type mockEditPlugin struct{ mockSubcommand }
// GetInitSubcommand implements plugin.Init
func (p mockInitPlugin) GetInitSubcommand() plugin.InitSubcommand { return p }
// GetCreateAPISubcommand implements plugin.CreateAPI
func (p mockCreateAPIPlugin) GetCreateAPISubcommand() plugin.CreateAPISubcommand { return p }
// GetCreateWebhookSubcommand implements plugin.CreateWebhook
func (p mockCreateWebhookPlugin) GetCreateWebhookSubcommand() plugin.CreateWebhookSubcommand {
return p
}
// GetEditSubcommand implements plugin.Edit
func (p mockEditPlugin) GetEditSubcommand() plugin.EditSubcommand { return p }
func makeAllPlugin(name, version string, projectVersions ...string) plugin.Plugin {
p := makeBasePlugin(name, version, projectVersions...).(mockPlugin)
subcommand := mockSubcommand{}
return mockAllPlugin{
p,
mockInitPlugin{subcommand},
mockCreateAPIPlugin{subcommand},
mockCreateWebhookPlugin{subcommand},
mockEditPlugin{subcommand},
}
}
func makeSetByProjVer(ps ...plugin.Plugin) map[string][]plugin.Plugin {
set := make(map[string][]plugin.Plugin)
for _, p := range ps {
for _, version := range p.SupportedProjectVersions() {
set[version] = append(set[version], p)
}
}
return set
}
func setPluginsFlag(key string) {
os.Args = append(os.Args, "init", "--"+pluginsFlag, key)
}
var _ = Describe("CLI", func() {
var (
c CLI
err error
pluginNameA = "go.example.com"
pluginNameB = "go.test.com"
projectVersions = []string{config.Version2, config.Version3Alpha}
pluginAV1 = makeAllPlugin(pluginNameA, "v1", projectVersions...)
pluginAV2 = makeAllPlugin(pluginNameA, "v2", projectVersions...)
pluginBV1 = makeAllPlugin(pluginNameB, "v1", projectVersions...)
pluginBV2 = makeAllPlugin(pluginNameB, "v2", projectVersions...)
allPlugins = []plugin.Plugin{pluginAV1, pluginAV2, pluginBV1, pluginBV2}
)
Describe("New", func() {
Context("with no plugins specified", func() {
It("should return a valid CLI", func() {
By("setting one plugin")
c, err = New(
WithDefaultPlugins(pluginAV1),
WithPlugins(pluginAV1),
)
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).pluginsFromOptions).To(Equal(makeSetByProjVer(pluginAV1)))
Expect(c.(*cli).resolvedPlugins).To(Equal([]plugin.Plugin{pluginAV1}))
By("setting two plugins with different names and versions")
c, err = New(
WithDefaultPlugins(pluginAV1),
WithPlugins(pluginAV1, pluginBV2),
)
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).pluginsFromOptions).To(Equal(makeSetByProjVer(pluginAV1, pluginBV2)))
Expect(c.(*cli).resolvedPlugins).To(Equal([]plugin.Plugin{pluginAV1}))
By("setting two plugins with the same names and different versions")
c, err = New(
WithDefaultPlugins(pluginAV1),
WithPlugins(pluginAV1, pluginAV2),
)
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).pluginsFromOptions).To(Equal(makeSetByProjVer(pluginAV1, pluginAV2)))
Expect(c.(*cli).resolvedPlugins).To(Equal([]plugin.Plugin{pluginAV1}))
By("setting two plugins with different names and the same version")
c, err = New(
WithDefaultPlugins(pluginAV1),
WithPlugins(pluginAV1, pluginBV1),
)
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).pluginsFromOptions).To(Equal(makeSetByProjVer(pluginAV1, pluginBV1)))
Expect(c.(*cli).resolvedPlugins).To(Equal([]plugin.Plugin{pluginAV1}))
})
It("should return an error", func() {
By("not setting any plugins or default plugins")
_, err = New()
Expect(err).To(MatchError(`no plugins for project version "3-alpha"`))
By("not setting any plugin")
_, err = New(
WithDefaultPlugins(pluginAV1),
)
Expect(err).To(MatchError(`no plugins for project version "3-alpha"`))
By("not setting any default plugins")
_, err = New(
WithPlugins(pluginAV1),
)
Expect(err).To(MatchError(`no default plugins for project version "3-alpha"`))
By("setting two plugins of the same name and version")
_, err = New(
WithDefaultPlugins(pluginAV1),
WithPlugins(pluginAV1, pluginAV1),
)
Expect(err).To(MatchError(`broken pre-set plugins: two plugins have the same key: "go.example.com/v1"`))
})
})
Context("with --plugins set", func() {
var (
args []string
)
BeforeEach(func() {
args = os.Args
})
AfterEach(func() {
os.Args = args
})
It("should return a valid CLI", func() {
By(`setting cliPluginKey to "go"`)
setPluginsFlag("go")
c, err = New(
WithDefaultPlugins(pluginAV1),
WithPlugins(pluginAV1, pluginAV2),
)
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).pluginsFromOptions).To(Equal(makeSetByProjVer(pluginAV1, pluginAV2)))
Expect(c.(*cli).resolvedPlugins).To(Equal([]plugin.Plugin{pluginAV1}))
By(`setting cliPluginKey to "go/v1"`)
setPluginsFlag("go/v1")
c, err = New(
WithDefaultPlugins(pluginAV1),
WithPlugins(pluginAV1, pluginBV2),
)
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).pluginsFromOptions).To(Equal(makeSetByProjVer(pluginAV1, pluginBV2)))
Expect(c.(*cli).resolvedPlugins).To(Equal([]plugin.Plugin{pluginAV1}))
By(`setting cliPluginKey to "go/v2"`)
setPluginsFlag("go/v2")
c, err = New(
WithDefaultPlugins(pluginAV1),
WithPlugins(pluginAV1, pluginBV2),
)
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).pluginsFromOptions).To(Equal(makeSetByProjVer(pluginAV1, pluginBV2)))
Expect(c.(*cli).resolvedPlugins).To(Equal([]plugin.Plugin{pluginBV2}))
By(`setting cliPluginKey to "go.test.com/v2"`)
setPluginsFlag("go.test.com/v2")
c, err = New(
WithDefaultPlugins(pluginAV1),
WithPlugins(allPlugins...),
)
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).pluginsFromOptions).To(Equal(makeSetByProjVer(allPlugins...)))
Expect(c.(*cli).resolvedPlugins).To(Equal([]plugin.Plugin{pluginBV2}))
})
It("should return an error", func() {
By(`setting cliPluginKey to an non-existent key "foo"`)
setPluginsFlag("foo")
_, err = New(
WithDefaultPlugins(pluginAV1),
WithPlugins(pluginAV1, pluginAV2),
)
Expect(err).To(MatchError(errAmbiguousPlugin{
key: "foo",
msg: `no names match, possible plugins: ["go.example.com/v1" "go.example.com/v2"]`,
}))
})
})
Context("WithCommandName", func() {
It("should use the provided command name", func() {
commandName := "other-command"
c, err = New(
WithCommandName(commandName),
WithDefaultPlugins(pluginAV1),
WithPlugins(allPlugins...),
)
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).commandName).To(Equal(commandName))
})
})
Context("WithVersion", func() {
It("should use the provided version string", func() {
version := "Version: 0.0.0"
c, err = New(WithVersion(version), WithDefaultPlugins(pluginAV1), WithPlugins(allPlugins...))
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).version).To(Equal(version))
})
})
Context("WithDefaultProjectVersion", func() {
var defaultProjectVersion string
It("should use the provided default project version", func() {
By(`using version "2"`)
defaultProjectVersion = "2"
c, err = New(
WithDefaultProjectVersion(defaultProjectVersion),
WithDefaultPlugins(pluginAV1),
WithPlugins(allPlugins...),
)
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).defaultProjectVersion).To(Equal(defaultProjectVersion))
By(`using version "3-alpha"`)
defaultProjectVersion = "3-alpha"
c, err = New(
WithDefaultProjectVersion(defaultProjectVersion),
WithDefaultPlugins(pluginAV1),
WithPlugins(allPlugins...),
)
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).defaultProjectVersion).To(Equal(defaultProjectVersion))
})
It("should fail for invalid project versions", func() {
By(`using version "0"`)
defaultProjectVersion = "0"
c, err = New(
WithDefaultProjectVersion(defaultProjectVersion),
WithDefaultPlugins(pluginAV1),
WithPlugins(allPlugins...),
)
Expect(err).To(HaveOccurred())
By(`using version "1-gamma"`)
defaultProjectVersion = "1-gamma"
c, err = New(
WithDefaultProjectVersion(defaultProjectVersion),
WithDefaultPlugins(pluginAV1),
WithPlugins(allPlugins...),
)
Expect(err).To(HaveOccurred())
By(`using version "1alpha"`)
defaultProjectVersion = "1alpha"
c, err = New(
WithDefaultProjectVersion(defaultProjectVersion),
WithDefaultPlugins(pluginAV1),
WithPlugins(allPlugins...),
)
Expect(err).To(HaveOccurred())
})
})
Context("WithExtraCommands", func() {
It("should work successfully with extra commands", func() {
commandTest := &cobra.Command{
Use: "example",
}
c, err = New(
WithExtraCommands(commandTest),
WithDefaultPlugins(pluginAV1),
WithPlugins(allPlugins...),
)
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).extraCommands[0]).NotTo(BeNil())
Expect(c.(*cli).extraCommands[0].Use).To(Equal(commandTest.Use))
})
})
Context("WithCompletion", func() {
It("should add the completion command if requested", func() {
By("not providing WithCompletion")
c, err = New(WithDefaultPlugins(pluginAV1), WithPlugins(allPlugins...))
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).completionCommand).To(BeFalse())
By("providing WithCompletion")
c, err = New(WithCompletion, WithDefaultPlugins(pluginAV1), WithPlugins(allPlugins...))
Expect(err).NotTo(HaveOccurred())
Expect(c).NotTo(BeNil())
Expect(c.(*cli).completionCommand).To(BeTrue())
})
})
})
})