/* Copyright 2020 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package defaulting import ( "bytes" "reflect" "testing" structuralschema "k8s.io/apiextensions-apiserver/pkg/apiserver/schema" "k8s.io/apimachinery/pkg/util/json" ) func TestPruneNonNullableNullsWithoutDefaults(t *testing.T) { tests := []struct { name string json string schema *structuralschema.Structural expected string }{ {"empty", "null", nil, "null"}, {"scalar", "4", &structuralschema.Structural{ Generic: structuralschema.Generic{ Default: structuralschema.JSON{"foo"}, }, }, "4"}, {"scalar array", "[1,null]", nil, "[1,null]"}, {"object array", `[{"a":null},{"b":null},{"c":null},{"d":null},{"e":null}]`, &structuralschema.Structural{ Items: &structuralschema.Structural{ Properties: map[string]structuralschema.Structural{ "a": { Generic: structuralschema.Generic{ Default: structuralschema.JSON{"A"}, }, }, "b": { Generic: structuralschema.Generic{ Nullable: true, }, }, "c": { Generic: structuralschema.Generic{ Default: structuralschema.JSON{"C"}, Nullable: true, }, }, "d": { Generic: structuralschema.Generic{}, }, }, }, }, `[{"a":null},{"b":null},{"c":null},{},{"e":null}]`}, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { var in interface{} if err := json.Unmarshal([]byte(tt.json), &in); err != nil { t.Fatal(err) } var expected interface{} if err := json.Unmarshal([]byte(tt.expected), &expected); err != nil { t.Fatal(err) } PruneNonNullableNullsWithoutDefaults(in, tt.schema) if !reflect.DeepEqual(in, expected) { var buf bytes.Buffer enc := json.NewEncoder(&buf) enc.SetIndent("", " ") err := enc.Encode(in) if err != nil { t.Fatalf("unexpected result mashalling error: %v", err) } t.Errorf("expected: %s\ngot: %s", tt.expected, buf.String()) } }) } }