wangpengfei
2023-06-02 064c0874e5fd041c4641ef873d1bf72ac98a184d
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*
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 v1beta1
 
import (
    "testing"
 
    "k8s.io/api/core/v1"
    extensions "k8s.io/api/extensions/v1beta1"
    metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    "k8s.io/apimachinery/pkg/labels"
    "k8s.io/apimachinery/pkg/util/sets"
    "k8s.io/client-go/tools/cache"
)
 
func TestDaemonSetLister(t *testing.T) {
    store := cache.NewIndexer(cache.MetaNamespaceKeyFunc, cache.Indexers{"namespace": cache.MetaNamespaceIndexFunc})
    lister := NewDaemonSetLister(store)
    testCases := []struct {
        inDSs             []*extensions.DaemonSet
        list              func() ([]*extensions.DaemonSet, error)
        outDaemonSetNames sets.String
        expectErr         bool
    }{
        // Basic listing
        {
            inDSs: []*extensions.DaemonSet{
                {ObjectMeta: metav1.ObjectMeta{Name: "basic"}},
            },
            list: func() ([]*extensions.DaemonSet, error) {
                return lister.List(labels.Everything())
            },
            outDaemonSetNames: sets.NewString("basic"),
        },
        // Listing multiple daemon sets
        {
            inDSs: []*extensions.DaemonSet{
                {ObjectMeta: metav1.ObjectMeta{Name: "basic"}},
                {ObjectMeta: metav1.ObjectMeta{Name: "complex"}},
                {ObjectMeta: metav1.ObjectMeta{Name: "complex2"}},
            },
            list: func() ([]*extensions.DaemonSet, error) {
                return lister.List(labels.Everything())
            },
            outDaemonSetNames: sets.NewString("basic", "complex", "complex2"),
        },
        // No pod labels
        {
            inDSs: []*extensions.DaemonSet{
                {
                    ObjectMeta: metav1.ObjectMeta{Name: "basic", Namespace: "ns"},
                    Spec: extensions.DaemonSetSpec{
                        Selector: &metav1.LabelSelector{MatchLabels: map[string]string{"foo": "baz"}},
                    },
                },
            },
            list: func() ([]*extensions.DaemonSet, error) {
                pod := &v1.Pod{
                    ObjectMeta: metav1.ObjectMeta{Name: "pod1", Namespace: "ns"},
                }
                return lister.GetPodDaemonSets(pod)
            },
            outDaemonSetNames: sets.NewString(),
            expectErr:         true,
        },
        // No DS selectors
        {
            inDSs: []*extensions.DaemonSet{
                {
                    ObjectMeta: metav1.ObjectMeta{Name: "basic", Namespace: "ns"},
                },
            },
            list: func() ([]*extensions.DaemonSet, error) {
                pod := &v1.Pod{
                    ObjectMeta: metav1.ObjectMeta{
                        Name:      "pod1",
                        Namespace: "ns",
                        Labels:    map[string]string{"foo": "bar"},
                    },
                }
                return lister.GetPodDaemonSets(pod)
            },
            outDaemonSetNames: sets.NewString(),
            expectErr:         true,
        },
        // Matching labels to selectors and namespace
        {
            inDSs: []*extensions.DaemonSet{
                {
                    ObjectMeta: metav1.ObjectMeta{Name: "foo"},
                    Spec: extensions.DaemonSetSpec{
                        Selector: &metav1.LabelSelector{MatchLabels: map[string]string{"foo": "bar"}},
                    },
                },
                {
                    ObjectMeta: metav1.ObjectMeta{Name: "bar", Namespace: "ns"},
                    Spec: extensions.DaemonSetSpec{
                        Selector: &metav1.LabelSelector{MatchLabels: map[string]string{"foo": "bar"}},
                    },
                },
            },
            list: func() ([]*extensions.DaemonSet, error) {
                pod := &v1.Pod{
                    ObjectMeta: metav1.ObjectMeta{
                        Name:      "pod1",
                        Labels:    map[string]string{"foo": "bar"},
                        Namespace: "ns",
                    },
                }
                return lister.GetPodDaemonSets(pod)
            },
            outDaemonSetNames: sets.NewString("bar"),
        },
    }
    for _, c := range testCases {
        for _, r := range c.inDSs {
            store.Add(r)
        }
 
        daemonSets, err := c.list()
        if err != nil && c.expectErr {
            continue
        } else if c.expectErr {
            t.Error("Expected error, got none")
            continue
        } else if err != nil {
            t.Errorf("Unexpected error %#v", err)
            continue
        }
        daemonSetNames := make([]string, len(daemonSets))
        for ix := range daemonSets {
            daemonSetNames[ix] = daemonSets[ix].Name
        }
        if !c.outDaemonSetNames.HasAll(daemonSetNames...) || len(daemonSetNames) != len(c.outDaemonSetNames) {
            t.Errorf("Unexpected got controllers %+v expected %+v", daemonSetNames, c.outDaemonSetNames)
        }
    }
}