Skip to content

Commit 533e96a

Browse files
committed
adjust newapp/newbuild error messages (arg classification vs. actual processing)
1 parent cf406ea commit 533e96a

File tree

5 files changed

+21
-18
lines changed

5 files changed

+21
-18
lines changed

pkg/generate/app/errors.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ type ErrNoMatch struct {
1717

1818
func (e ErrNoMatch) Error() string {
1919
if len(e.Qualifier) != 0 {
20-
return fmt.Sprintf("no match for %q: %s", e.Value, e.Qualifier)
20+
return fmt.Sprintf("unable to locate resource for %q: %s", e.Value, e.Qualifier)
2121
}
22-
return fmt.Sprintf("no match for %q", e.Value)
22+
return fmt.Sprintf("unable to locate resource for %q", e.Value)
2323
}
2424

2525
// Suggestion is the usage error message returned when no match is found.

pkg/oc/cli/cmd/newapp.go

+7-11
Original file line numberDiff line numberDiff line change
@@ -714,24 +714,20 @@ func handleError(err error, baseName, commandName, commandPath string, config *n
714714
transformError(err, baseName, commandName, commandPath, groups)
715715
}
716716
buf := &bytes.Buffer{}
717-
if len(config.ArgumentClassificationErrors) > 0 {
718-
fmt.Fprintf(buf, "Errors occurred while determining argument types:\n")
719-
for _, classErr := range config.ArgumentClassificationErrors {
720-
fmt.Fprintf(buf, fmt.Sprintf("\n%s: %v\n", classErr.Key, classErr.Value))
721-
}
722-
fmt.Fprint(buf, "\n")
723-
// this print serves as a header for the printing of the errorGroups, but
724-
// only print it if we precede with classification errors, to help distinguish
725-
// between the two
726-
fmt.Fprintln(buf, "Errors occurred during resource creation:")
727-
}
728717
for _, group := range groups {
729718
fmt.Fprint(buf, kcmdutil.MultipleErrors("error: ", group.errs))
730719
if len(group.suggestion) > 0 {
731720
fmt.Fprintln(buf)
732721
}
733722
fmt.Fprint(buf, group.suggestion)
734723
}
724+
if len(config.ArgumentClassificationErrors) > 0 && len(groups) > 0 {
725+
fmt.Fprintf(buf, "\nFor further assistance, %s classification of the argument types resulted in the following:\n", commandName)
726+
for _, classErr := range config.ArgumentClassificationErrors {
727+
fmt.Fprintf(buf, fmt.Sprintf("\n%s: %v\n", classErr.Key, classErr.Value))
728+
}
729+
fmt.Fprintf(buf, fmt.Sprintf("\n%s", config.ArgumentClassificationWinner))
730+
}
735731
return fmt.Errorf(buf.String())
736732
}
737733

pkg/oc/generate/app/cmd/newapp.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ type AppConfig struct {
132132
OriginNamespace string
133133

134134
ArgumentClassificationErrors []ArgumentClassificationError
135+
ArgumentClassificationWinner string
135136
}
136137

137138
type ArgumentClassificationError struct {
@@ -312,6 +313,7 @@ func (c *AppConfig) tryToAddTemplateArguments(s string) bool {
312313
// AddArguments converts command line arguments into the appropriate bucket based on what they look like
313314
func (c *AppConfig) AddArguments(args []string) []string {
314315
unknown := []string{}
316+
winnerFmt := "The argument %s passed the %s classification tests"
315317
c.ArgumentClassificationErrors = []ArgumentClassificationError{}
316318
for _, s := range args {
317319
if len(s) == 0 {
@@ -320,9 +322,14 @@ func (c *AppConfig) AddArguments(args []string) []string {
320322

321323
switch {
322324
case c.tryToAddEnvironmentArguments(s):
325+
c.ArgumentClassificationWinner = fmt.Sprintf(winnerFmt, s, "environment")
323326
case c.tryToAddSourceArguments(s):
324-
case c.tryToAddComponentArguments(s):
327+
c.ArgumentClassificationWinner = fmt.Sprintf(winnerFmt, s, "source")
325328
case c.tryToAddTemplateArguments(s):
329+
c.ArgumentClassificationWinner = fmt.Sprintf(winnerFmt, s, "template")
330+
case c.tryToAddComponentArguments(s):
331+
// NOTE, component argument classification currently is the most lenient, so we save it for the end
332+
c.ArgumentClassificationWinner = fmt.Sprintf(winnerFmt, s, "component")
326333
default:
327334
glog.V(2).Infof("treating %s as unknown\n", s)
328335
unknown = append(unknown, s)

test/cmd/newapp.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -346,8 +346,8 @@ os::cmd::expect_success_and_text 'oc new-app --dry-run --docker-image=mysql' 'Th
346346
os::cmd::expect_success_and_text 'oc new-app --dry-run --docker-image=mysql' "WARNING: Image \"mysql\" runs as the 'root' user"
347347

348348
# verify multiple errors are displayed together, a nested error is returned, and that the usage message is displayed
349-
os::cmd::expect_failure_and_text 'oc new-app --dry-run __template_fail __templatefile_fail' 'error: no match for "__template_fail"'
350-
os::cmd::expect_failure_and_text 'oc new-app --dry-run __template_fail __templatefile_fail' 'error: no match for "__templatefile_fail"'
349+
os::cmd::expect_failure_and_text 'oc new-app --dry-run __template_fail __templatefile_fail' 'error: unable to locate resource for "__template_fail"'
350+
os::cmd::expect_failure_and_text 'oc new-app --dry-run __template_fail __templatefile_fail' 'error: unable to locate resource for "__templatefile_fail"'
351351
os::cmd::expect_failure_and_text 'oc new-app --dry-run __template_fail __templatefile_fail' 'error: unable to find the specified template file'
352352
os::cmd::expect_failure_and_text 'oc new-app --dry-run __template_fail __templatefile_fail' "The 'oc new-app' command will match arguments"
353353

@@ -448,7 +448,7 @@ os::cmd::expect_success_and_text 'oc new-app -f test/testdata/circular.yaml' 'sh
448448
os::cmd::expect_success_and_not_text 'oc new-app -f test/testdata/bc-from-imagestreamimage.json --dry-run' 'Unable to follow reference type'
449449

450450
# do not allow use of non-existent image (should fail)
451-
os::cmd::expect_failure_and_text 'oc new-app openshift/bogusimage https://github.com/openshift/ruby-hello-world.git -o yaml' "no match for"
451+
os::cmd::expect_failure_and_text 'oc new-app openshift/bogusimage https://github.com/openshift/ruby-hello-world.git -o yaml' "unable to locate resource for"
452452
# allow use of non-existent image (should succeed)
453453
os::cmd::expect_success 'oc new-app openshift/bogusimage https://github.com/openshift/ruby-hello-world.git -o yaml --allow-missing-images'
454454

test/integration/newapp_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ func TestNewAppResolve(t *testing.T) {
154154
},
155155
},
156156
})},
157-
expectedErr: `no match for "mysql:invalid`,
157+
expectedErr: `unable to locate resource for "mysql:invalid`,
158158
},
159159
{
160160
name: "Successful mysql builder",

0 commit comments

Comments
 (0)