92 lines
2.3 KiB
Go
92 lines
2.3 KiB
Go
![]() |
/*
|
||
|
Copyright 2017 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 apiserver
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
||
|
)
|
||
|
|
||
|
func TestConvertFieldLabel(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
clusterScoped bool
|
||
|
label string
|
||
|
expectError bool
|
||
|
}{
|
||
|
{
|
||
|
name: "cluster scoped - name is ok",
|
||
|
clusterScoped: true,
|
||
|
label: "metadata.name",
|
||
|
},
|
||
|
{
|
||
|
name: "cluster scoped - namespace is not ok",
|
||
|
clusterScoped: true,
|
||
|
label: "metadata.namespace",
|
||
|
expectError: true,
|
||
|
},
|
||
|
{
|
||
|
name: "cluster scoped - other field is not ok",
|
||
|
clusterScoped: true,
|
||
|
label: "some.other.field",
|
||
|
expectError: true,
|
||
|
},
|
||
|
{
|
||
|
name: "namespace scoped - name is ok",
|
||
|
label: "metadata.name",
|
||
|
},
|
||
|
{
|
||
|
name: "namespace scoped - namespace is ok",
|
||
|
label: "metadata.namespace",
|
||
|
},
|
||
|
{
|
||
|
name: "namespace scoped - other field is not ok",
|
||
|
label: "some.other.field",
|
||
|
expectError: true,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
for _, test := range tests {
|
||
|
t.Run(test.name, func(t *testing.T) {
|
||
|
|
||
|
c := crdObjectConverter{
|
||
|
UnstructuredObjectConverter: unstructured.UnstructuredObjectConverter{},
|
||
|
clusterScoped: test.clusterScoped,
|
||
|
}
|
||
|
|
||
|
label, value, err := c.ConvertFieldLabel("", "", test.label, "value")
|
||
|
if e, a := test.expectError, err != nil; e != a {
|
||
|
t.Fatalf("err: expected %t, got %t", e, a)
|
||
|
}
|
||
|
if test.expectError {
|
||
|
if e, a := "field label not supported: "+test.label, err.Error(); e != a {
|
||
|
t.Errorf("err: expected %s, got %s", e, a)
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
if e, a := test.label, label; e != a {
|
||
|
t.Errorf("label: expected %s, got %s", e, a)
|
||
|
}
|
||
|
if e, a := "value", value; e != a {
|
||
|
t.Errorf("value: expected %s, got %s", e, a)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|