mirror of https://github.com/hashicorp/terraform
parent
6f32f249f7
commit
0c384e8cd8
@ -0,0 +1,50 @@
|
||||
// Copyright (c) HashiCorp, Inc.
|
||||
// SPDX-License-Identifier: BUSL-1.1
|
||||
|
||||
package arguments
|
||||
|
||||
import "github.com/hashicorp/terraform/internal/tfdiags"
|
||||
|
||||
// ProvidersSchema represents the command-line arguments for the providers
|
||||
// schema command.
|
||||
type ProvidersSchema struct {
|
||||
JSON bool
|
||||
}
|
||||
|
||||
// ParseProvidersSchema processes CLI arguments, returning a ProvidersSchema
|
||||
// value and errors. If errors are encountered, a ProvidersSchema value is
|
||||
// still returned representing the best effort interpretation of the arguments.
|
||||
func ParseProvidersSchema(args []string) (*ProvidersSchema, tfdiags.Diagnostics) {
|
||||
var diags tfdiags.Diagnostics
|
||||
providersSchema := &ProvidersSchema{}
|
||||
|
||||
cmdFlags := defaultFlagSet("providers schema")
|
||||
cmdFlags.BoolVar(&providersSchema.JSON, "json", false, "produce JSON output")
|
||||
|
||||
if err := cmdFlags.Parse(args); err != nil {
|
||||
diags = diags.Append(tfdiags.Sourceless(
|
||||
tfdiags.Error,
|
||||
"Failed to parse command-line flags",
|
||||
err.Error(),
|
||||
))
|
||||
}
|
||||
|
||||
args = cmdFlags.Args()
|
||||
if len(args) > 0 {
|
||||
diags = diags.Append(tfdiags.Sourceless(
|
||||
tfdiags.Error,
|
||||
"Too many command line arguments",
|
||||
"Expected no positional arguments.",
|
||||
))
|
||||
}
|
||||
|
||||
if !providersSchema.JSON {
|
||||
diags = diags.Append(tfdiags.Sourceless(
|
||||
tfdiags.Error,
|
||||
"The -json flag is required",
|
||||
"The `terraform providers schema` command requires the `-json` flag.",
|
||||
))
|
||||
}
|
||||
|
||||
return providersSchema, diags
|
||||
}
|
||||
@ -0,0 +1,100 @@
|
||||
// Copyright (c) HashiCorp, Inc.
|
||||
// SPDX-License-Identifier: BUSL-1.1
|
||||
|
||||
package arguments
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/google/go-cmp/cmp"
|
||||
"github.com/hashicorp/terraform/internal/tfdiags"
|
||||
)
|
||||
|
||||
func TestParseProvidersSchema_valid(t *testing.T) {
|
||||
testCases := map[string]struct {
|
||||
args []string
|
||||
want *ProvidersSchema
|
||||
}{
|
||||
"json": {
|
||||
[]string{"-json"},
|
||||
&ProvidersSchema{
|
||||
JSON: true,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
for name, tc := range testCases {
|
||||
t.Run(name, func(t *testing.T) {
|
||||
got, diags := ParseProvidersSchema(tc.args)
|
||||
if len(diags) > 0 {
|
||||
t.Fatalf("unexpected diags: %v", diags)
|
||||
}
|
||||
if diff := cmp.Diff(tc.want, got); diff != "" {
|
||||
t.Fatalf("unexpected result\n%s", diff)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func TestParseProvidersSchema_invalid(t *testing.T) {
|
||||
testCases := map[string]struct {
|
||||
args []string
|
||||
want *ProvidersSchema
|
||||
wantDiags tfdiags.Diagnostics
|
||||
}{
|
||||
"missing json": {
|
||||
nil,
|
||||
&ProvidersSchema{
|
||||
JSON: false,
|
||||
},
|
||||
tfdiags.Diagnostics{
|
||||
tfdiags.Sourceless(
|
||||
tfdiags.Error,
|
||||
"The -json flag is required",
|
||||
"The `terraform providers schema` command requires the `-json` flag.",
|
||||
),
|
||||
},
|
||||
},
|
||||
"too many positional arguments": {
|
||||
[]string{"-json", "extra"},
|
||||
&ProvidersSchema{
|
||||
JSON: true,
|
||||
},
|
||||
tfdiags.Diagnostics{
|
||||
tfdiags.Sourceless(
|
||||
tfdiags.Error,
|
||||
"Too many command line arguments",
|
||||
"Expected no positional arguments.",
|
||||
),
|
||||
},
|
||||
},
|
||||
"unknown flag and missing json": {
|
||||
[]string{"-wat"},
|
||||
&ProvidersSchema{
|
||||
JSON: false,
|
||||
},
|
||||
tfdiags.Diagnostics{
|
||||
tfdiags.Sourceless(
|
||||
tfdiags.Error,
|
||||
"Failed to parse command-line flags",
|
||||
"flag provided but not defined: -wat",
|
||||
),
|
||||
tfdiags.Sourceless(
|
||||
tfdiags.Error,
|
||||
"The -json flag is required",
|
||||
"The `terraform providers schema` command requires the `-json` flag.",
|
||||
),
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
for name, tc := range testCases {
|
||||
t.Run(name, func(t *testing.T) {
|
||||
got, gotDiags := ParseProvidersSchema(tc.args)
|
||||
if diff := cmp.Diff(tc.want, got); diff != "" {
|
||||
t.Fatalf("unexpected result\n%s", diff)
|
||||
}
|
||||
tfdiags.AssertDiagnosticsMatch(t, gotDiags, tc.wantDiags)
|
||||
})
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue