You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/command/stacks_test.go

41 lines
1.1 KiB

// Copyright IBM Corp. 2014, 2026
// SPDX-License-Identifier: BUSL-1.1
package command
import (
"reflect"
"testing"
"google.golang.org/grpc/metadata"
)
func TestStacksPluginConfig_ToMetadata(t *testing.T) {
expected := metadata.Pairs(
"tfc-address", "https://app.staging.terraform.io",
"tfc-base-path", "/api/v2/",
"tfc-display-hostname", "app.staging.terraform.io",
"tfc-token", "not-a-legit-token",
"tfc-organization", "example-corp",
"tfc-project", "example-project",
"tfc-stack", "example-stack",
"terraform-binary-path", "",
"terminal-width", "78",
)
inputStruct := StacksPluginConfig{
Address: "https://app.staging.terraform.io",
BasePath: "/api/v2/",
DisplayHostname: "app.staging.terraform.io",
Token: "not-a-legit-token",
OrganizationName: "example-corp",
ProjectName: "example-project",
StackName: "example-stack",
TerraformBinaryPath: "",
TerminalWidth: 78,
}
result := inputStruct.ToMetadata()
if !reflect.DeepEqual(expected, result) {
t.Fatalf("Expected: %#v\nGot: %#v\n", expected, result)
}
}