mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
138 lines
3.8 KiB
Go
138 lines
3.8 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package jsonfunction
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
"github.com/zclconf/go-cty-debug/ctydebug"
|
|
"github.com/zclconf/go-cty/cty"
|
|
"github.com/zclconf/go-cty/cty/function"
|
|
)
|
|
|
|
func TestMarshal(t *testing.T) {
|
|
tests := []struct {
|
|
Name string
|
|
Input map[string]function.Function
|
|
Want string
|
|
WantErr string
|
|
}{
|
|
{
|
|
"minimal function",
|
|
map[string]function.Function{
|
|
"fun": function.New(&function.Spec{
|
|
Type: function.StaticReturnType(cty.Bool),
|
|
}),
|
|
},
|
|
`{"format_version":"1.0","function_signatures":{"fun":{"return_type":"bool"}}}`,
|
|
"",
|
|
},
|
|
{
|
|
"function with description",
|
|
map[string]function.Function{
|
|
"fun": function.New(&function.Spec{
|
|
Description: "`timestamp` returns a UTC timestamp string.",
|
|
Type: function.StaticReturnType(cty.String),
|
|
}),
|
|
},
|
|
"{\"format_version\":\"1.0\",\"function_signatures\":{\"fun\":{\"description\":\"`timestamp` returns a UTC timestamp string.\",\"return_type\":\"string\"}}}",
|
|
"",
|
|
},
|
|
{
|
|
"function with parameters",
|
|
map[string]function.Function{
|
|
"fun": function.New(&function.Spec{
|
|
Params: []function.Parameter{
|
|
{
|
|
Name: "timestamp",
|
|
Description: "timestamp text",
|
|
Type: cty.String,
|
|
},
|
|
{
|
|
Name: "duration",
|
|
Description: "duration text",
|
|
Type: cty.String,
|
|
},
|
|
},
|
|
Type: function.StaticReturnType(cty.String),
|
|
}),
|
|
},
|
|
`{"format_version":"1.0","function_signatures":{"fun":{"return_type":"string","parameters":[{"name":"timestamp","description":"timestamp text","type":"string"},{"name":"duration","description":"duration text","type":"string"}]}}}`,
|
|
"",
|
|
},
|
|
{
|
|
"function with variadic parameter",
|
|
map[string]function.Function{
|
|
"fun": function.New(&function.Spec{
|
|
VarParam: &function.Parameter{
|
|
Name: "default",
|
|
Description: "default description",
|
|
Type: cty.DynamicPseudoType,
|
|
AllowUnknown: true,
|
|
AllowDynamicType: true,
|
|
AllowNull: true,
|
|
AllowMarked: true,
|
|
},
|
|
Type: function.StaticReturnType(cty.DynamicPseudoType),
|
|
}),
|
|
},
|
|
`{"format_version":"1.0","function_signatures":{"fun":{"return_type":"dynamic","variadic_parameter":{"name":"default","description":"default description","is_nullable":true,"type":"dynamic"}}}}`,
|
|
"",
|
|
},
|
|
{
|
|
"function with list types",
|
|
map[string]function.Function{
|
|
"fun": function.New(&function.Spec{
|
|
Params: []function.Parameter{
|
|
{
|
|
Name: "list",
|
|
Type: cty.List(cty.String),
|
|
},
|
|
},
|
|
Type: function.StaticReturnType(cty.List(cty.String)),
|
|
}),
|
|
},
|
|
`{"format_version":"1.0","function_signatures":{"fun":{"return_type":["list","string"],"parameters":[{"name":"list","type":["list","string"]}]}}}`,
|
|
"",
|
|
},
|
|
{
|
|
"returns diagnostics on failure",
|
|
map[string]function.Function{
|
|
"fun": function.New(&function.Spec{
|
|
Params: []function.Parameter{},
|
|
Type: func(args []cty.Value) (ret cty.Type, err error) {
|
|
return cty.DynamicPseudoType, fmt.Errorf("error")
|
|
},
|
|
}),
|
|
},
|
|
"",
|
|
"Failed to serialize function \"fun\": error",
|
|
},
|
|
}
|
|
|
|
for i, test := range tests {
|
|
t.Run(fmt.Sprintf("%d-%s", i, test.Name), func(t *testing.T) {
|
|
got, diags := Marshal(test.Input)
|
|
if test.WantErr != "" {
|
|
if !diags.HasErrors() {
|
|
t.Fatal("expected error, got none")
|
|
}
|
|
if diags.Err().Error() != test.WantErr {
|
|
t.Fatalf("expected error %q, got %q", test.WantErr, diags.Err())
|
|
}
|
|
} else {
|
|
if diags.HasErrors() {
|
|
t.Fatal(diags)
|
|
}
|
|
|
|
if diff := cmp.Diff(test.Want, string(got), ctydebug.CmpOptions); diff != "" {
|
|
t.Fatalf("mismatch of function signature: %s", diff)
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|