mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-11 17:12:51 +00:00
54 lines
1.3 KiB
Go
54 lines
1.3 KiB
Go
// Copyright 2019 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package merge2_test
|
|
|
|
import (
|
|
"bytes"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"sigs.k8s.io/kustomize/kyaml/kio/filters"
|
|
"sigs.k8s.io/kustomize/kyaml/yaml"
|
|
. "sigs.k8s.io/kustomize/kyaml/yaml/merge2"
|
|
)
|
|
|
|
var testCases = [][]testCase{scalarTestCases, listTestCases, elementTestCases, mapTestCases}
|
|
|
|
func TestMerge(t *testing.T) {
|
|
for i := range testCases {
|
|
for j := range testCases[i] {
|
|
tc := testCases[i][j]
|
|
t.Run(tc.description, func(t *testing.T) {
|
|
actual, err := MergeStrings(tc.source, tc.dest, tc.infer, tc.mergeOptions)
|
|
if !assert.NoError(t, err, tc.description) {
|
|
t.FailNow()
|
|
}
|
|
e, err := filters.FormatInput(bytes.NewBufferString(tc.expected))
|
|
if !assert.NoError(t, err) {
|
|
t.FailNow()
|
|
}
|
|
estr := strings.TrimSpace(e.String())
|
|
a, err := filters.FormatInput(bytes.NewBufferString(actual))
|
|
if !assert.NoError(t, err) {
|
|
t.FailNow()
|
|
}
|
|
astr := strings.TrimSpace(a.String())
|
|
if !assert.Equal(t, estr, astr, tc.description) {
|
|
t.FailNow()
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
type testCase struct {
|
|
description string
|
|
source string
|
|
dest string
|
|
expected string
|
|
infer bool
|
|
mergeOptions yaml.MergeOptions
|
|
}
|