forked from liqotech/liqo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresourceoffer_controller_test.go
472 lines (412 loc) · 14.9 KB
/
resourceoffer_controller_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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
// Copyright 2019-2024 The Liqo 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 resourceoffercontroller
import (
"context"
"os"
"path/filepath"
"reflect"
"testing"
"time"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
"k8s.io/utils/pointer"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/manager"
discoveryv1alpha1 "github.com/liqotech/liqo/apis/discovery/v1alpha1"
sharingv1alpha1 "github.com/liqotech/liqo/apis/sharing/v1alpha1"
virtualkubeletv1alpha1 "github.com/liqotech/liqo/apis/virtualkubelet/v1alpha1"
"github.com/liqotech/liqo/pkg/consts"
"github.com/liqotech/liqo/pkg/discovery"
"github.com/liqotech/liqo/pkg/identityManager/fake"
"github.com/liqotech/liqo/pkg/utils/testutil"
)
const (
timeout = time.Second * 30
interval = time.Millisecond * 250
testNamespace = "default"
//nolint:gosec // it doesn't contain sensitive information
kubeconfigSecretName = "kubeconfig-secret"
)
var (
cluster testutil.Cluster
remoteClusterIdentity = discoveryv1alpha1.ClusterIdentity{
ClusterID: "remote-cluster-id",
ClusterName: "remote-cluster-name",
}
mgr manager.Manager
controller *ResourceOfferReconciler
ctx context.Context
cancel context.CancelFunc
now = metav1.Now()
)
func TestIdentityManager(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "ResourceOffer Controller Suite")
}
func createForeignCluster() {
foreignCluster := &discoveryv1alpha1.ForeignCluster{
ObjectMeta: metav1.ObjectMeta{
Name: remoteClusterIdentity.ClusterName,
Labels: map[string]string{
discovery.ClusterIDLabel: remoteClusterIdentity.ClusterID,
},
},
Spec: discoveryv1alpha1.ForeignClusterSpec{
ClusterIdentity: remoteClusterIdentity,
ForeignAuthURL: "https://127.0.0.1:8080",
OutgoingPeeringEnabled: discoveryv1alpha1.PeeringEnabledAuto,
IncomingPeeringEnabled: discoveryv1alpha1.PeeringEnabledAuto,
InsecureSkipTLSVerify: pointer.Bool(true),
},
}
if err := controller.Client.Create(ctx, foreignCluster); err != nil {
By(err.Error())
os.Exit(1)
}
foreignCluster.Status = discoveryv1alpha1.ForeignClusterStatus{
TenantNamespace: discoveryv1alpha1.TenantNamespaceType{
Local: testNamespace,
},
}
if err := controller.Client.Status().Update(ctx, foreignCluster); err != nil {
By(err.Error())
os.Exit(1)
}
}
var _ = BeforeSuite(func() {
testutil.LogsToGinkgoWriter()
})
var _ = Describe("ResourceOffer Controller", func() {
BeforeEach(func() {
var err error
cluster, mgr, err = testutil.NewTestCluster([]string{filepath.Join("..", "..", "..", "deployments", "liqo", "crds")})
if err != nil {
By(err.Error())
os.Exit(1)
}
identityReader := fake.NewIdentityReader().Add(remoteClusterIdentity.ClusterID,
testNamespace, kubeconfigSecretName, cluster.GetCfg())
controller = NewResourceOfferController(mgr, identityReader, 10*time.Second, true, []string{}, []string{})
if err := controller.SetupWithManager(mgr); err != nil {
By(err.Error())
os.Exit(1)
}
ctx, cancel = context.WithCancel(context.Background())
go mgr.Start(ctx)
createForeignCluster()
})
AfterEach(func() {
cancel()
err := cluster.GetEnv().Stop()
if err != nil {
By(err.Error())
os.Exit(1)
}
})
type resourceOfferTestcase struct {
resourceOffer sharingv1alpha1.ResourceOffer
expectedPhase sharingv1alpha1.OfferPhase
}
DescribeTable("ResourceOffer phase table",
func(c resourceOfferTestcase) {
err := controller.Client.Create(ctx, &c.resourceOffer)
Expect(err).To(BeNil())
Eventually(func() sharingv1alpha1.OfferPhase {
var resourceOffer sharingv1alpha1.ResourceOffer
if err = controller.Client.Get(ctx, client.ObjectKeyFromObject(&c.resourceOffer), &resourceOffer); err != nil {
return "error"
}
return resourceOffer.Status.Phase
}, timeout, interval).Should(Equal(c.expectedPhase))
err = controller.Client.Delete(ctx, &c.resourceOffer)
Expect(err).To(BeNil())
},
// this entry should be taken by the operator, and it should set the phase and the virtual-kubelet deployment accordingly.
Entry("valid pending resource offer", resourceOfferTestcase{
resourceOffer: sharingv1alpha1.ResourceOffer{
ObjectMeta: metav1.ObjectMeta{
Name: "resource-offer",
Namespace: testNamespace,
Labels: map[string]string{
consts.ReplicationOriginLabel: "origin-cluster-id",
consts.ReplicationStatusLabel: "true",
},
},
Spec: sharingv1alpha1.ResourceOfferSpec{
ClusterID: remoteClusterIdentity.ClusterID,
},
},
expectedPhase: sharingv1alpha1.ResourceOfferManualActionRequired, // auto-accept is off
}),
// this entry should not be taken by the operator, it has not the labels of a replicated resource.
Entry("valid pending resource offer without labels", resourceOfferTestcase{
resourceOffer: sharingv1alpha1.ResourceOffer{
ObjectMeta: metav1.ObjectMeta{
Name: "resource-offer-2",
Namespace: testNamespace,
},
Spec: sharingv1alpha1.ResourceOfferSpec{
ClusterID: remoteClusterIdentity.ClusterID,
},
},
expectedPhase: "",
}),
)
Describe("ResourceOffer VirtualNode", func() {
It("test VirtualNode creation", func() {
resourceOffer := &sharingv1alpha1.ResourceOffer{
ObjectMeta: metav1.ObjectMeta{
Name: "resource-offer",
Namespace: testNamespace,
Labels: map[string]string{
consts.ReplicationOriginLabel: "origin-cluster-id",
consts.ReplicationStatusLabel: "true",
},
},
Spec: sharingv1alpha1.ResourceOfferSpec{
ClusterID: remoteClusterIdentity.ClusterID,
},
}
key := client.ObjectKeyFromObject(resourceOffer)
err := controller.Client.Create(ctx, resourceOffer)
Expect(err).To(BeNil())
// The offer should not be automatically accepted, as specified in the config
Eventually(func() sharingv1alpha1.OfferPhase {
if err = controller.Client.Get(ctx, key, resourceOffer); err != nil {
return "error"
}
return resourceOffer.Status.Phase
}, timeout, interval).Should(Equal(sharingv1alpha1.ResourceOfferManualActionRequired))
// Accept it manually
resourceOffer.Status.Phase = sharingv1alpha1.ResourceOfferAccepted
Expect(controller.Status().Update(ctx, resourceOffer)).To(Succeed())
Eventually(func() sharingv1alpha1.OfferPhase {
if err = controller.Client.Get(ctx, key, resourceOffer); err != nil {
return "error"
}
return resourceOffer.Status.Phase
}, timeout, interval).Should(Equal(sharingv1alpha1.ResourceOfferAccepted))
// check that the vk status is set correctly
Eventually(func() sharingv1alpha1.VirtualKubeletStatus {
if err = controller.Client.Get(ctx, key, resourceOffer); err != nil {
return "error"
}
return resourceOffer.Status.VirtualKubeletStatus
}, timeout, interval).Should(Equal(sharingv1alpha1.VirtualKubeletStatusCreated))
// check the creation of the virtual node
Eventually(func() bool {
var virtualNodeList virtualkubeletv1alpha1.VirtualNodeList
err := controller.Client.List(ctx, &virtualNodeList)
if err != nil || len(virtualNodeList.Items) != 1 {
return false
}
vn, err := controller.getVirtualNode(ctx, resourceOffer)
if err != nil || vn == nil {
return false
}
return reflect.DeepEqual(virtualNodeList.Items[0].Status, vn.Status)
}, timeout, interval).Should(BeTrue())
// check that the VirtualNode has the controller reference annotation
Eventually(func() string {
var virtualNodeList virtualkubeletv1alpha1.VirtualNodeList
err := controller.Client.List(ctx, &virtualNodeList)
if err != nil || len(virtualNodeList.Items) != 1 {
return ""
}
if len(virtualNodeList.Items[0].OwnerReferences) != 1 {
return ""
}
return virtualNodeList.Items[0].OwnerReferences[0].Name
}, timeout, interval).Should(Equal(resourceOffer.Name))
// get the VirtualNode and delete it
var virtualNodeList virtualkubeletv1alpha1.VirtualNodeList
err = controller.Client.List(ctx, &virtualNodeList)
Expect(err).To(BeNil())
Expect(len(virtualNodeList.Items)).To(Equal(1))
err = controller.Client.Delete(ctx, &virtualNodeList.Items[0])
Expect(err).To(BeNil())
virtualNode := virtualNodeList.Items[0]
// check the VirtualNode recreation
Eventually(func() types.UID {
var virtualNodeList virtualkubeletv1alpha1.VirtualNodeList
err = controller.Client.List(ctx, &virtualNodeList)
if err != nil || len(virtualNodeList.Items) != 1 {
return virtualNode.UID // this will cause the eventually statement to not terminate
}
return virtualNodeList.Items[0].UID
}, timeout, interval).ShouldNot(Equal(virtualNode.UID))
Eventually(func() error {
err = controller.Client.Get(ctx, client.ObjectKeyFromObject(resourceOffer), resourceOffer)
if err != nil {
return err
}
// refuse the offer to delete the virtual node
resourceOffer.Status.Phase = sharingv1alpha1.ResourceOfferRefused
return controller.Client.Status().Update(ctx, resourceOffer)
}, timeout, interval).Should(Succeed())
// check that the vk status is set correctly
Eventually(func() sharingv1alpha1.VirtualKubeletStatus {
if err = controller.Client.Get(ctx, key, resourceOffer); err != nil {
return "error"
}
return resourceOffer.Status.VirtualKubeletStatus
}, timeout, interval).Should(Equal(sharingv1alpha1.VirtualKubeletStatusNone))
// check the deletion of the virtual node
Eventually(func() int {
var virtualNodeList virtualkubeletv1alpha1.VirtualNodeList
err := controller.Client.List(ctx, &virtualNodeList)
if err != nil {
return -1
}
return len(virtualNodeList.Items)
}, timeout, interval).Should(BeNumerically("==", 0))
err = controller.Client.Delete(ctx, resourceOffer)
Expect(err).To(BeNil())
})
})
})
var _ = Describe("ResourceOffer Operator util functions", func() {
Context("getDeleteVirtualKubeletPhase", func() {
type getDeleteVirtualKubeletPhaseTestcase struct {
resourceOffer *sharingv1alpha1.ResourceOffer
virtualNode *virtualkubeletv1alpha1.VirtualNode
expected OmegaMatcher
}
DescribeTable("getDeleteVirtualKubeletPhase table",
func(c getDeleteVirtualKubeletPhaseTestcase) {
Expect(getDeleteVirtualKubeletPhase(c.resourceOffer, c.virtualNode)).To(c.expected)
},
Entry("refused ResourceOffer", getDeleteVirtualKubeletPhaseTestcase{
resourceOffer: &sharingv1alpha1.ResourceOffer{
ObjectMeta: metav1.ObjectMeta{
Finalizers: []string{},
},
Spec: sharingv1alpha1.ResourceOfferSpec{
WithdrawalTimestamp: &now,
},
Status: sharingv1alpha1.ResourceOfferStatus{
Phase: sharingv1alpha1.ResourceOfferRefused,
},
},
expected: Equal(kubeletDeletePhaseNodeDeleted),
}),
Entry("accepted ResourceOffer", getDeleteVirtualKubeletPhaseTestcase{
resourceOffer: &sharingv1alpha1.ResourceOffer{
ObjectMeta: metav1.ObjectMeta{
Finalizers: []string{},
},
Spec: sharingv1alpha1.ResourceOfferSpec{},
Status: sharingv1alpha1.ResourceOfferStatus{
Phase: sharingv1alpha1.ResourceOfferAccepted,
},
},
expected: Equal(kubeletDeletePhaseNone),
}),
Entry("accepted ResourceOffer with deletion timestamp", getDeleteVirtualKubeletPhaseTestcase{
resourceOffer: &sharingv1alpha1.ResourceOffer{
ObjectMeta: metav1.ObjectMeta{
DeletionTimestamp: &metav1.Time{
Time: time.Now(),
},
Finalizers: []string{},
},
Spec: sharingv1alpha1.ResourceOfferSpec{},
Status: sharingv1alpha1.ResourceOfferStatus{
Phase: sharingv1alpha1.ResourceOfferAccepted,
},
},
expected: Equal(kubeletDeletePhaseNodeDeleted),
}),
Entry("refused ResourceOffer with created VirtualNode", getDeleteVirtualKubeletPhaseTestcase{
resourceOffer: &sharingv1alpha1.ResourceOffer{
Spec: sharingv1alpha1.ResourceOfferSpec{},
Status: sharingv1alpha1.ResourceOfferStatus{
Phase: sharingv1alpha1.ResourceOfferRefused,
},
},
virtualNode: &virtualkubeletv1alpha1.VirtualNode{
Status: virtualkubeletv1alpha1.VirtualNodeStatus{
Conditions: []virtualkubeletv1alpha1.VirtualNodeCondition{
{
Type: virtualkubeletv1alpha1.NodeConditionType,
Status: virtualkubeletv1alpha1.RunningConditionStatusType,
},
},
},
},
expected: Equal(kubeletDeletePhaseDrainingNode),
}),
Entry("accepted ResourceOffer with deletion timestamp and created VirtualNode", getDeleteVirtualKubeletPhaseTestcase{
resourceOffer: &sharingv1alpha1.ResourceOffer{
ObjectMeta: metav1.ObjectMeta{
DeletionTimestamp: &metav1.Time{
Time: time.Now(),
},
},
Spec: sharingv1alpha1.ResourceOfferSpec{},
Status: sharingv1alpha1.ResourceOfferStatus{
Phase: sharingv1alpha1.ResourceOfferAccepted,
},
},
virtualNode: &virtualkubeletv1alpha1.VirtualNode{
Status: virtualkubeletv1alpha1.VirtualNodeStatus{
Conditions: []virtualkubeletv1alpha1.VirtualNodeCondition{
{
Type: virtualkubeletv1alpha1.NodeConditionType,
Status: virtualkubeletv1alpha1.RunningConditionStatusType,
},
},
},
},
expected: Equal(kubeletDeletePhaseDrainingNode),
}),
Entry("desired deletion of ResourceOffer", getDeleteVirtualKubeletPhaseTestcase{
resourceOffer: &sharingv1alpha1.ResourceOffer{
Spec: sharingv1alpha1.ResourceOfferSpec{
WithdrawalTimestamp: &now,
},
Status: sharingv1alpha1.ResourceOfferStatus{
Phase: sharingv1alpha1.ResourceOfferAccepted,
},
},
virtualNode: &virtualkubeletv1alpha1.VirtualNode{
Status: virtualkubeletv1alpha1.VirtualNodeStatus{
Conditions: []virtualkubeletv1alpha1.VirtualNodeCondition{
{
Type: virtualkubeletv1alpha1.NodeConditionType,
Status: virtualkubeletv1alpha1.RunningConditionStatusType,
},
},
},
},
expected: Equal(kubeletDeletePhaseDrainingNode),
}),
Entry("desired deletion of ResourceOffer without VirtualNode", getDeleteVirtualKubeletPhaseTestcase{
resourceOffer: &sharingv1alpha1.ResourceOffer{
Spec: sharingv1alpha1.ResourceOfferSpec{
WithdrawalTimestamp: &now,
},
Status: sharingv1alpha1.ResourceOfferStatus{
Phase: sharingv1alpha1.ResourceOfferAccepted,
},
},
virtualNode: nil,
expected: Equal(kubeletDeletePhaseNodeDeleted),
}),
)
})
})