-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindexes_test.go
107 lines (93 loc) · 3.02 KB
/
indexes_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
Copyright 2022 The KCP 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 virtualworkspace
import (
"testing"
"github.com/stretchr/testify/require"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"github.com/kcp-dev/logicalcluster/v3"
)
func TestClusterIndexFunc(t *testing.T) {
tests := map[string]struct {
obj *metav1.ObjectMeta
desired string
}{
"bare cluster": {
obj: &metav1.ObjectMeta{
Namespace: "",
Name: "name",
Annotations: map[string]string{logicalcluster.AnnotationKey: "test"},
},
desired: "test",
},
"cluster and namespace": {
obj: &metav1.ObjectMeta{
Namespace: "namespace",
Name: "name",
Annotations: map[string]string{logicalcluster.AnnotationKey: "test"},
},
desired: "test",
},
"bare cluster with dashes": {
obj: &metav1.ObjectMeta{
Namespace: "",
Name: "name",
Annotations: map[string]string{logicalcluster.AnnotationKey: "test-with-dashes"},
},
desired: "test-with-dashes",
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
result, err := ClusterIndexFunc(tt.obj)
require.NoError(t, err, "unexpected error calling ClusterIndexFunc")
require.Len(t, result, 1, "ClusterIndexFunc should return one result")
require.Equal(t, result[0], tt.desired)
key := ClusterIndexKey(logicalcluster.From(tt.obj))
require.Equal(t, result[0], key, "ClusterIndexFunc and ClusterIndexKey functions have diverged")
})
}
}
func TestClusterAndNamespaceIndexFunc(t *testing.T) {
tests := map[string]struct {
obj *metav1.ObjectMeta
desired string
}{
"bare cluster": {
obj: &metav1.ObjectMeta{
Namespace: "",
Name: "name",
Annotations: map[string]string{logicalcluster.AnnotationKey: "test"},
},
desired: "test/",
},
"cluster and namespace": {
obj: &metav1.ObjectMeta{
Namespace: "testing",
Name: "name",
Annotations: map[string]string{logicalcluster.AnnotationKey: "test"},
},
desired: "test/testing",
},
}
for _, tt := range tests {
t.Run(tt.desired, func(t *testing.T) {
result, err := ClusterAndNamespaceIndexFunc(tt.obj)
require.NoError(t, err, "unexpected error calling ClusterAndNamespaceIndexFunc")
require.Len(t, result, 1, "ClusterIndexFunc should return one result")
require.Equal(t, result[0], tt.desired)
key := ClusterAndNamespaceIndexKey(logicalcluster.From(tt.obj), tt.obj.GetNamespace())
require.Equal(t, result[0], key, "ClusterAndNamespaceIndexFunc and ClusterAndNamespaceIndexKey functions have diverged")
})
}
}