mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-19 17:59:05 -05:00
Signed-off-by: Hefeweizen <jmales@gmail.com> Signed-off-by: Christian Mesh <christianmesh1@gmail.com> Signed-off-by: Syasusu <syasusu@163.com> Co-authored-by: Hefeweizen <jmales@gmail.com> Co-authored-by: Syasusu <syasusu@163.com>
93 lines
2.9 KiB
Go
93 lines
2.9 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 (
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
)
|
|
|
|
func TestParseView(t *testing.T) {
|
|
testCases := map[string]struct {
|
|
args []string
|
|
want *View
|
|
wantArgs []string
|
|
}{
|
|
"nil": {
|
|
nil,
|
|
&View{NoColor: false, CompactWarnings: false, ConsolidateWarnings: true, Concise: false},
|
|
nil,
|
|
},
|
|
"empty": {
|
|
[]string{},
|
|
&View{NoColor: false, CompactWarnings: false, ConsolidateWarnings: true, Concise: false},
|
|
[]string{},
|
|
},
|
|
"none matching": {
|
|
[]string{"-foo", "bar", "-baz"},
|
|
&View{NoColor: false, CompactWarnings: false, ConsolidateWarnings: true, Concise: false},
|
|
[]string{"-foo", "bar", "-baz"},
|
|
},
|
|
"no-color": {
|
|
[]string{"-foo", "-no-color", "-baz"},
|
|
&View{NoColor: true, CompactWarnings: false, ConsolidateWarnings: true, Concise: false},
|
|
[]string{"-foo", "-baz"},
|
|
},
|
|
"compact-warnings": {
|
|
[]string{"-foo", "-compact-warnings", "-baz"},
|
|
&View{NoColor: false, CompactWarnings: true, ConsolidateWarnings: true, Concise: false},
|
|
[]string{"-foo", "-baz"},
|
|
},
|
|
"concise": {
|
|
[]string{"-foo", "-concise", "-baz"},
|
|
&View{NoColor: false, CompactWarnings: false, ConsolidateWarnings: true, Concise: true},
|
|
[]string{"-foo", "-baz"},
|
|
},
|
|
"no-color and compact-warnings": {
|
|
[]string{"-foo", "-no-color", "-compact-warnings", "-baz"},
|
|
&View{NoColor: true, CompactWarnings: true, ConsolidateWarnings: true, Concise: false},
|
|
[]string{"-foo", "-baz"},
|
|
},
|
|
"no-color and concise": {
|
|
[]string{"-foo", "-no-color", "-concise", "-baz"},
|
|
&View{NoColor: true, CompactWarnings: false, ConsolidateWarnings: true, Concise: true},
|
|
[]string{"-foo", "-baz"},
|
|
},
|
|
"concise and compact-warnings": {
|
|
[]string{"-foo", "-concise", "-compact-warnings", "-baz"},
|
|
&View{NoColor: false, CompactWarnings: true, ConsolidateWarnings: true, Concise: true},
|
|
[]string{"-foo", "-baz"},
|
|
},
|
|
"all three": {
|
|
[]string{"-foo", "-no-color", "-compact-warnings", "-concise", "-baz"},
|
|
&View{NoColor: true, CompactWarnings: true, ConsolidateWarnings: true, Concise: true},
|
|
[]string{"-foo", "-baz"},
|
|
},
|
|
"all three, resulting in empty args": {
|
|
[]string{"-no-color", "-compact-warnings", "-concise"},
|
|
&View{NoColor: true, CompactWarnings: true, ConsolidateWarnings: true, Concise: true},
|
|
[]string{},
|
|
},
|
|
"turn off warning consolidation": {
|
|
[]string{"-consolidate-warnings=false"},
|
|
&View{NoColor: false, CompactWarnings: false, ConsolidateWarnings: false, Concise: false},
|
|
[]string{},
|
|
},
|
|
}
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
got, gotArgs := ParseView(tc.args)
|
|
if *got != *tc.want {
|
|
t.Errorf("unexpected result\n got: %#v\nwant: %#v", got, tc.want)
|
|
}
|
|
if !cmp.Equal(gotArgs, tc.wantArgs) {
|
|
t.Errorf("unexpected args\n got: %#v\nwant: %#v", gotArgs, tc.wantArgs)
|
|
}
|
|
})
|
|
}
|
|
}
|