mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-15 22:00:34 -05:00
* Rename module name from "github.com/hashicorp/terraform" to "github.com/placeholderplaceholderplaceholder/opentf". Signed-off-by: Jakub Martin <kubam@spacelift.io> * Gofmt. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Regenerate protobuf. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Fix comments. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Undo issue and pull request link changes. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Undo comment changes. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Fix comment. Signed-off-by: Jakub Martin <kubam@spacelift.io> * Undo some link changes. Signed-off-by: Jakub Martin <kubam@spacelift.io> * make generate && make protobuf Signed-off-by: Jakub Martin <kubam@spacelift.io> --------- Signed-off-by: Jakub Martin <kubam@spacelift.io>
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package jsonprovider
|
|
|
|
import (
|
|
"encoding/json"
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
"github.com/zclconf/go-cty/cty"
|
|
|
|
"github.com/placeholderplaceholderplaceholder/opentf/internal/configs/configschema"
|
|
)
|
|
|
|
func TestMarshalAttribute(t *testing.T) {
|
|
tests := []struct {
|
|
Input *configschema.Attribute
|
|
Want *Attribute
|
|
}{
|
|
{
|
|
&configschema.Attribute{Type: cty.String, Optional: true, Computed: true},
|
|
&Attribute{
|
|
AttributeType: json.RawMessage(`"string"`),
|
|
Optional: true,
|
|
Computed: true,
|
|
DescriptionKind: "plain",
|
|
},
|
|
},
|
|
{ // collection types look a little odd.
|
|
&configschema.Attribute{Type: cty.Map(cty.String), Optional: true, Computed: true},
|
|
&Attribute{
|
|
AttributeType: json.RawMessage(`["map","string"]`),
|
|
Optional: true,
|
|
Computed: true,
|
|
DescriptionKind: "plain",
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
got := marshalAttribute(test.Input)
|
|
if !cmp.Equal(got, test.Want) {
|
|
t.Fatalf("wrong result:\n %v\n", cmp.Diff(got, test.Want))
|
|
}
|
|
}
|
|
}
|