Skip to content

Commit b59a8e0

Browse files
authored
chore: Correct some comments as well as rename new tests (#463)
Signed-off-by: Wendy Arango <[email protected]>
1 parent d8cd826 commit b59a8e0

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

pkg/cli-runtime/config_test.go

+12-12
Original file line numberDiff line numberDiff line change
@@ -336,62 +336,62 @@ func TestConfig_PrintPrompt(t *testing.T) {
336336
printer: config.Eboldf,
337337
stderr: printer.BoldColor.Sprint("hello"),
338338
}, {
339-
name: "Printf",
339+
name: "do not print - Printf",
340340
format: "%s",
341341
args: []interface{}{"hello"},
342342
printer: config.Printf,
343343
}, {
344-
name: "Eprintf",
344+
name: "do not print - Eprintf",
345345
format: "%s",
346346
args: []interface{}{"hello"},
347347
printer: config.Eprintf,
348348
}, {
349-
name: "Infof",
349+
name: "do not print - Infof",
350350
format: "%s",
351351
args: []interface{}{"hello"},
352352
printer: config.Infof,
353353
}, {
354-
name: "Einfof",
354+
name: "do not print - Einfof",
355355
format: "%s",
356356
args: []interface{}{"hello"},
357357
printer: config.Einfof,
358358
}, {
359-
name: "Successf",
359+
name: "do not print - Successf",
360360
format: "%s",
361361
args: []interface{}{"hello"},
362362
printer: config.Successf,
363363
}, {
364-
name: "Esuccessf",
364+
name: "do not print - Esuccessf",
365365
format: "%s",
366366
args: []interface{}{"hello"},
367367
printer: config.Esuccessf,
368368
}, {
369-
name: "Faintf",
369+
name: "do not print - Faintf",
370370
format: "%s",
371371
args: []interface{}{"hello"},
372372
printer: config.Faintf,
373373
}, {
374-
name: "Efaintf",
374+
name: "do not print - Efaintf",
375375
format: "%s",
376376
args: []interface{}{"hello"},
377377
printer: config.Efaintf,
378378
}, {
379-
name: "Errorf",
379+
name: "do not print - Errorf",
380380
format: "%s",
381381
args: []interface{}{"hello"},
382382
printer: config.Errorf,
383383
}, {
384-
name: "Eerrorf",
384+
name: "do not print - Eerrorf",
385385
format: "%s",
386386
args: []interface{}{"hello"},
387387
printer: config.Eerrorf,
388388
}, {
389-
name: "Boldf",
389+
name: "do not print - Boldf",
390390
format: "%s",
391391
args: []interface{}{"hello"},
392392
printer: config.Boldf,
393393
}, {
394-
name: "Eboldf",
394+
name: "do not print - Eboldf",
395395
format: "%s",
396396
args: []interface{}{"hello"},
397397
printer: config.Eboldf,

pkg/commands/workload.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -449,13 +449,12 @@ func (opts *WorkloadOptions) PublishLocalSource(ctx context.Context, c *cli.Conf
449449
if opts.LocalPath == "" {
450450
return true, nil
451451
}
452-
// showPrompts is the opposite to c.NoColor
453-
// to determine whether there should be prompts or not
454452

455453
var okToPush bool
456454
taggedImage := strings.Split(workload.Spec.Source.Image, "@sha")[0]
457455
if shouldPrint {
458-
// display survey to publish local source if user
456+
// display survey to publish local source if user did not use
457+
// --yes flag to accept workload create/update
459458
okToPush = opts.checkToPublishLocalSource(taggedImage, c, workload)
460459
if !okToPush {
461460
return okToPush, nil
@@ -492,6 +491,7 @@ func (opts *WorkloadOptions) PublishLocalSource(ctx context.Context, c *cli.Conf
492491
currentRegistryOpts := source.RegistryOpts{CACertPaths: opts.CACertPaths, RegistryUsername: opts.RegistryUsername, RegistryPassword: opts.RegistryPassword, RegistryToken: opts.RegistryToken}
493492
var reg registry.Registry
494493
var err error
494+
// if there is no color or there should not be any prompts, skip the progress bar
495495
if c.NoColor || !shouldPrint {
496496
reg, err = source.NewRegistry(ctx, &currentRegistryOpts)
497497
} else {

pkg/commands/workload_create.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ func (opts *WorkloadCreateOptions) Exec(ctx context.Context, c *cli.Config) erro
131131
c.Printf("\n")
132132
}
133133
} else if opts.Output != "" && opts.Yes {
134-
// since there are no prompts, set okToApply to true (accepted through --yes)
134+
// since there are no prompts, set okToCreate to true (accepted through --yes)
135135
okToCreate = true
136136
if _, err := opts.PublishLocalSource(ctx, c, workload, workload, shouldPrint); err != nil {
137137
return err

0 commit comments

Comments
 (0)