Skip to content

fix: annotate multi-words fields #116

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions provider/decode_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package provider_test

import (
"testing"

"github.com/coder/terraform-provider-coder/provider"
"github.com/mitchellh/mapstructure"
"github.com/stretchr/testify/require"
)

func TestDecode(t *testing.T) {
const (
legacyVariable = "Legacy Variable"
legacyVariableName = "Legacy Variable Name"
)

aMap := map[string]interface{}{
"name": "Parameter Name",
"legacy_variable": legacyVariable,
"legacy_variable_name": legacyVariableName,
}

var param provider.Parameter
err := mapstructure.Decode(aMap, &param)
require.NoError(t, err)
require.Equal(t, legacyVariable, param.LegacyVariable)
require.Equal(t, legacyVariableName, param.LegacyVariableName)
}
4 changes: 2 additions & 2 deletions provider/parameter.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ type Parameter struct {
Validation []Validation
Optional bool

LegacyVariableName string
LegacyVariable string
LegacyVariableName string `mapstructure:"legacy_variable_name"`
LegacyVariable string `mapstructure:"legacy_variable"`
}

func parameterDataSource() *schema.Resource {
Expand Down