kubernetes/pkg/apis/resource/validation/validation_common_test.go

91 lines
2.5 KiB
Go

/*
Copyright 2024 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 validation
import (
"testing"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
"github.com/stretchr/testify/assert"
"k8s.io/apimachinery/pkg/util/validation/field"
"k8s.io/dynamic-resource-allocation/api"
)
// assertFailures compares the expected against the actual errors.
//
// If they differ, it also logs what the formatted errors would look
// like to a user. This can be helpful to figure out whether an error
// is informative.
func assertFailures(tb testing.TB, want, got field.ErrorList) bool {
tb.Helper()
if diff := cmp.Diff(want, got, cmpopts.IgnoreFields(field.Error{}, "Origin"), cmp.AllowUnexported(api.UniqueString{})); diff != "" {
tb.Errorf("unexpected field errors (-want, +got):\n%s", diff)
return false
}
return true
}
func TestTruncateIfTooLong(t *testing.T) {
for name, tc := range map[string]struct {
str string
maxLen int
expectStr string
}{
"nop": {
str: "hello",
maxLen: 10,
expectStr: "hello",
},
"truncate-to-limit": {
str: "hello world how are you",
maxLen: 18,
expectStr: "hello wo...are you",
},
"truncate-to-builtin-limit": {
str: "hello world how are you",
maxLen: 1, // Too small, gets increased.
expectStr: "hello w...re you",
},
"truncate-odd-string-even-limit": {
str: "abcdefghijklmnopqrs",
maxLen: 16,
expectStr: "abcdefg...nopqrs",
},
"truncate-even-string-even-limit": {
str: "abcdefghijklmnopqrst",
maxLen: 16,
expectStr: "abcdefg...opqrst",
},
"truncate-odd-string-odd-limit": {
str: "abcdefghijklmnopqrs",
maxLen: 17,
expectStr: "abcdefg...mnopqrs",
},
"truncate-even-string-odd-limit": {
str: "abcdefghijklmnopqrst",
maxLen: 17,
expectStr: "abcdefg...nopqrst",
},
} {
t.Run(name, func(t *testing.T) {
assert.Equal(t, tc.expectStr, truncateIfTooLong(tc.str, tc.maxLen))
})
}
}