-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapi_test.go
74 lines (67 loc) · 2.25 KB
/
api_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
// Copyright 2019 The Operator-SDK 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 k8sutil
import (
"reflect"
"sort"
"testing"
apiextv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
)
func TestSortVersions(t *testing.T) {
cases := []struct {
inputVersions []string
expected []string
}{
{[]string{""}, []string{""}},
{[]string{"v1"}, []string{"v1"}},
{[]string{"v1alpha1"}, []string{"v1alpha1"}},
{[]string{"v1alpha1", "v1"}, []string{"v1", "v1alpha1"}},
{
[]string{"foo1", "foo10", "foo2", "foo13", "foo52", "foo23", "foo32", "foo33", "foo100"},
[]string{"foo1", "foo10", "foo100", "foo13", "foo2", "foo23", "foo32", "foo33", "foo52"},
},
{
[]string{"v1alpha10", "v1alpha1", "v1alpha2000", "v1alpha3", "v1alpha2", "v1alpha300"},
[]string{"v1alpha2000", "v1alpha300", "v1alpha10", "v1alpha3", "v1alpha2", "v1alpha1"},
},
{
[]string{"v3beta1", "v12alpha1", "v12alpha2", "v10beta3", "v1", "v11alpha2", "foo1", "v10",
"v2", "foo10", "v11beta2"},
[]string{"v10", "v2", "v1", "v11beta2", "v10beta3", "v3beta1", "v12alpha2", "v12alpha1",
"v11alpha2", "foo1", "foo10"},
},
}
for _, c := range cases {
cvs := stringsToCRDVersions(c.inputVersions)
sort.Sort(cvs)
vs := crdVersionsToStrings(cvs)
if !reflect.DeepEqual(vs, c.expected) {
t.Errorf("Output not sorted as expected:\noutput: %+q\nexpected: %+q", vs, c.expected)
}
}
}
func stringsToCRDVersions(vs []string) (cvs CRDVersions) {
for _, v := range vs {
cvs = append(cvs, apiextv1beta1.CustomResourceDefinitionVersion{
Name: v,
})
}
return cvs
}
func crdVersionsToStrings(cvs []apiextv1beta1.CustomResourceDefinitionVersion) (vs []string) {
for _, v := range cvs {
vs = append(vs, v.Name)
}
return vs
}