forked from kubernetes-sigs/gateway-api-inference-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathendpointslice_reconcilier_test.go
200 lines (191 loc) · 4.63 KB
/
endpointslice_reconcilier_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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
package backend
import (
"sync"
"testing"
"inference.networking.x-k8s.io/llm-instance-gateway/api/v1alpha1"
v1 "k8s.io/api/core/v1"
discoveryv1 "k8s.io/api/discovery/v1"
)
var (
basePod1 = Pod{Name: "pod1"}
basePod2 = Pod{Name: "pod2"}
basePod3 = Pod{Name: "pod3"}
)
func TestUpdateDatastore_EndpointSliceReconciler(t *testing.T) {
tests := []struct {
name string
datastore *K8sDatastore
incomingSlice *discoveryv1.EndpointSlice
wantPods *sync.Map
}{
{
name: "Add new pod",
datastore: &K8sDatastore{
pods: populateMap(basePod1, basePod2),
inferencePool: &v1alpha1.InferencePool{
Spec: v1alpha1.InferencePoolSpec{
TargetPortNumber: int32(8000),
},
},
},
incomingSlice: &discoveryv1.EndpointSlice{
Endpoints: []discoveryv1.Endpoint{
{
TargetRef: &v1.ObjectReference{
Name: "pod1",
},
Zone: new(string),
Conditions: discoveryv1.EndpointConditions{
Ready: truePointer(),
},
Addresses: []string{"0.0.0.0"},
},
{
TargetRef: &v1.ObjectReference{
Name: "pod2",
},
Zone: new(string),
Conditions: discoveryv1.EndpointConditions{
Ready: truePointer(),
},
Addresses: []string{"0.0.0.0"},
},
{
TargetRef: &v1.ObjectReference{
Name: "pod3",
},
Zone: new(string),
Conditions: discoveryv1.EndpointConditions{
Ready: truePointer(),
},
Addresses: []string{"0.0.0.0"},
},
},
},
wantPods: populateMap(basePod1, basePod2, basePod3),
},
{
name: "New pod, but its not ready yet. Do not add.",
datastore: &K8sDatastore{
pods: populateMap(basePod1, basePod2),
inferencePool: &v1alpha1.InferencePool{
Spec: v1alpha1.InferencePoolSpec{
TargetPortNumber: int32(8000),
},
},
},
incomingSlice: &discoveryv1.EndpointSlice{
Endpoints: []discoveryv1.Endpoint{
{
TargetRef: &v1.ObjectReference{
Name: "pod1",
},
Zone: new(string),
Conditions: discoveryv1.EndpointConditions{
Ready: truePointer(),
},
Addresses: []string{"0.0.0.0"},
},
{
TargetRef: &v1.ObjectReference{
Name: "pod2",
},
Zone: new(string),
Conditions: discoveryv1.EndpointConditions{
Ready: truePointer(),
},
Addresses: []string{"0.0.0.0"},
},
{
TargetRef: &v1.ObjectReference{
Name: "pod3",
},
Zone: new(string),
Conditions: discoveryv1.EndpointConditions{
Ready: new(bool),
},
Addresses: []string{"0.0.0.0"},
},
},
},
wantPods: populateMap(basePod1, basePod2),
},
{
name: "Existing pod not ready, new pod added, and is ready",
datastore: &K8sDatastore{
pods: populateMap(basePod1, basePod2),
inferencePool: &v1alpha1.InferencePool{
Spec: v1alpha1.InferencePoolSpec{
TargetPortNumber: int32(8000),
},
},
},
incomingSlice: &discoveryv1.EndpointSlice{
Endpoints: []discoveryv1.Endpoint{
{
TargetRef: &v1.ObjectReference{
Name: "pod1",
},
Zone: new(string),
Conditions: discoveryv1.EndpointConditions{
Ready: new(bool),
},
Addresses: []string{"0.0.0.0"},
},
{
TargetRef: &v1.ObjectReference{
Name: "pod2",
},
Zone: new(string),
Conditions: discoveryv1.EndpointConditions{
Ready: truePointer(),
},
Addresses: []string{"0.0.0.0"},
},
{
TargetRef: &v1.ObjectReference{
Name: "pod3",
},
Zone: new(string),
Conditions: discoveryv1.EndpointConditions{
Ready: truePointer(),
},
Addresses: []string{"0.0.0.0"},
},
},
},
wantPods: populateMap(basePod3, basePod2),
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
endpointSliceReconciler := &EndpointSliceReconciler{Datastore: test.datastore, Zone: ""}
endpointSliceReconciler.updateDatastore(test.incomingSlice, test.datastore.inferencePool)
if mapsEqual(endpointSliceReconciler.Datastore.pods, test.wantPods) {
t.Errorf("Unexpected output pod mismatch. \n Got %v \n Want: %v \n", endpointSliceReconciler.Datastore.pods, test.wantPods)
}
})
}
}
func mapsEqual(map1, map2 *sync.Map) bool {
equal := true
map1.Range(func(k, v any) bool {
if _, ok := map2.Load(k); !ok {
equal = false
return false
}
return true
})
map2.Range(func(k, v any) bool {
if _, ok := map1.Load(k); !ok {
equal = false
return false
}
return true
})
return equal
}
func truePointer() *bool {
primitivePointersAreSilly := true
return &primitivePointersAreSilly
}