mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-21 16:00:41 -04:00
91 lines
2.3 KiB
Go
91 lines
2.3 KiB
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package arguments
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
"github.com/google/go-cmp/cmp/cmpopts"
|
|
)
|
|
|
|
func TestParseVersion_basicValidation(t *testing.T) {
|
|
testCases := map[string]struct {
|
|
args []string
|
|
want *Version
|
|
wantErrText string
|
|
}{
|
|
"defaults": {
|
|
args: nil,
|
|
want: versionArgsWithDefaults(nil),
|
|
},
|
|
"version flag short": {
|
|
args: []string{"-v"},
|
|
want: versionArgsWithDefaults(nil),
|
|
},
|
|
"version flag long": {
|
|
args: []string{"-version"},
|
|
want: versionArgsWithDefaults(nil),
|
|
},
|
|
"version flag double dash": {
|
|
args: []string{"--version"},
|
|
want: versionArgsWithDefaults(nil),
|
|
},
|
|
"json flag": {
|
|
args: []string{"-json"},
|
|
want: versionArgsWithDefaults(func(version *Version) {
|
|
version.ViewOptions.ViewType = ViewJSON
|
|
}),
|
|
},
|
|
"multiple version flags": {
|
|
args: []string{"-v", "-version"},
|
|
want: versionArgsWithDefaults(nil),
|
|
},
|
|
"invalid flag": {
|
|
args: []string{"-foo"},
|
|
want: versionArgsWithDefaults(func(version *Version) {}),
|
|
wantErrText: "Failed to parse command-line flags: flag provided but not defined: -foo",
|
|
},
|
|
}
|
|
|
|
cmpOpts := cmpopts.IgnoreUnexported(ViewOptions{})
|
|
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
got, closer, diags := ParseVersion(tc.args)
|
|
defer closer()
|
|
|
|
if tc.wantErrText != "" && len(diags) == 0 {
|
|
t.Errorf("test wanted error but got nothing")
|
|
} else if tc.wantErrText == "" && len(diags) > 0 {
|
|
t.Errorf("test didn't expect errors but got some: %s", diags.ErrWithWarnings())
|
|
} else if tc.wantErrText != "" && len(diags) > 0 {
|
|
errStr := diags.ErrWithWarnings().Error()
|
|
if !strings.Contains(errStr, tc.wantErrText) {
|
|
t.Errorf("the returned diagnostics does not contain the expected error message.\ndiags:\n%s\nwanted: %s\n", errStr, tc.wantErrText)
|
|
}
|
|
}
|
|
if diff := cmp.Diff(tc.want, got, cmpOpts); diff != "" {
|
|
t.Errorf("unexpected result\n%s", diff)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func versionArgsWithDefaults(mutate func(version *Version)) *Version {
|
|
ret := &Version{
|
|
ViewOptions: ViewOptions{
|
|
ViewType: ViewHuman,
|
|
InputEnabled: false,
|
|
},
|
|
}
|
|
if mutate != nil {
|
|
mutate(ret)
|
|
}
|
|
return ret
|
|
}
|