@@ -129,10 +129,14 @@ descriptionLong: test-description-long
129
129
130
130
want := ExtensionList {
131
131
{
132
- RootCommand : types.RootCommand {
133
- Name : "test-command" ,
134
- Description : "test-description" ,
135
- DescriptionLong : "test-description-long" ,
132
+ ConfigMapName : "bad-data" ,
133
+ ConfigMapNamespace : "" ,
134
+ Extension : Extension {
135
+ RootCommand : types.RootCommand {
136
+ Name : "test-command" ,
137
+ Description : "test-description" ,
138
+ DescriptionLong : "test-description-long" ,
139
+ },
136
140
},
137
141
},
138
142
}
@@ -251,70 +255,74 @@ create:
251
255
}
252
256
}
253
257
254
- func fixTestExtension (name string ) Extension {
255
- return Extension {
256
- RootCommand : types.RootCommand {
257
- Name : name ,
258
- Description : "test-description" ,
259
- DescriptionLong : "test-description-long" ,
260
- },
261
- Resource : & types.ResourceInfo {
262
- Scope : types .NamespaceScope ,
263
- Kind : "TestKind" ,
264
- Group : "test.group" ,
265
- Version : "v1" ,
266
- },
267
- TemplateCommands : & TemplateCommands {
268
- GetCommand : & types.GetCommand {
269
- Description : "test-get-description" ,
270
- DescriptionLong : "test-get-description-long" ,
271
- Parameters : []types.Parameter {
272
- {
273
- Path : ".metadata.generation" ,
274
- Name : "generation" ,
275
- },
276
- },
277
- },
278
- ExplainCommand : & types.ExplainCommand {
258
+ func fixTestExtension (name string ) ExtensionItem {
259
+ return ExtensionItem {
260
+ ConfigMapName : name ,
261
+ ConfigMapNamespace : "" ,
262
+ Extension : Extension {
263
+ RootCommand : types.RootCommand {
264
+ Name : name ,
279
265
Description : "test-description" ,
280
266
DescriptionLong : "test-description-long" ,
281
- Output : "test-explain-output" ,
282
267
},
283
- DeleteCommand : & types.DeleteCommand {
284
- Description : "test-delete-description" ,
285
- DescriptionLong : "test-delete-description-long" ,
268
+ Resource : & types.ResourceInfo {
269
+ Scope : types .NamespaceScope ,
270
+ Kind : "TestKind" ,
271
+ Group : "test.group" ,
272
+ Version : "v1" ,
286
273
},
287
- CreateCommand : & types.CreateCommand {
288
- Description : "create test resource" ,
289
- DescriptionLong : "use this command to create test resource" ,
290
- CustomFlags : []types.CustomFlag {
291
- {
292
- Type : types .StringCustomFlagType ,
293
- Name : "test-flag" ,
294
- Description : "test-flag description" ,
295
- Shorthand : "t" ,
296
- Path : ".spec.test.field" ,
297
- DefaultValue : "test-default" ,
298
- Required : true ,
274
+ TemplateCommands : & TemplateCommands {
275
+ GetCommand : & types.GetCommand {
276
+ Description : "test-get-description" ,
277
+ DescriptionLong : "test-get-description-long" ,
278
+ Parameters : []types.Parameter {
279
+ {
280
+ Path : ".metadata.generation" ,
281
+ Name : "generation" ,
282
+ },
299
283
},
300
- {
301
- Type : types .PathCustomFlagType ,
302
- Name : "test-flag-2" ,
303
- Description : "test-flag-2 description" ,
304
- Shorthand : "f" ,
305
- Path : ".spec.test.field2" ,
306
- DefaultValue : "test-default2" ,
307
- Required : false ,
284
+ },
285
+ ExplainCommand : & types.ExplainCommand {
286
+ Description : "test-description" ,
287
+ DescriptionLong : "test-description-long" ,
288
+ Output : "test-explain-output" ,
289
+ },
290
+ DeleteCommand : & types.DeleteCommand {
291
+ Description : "test-delete-description" ,
292
+ DescriptionLong : "test-delete-description-long" ,
293
+ },
294
+ CreateCommand : & types.CreateCommand {
295
+ Description : "create test resource" ,
296
+ DescriptionLong : "use this command to create test resource" ,
297
+ CustomFlags : []types.CustomFlag {
298
+ {
299
+ Type : types .StringCustomFlagType ,
300
+ Name : "test-flag" ,
301
+ Description : "test-flag description" ,
302
+ Shorthand : "t" ,
303
+ Path : ".spec.test.field" ,
304
+ DefaultValue : "test-default" ,
305
+ Required : true ,
306
+ },
307
+ {
308
+ Type : types .PathCustomFlagType ,
309
+ Name : "test-flag-2" ,
310
+ Description : "test-flag-2 description" ,
311
+ Shorthand : "f" ,
312
+ Path : ".spec.test.field2" ,
313
+ DefaultValue : "test-default2" ,
314
+ Required : false ,
315
+ },
308
316
},
309
317
},
310
318
},
311
- },
312
- CoreCommands : [] CoreCommandInfo {
313
- {
314
- ActionID : "test-action-id-1" ,
315
- },
316
- {
317
- ActionID : "test-action-id-2" ,
319
+ CoreCommands : [] CoreCommandInfo {
320
+ {
321
+ ActionID : "test-action-id-1" ,
322
+ } ,
323
+ {
324
+ ActionID : "test-action-id-2" ,
325
+ } ,
318
326
},
319
327
},
320
328
}
0 commit comments