mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 00:41:27 -06:00
31349a9c3a
This is part of a general effort to move all of Terraform's non-library package surface under internal in order to reinforce that these are for internal use within Terraform only. If you were previously importing packages under this prefix into an external codebase, you could pin to an earlier release tag as an interim solution until you've make a plan to achieve the same functionality some other way.
50 lines
901 B
Go
50 lines
901 B
Go
package jsonprovider
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
|
|
"github.com/hashicorp/terraform/internal/configs/configschema"
|
|
)
|
|
|
|
func TestMarshalSchemas(t *testing.T) {
|
|
tests := []struct {
|
|
Input map[string]*configschema.Block
|
|
Versions map[string]uint64
|
|
Want map[string]*schema
|
|
}{
|
|
{
|
|
nil,
|
|
map[string]uint64{},
|
|
map[string]*schema{},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
got := marshalSchemas(test.Input, test.Versions)
|
|
if !cmp.Equal(got, test.Want) {
|
|
t.Fatalf("wrong result:\n %v\n", cmp.Diff(got, test.Want))
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestMarshalSchema(t *testing.T) {
|
|
tests := map[string]struct {
|
|
Input *configschema.Block
|
|
Want *schema
|
|
}{
|
|
"nil_block": {
|
|
nil,
|
|
&schema{},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
got := marshalSchema(test.Input)
|
|
if !cmp.Equal(got, test.Want) {
|
|
t.Fatalf("wrong result:\n %v\n", cmp.Diff(got, test.Want))
|
|
}
|
|
}
|
|
}
|