mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
72 lines
1.6 KiB
Go
72 lines
1.6 KiB
Go
package kube
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
)
|
|
|
|
func TestConvertToUnstructured(t *testing.T) {
|
|
type testCase struct {
|
|
name string
|
|
obj interface{}
|
|
want *unstructured.Unstructured
|
|
err error
|
|
}
|
|
testCases := []testCase{
|
|
{
|
|
name: "Test valid input",
|
|
obj: map[string]interface{}{
|
|
"key": "value",
|
|
},
|
|
want: &unstructured.Unstructured{Object: map[string]interface{}{
|
|
"key": "value",
|
|
}},
|
|
},
|
|
{
|
|
name: "Test invalid JSON",
|
|
obj: func() {},
|
|
err: fmt.Errorf("json: unsupported type: func()"),
|
|
},
|
|
{
|
|
name: "Test struct input",
|
|
obj: struct {
|
|
Key string
|
|
}{
|
|
Key: "value",
|
|
},
|
|
want: &unstructured.Unstructured{Object: map[string]interface{}{
|
|
"Key": "value",
|
|
}},
|
|
},
|
|
{
|
|
name: "Test slice input",
|
|
obj: []string{"a", "b", "c"},
|
|
err: fmt.Errorf("json: cannot unmarshal array into Go value of type map[string]interface {}"),
|
|
},
|
|
|
|
{
|
|
name: "Test number input",
|
|
obj: 123,
|
|
err: fmt.Errorf("json: cannot unmarshal number into Go value of type map[string]interface {}"),
|
|
},
|
|
}
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
got, err := ObjToUnstructured(tc.obj)
|
|
if (err != nil) != (tc.err != nil) {
|
|
t.Errorf("expected error %v but got %v", tc.err, err)
|
|
}
|
|
if err != nil && tc.err != nil {
|
|
if !reflect.DeepEqual(err.Error(), tc.err.Error()) {
|
|
t.Errorf("expected error %v but got %v", tc.err, err)
|
|
}
|
|
}
|
|
if !reflect.DeepEqual(got, tc.want) {
|
|
t.Errorf("expected %v but got %v", tc.want, got)
|
|
}
|
|
})
|
|
}
|
|
}
|