-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathintegration_test.go
More file actions
477 lines (409 loc) · 13.2 KB
/
integration_test.go
File metadata and controls
477 lines (409 loc) · 13.2 KB
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
473
474
475
476
477
// Copyright 2022 Google LLC.
//
// 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 integration_test has testintegration tests that run a local kubernetes
// api server and ensure that the interaction between kubernetes and the
// operator works correctly.
package testintegration_test
import (
"context"
"fmt"
"os"
"testing"
"github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/internal/testhelpers"
"github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/internal/testintegration"
"github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/internal/workload"
appsv1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/client"
)
// defaultClient holds the k8s client for the default EnvTestHarness which is
// shared among tests that do not mess with the manager's lifecycle.
var defaultClient client.Client
func TestMain(m *testing.M) {
// start up a shared EnvTestHarness to be reused across test cases that do not
// impact the lifecycle of the manager. This makes tests cases more efficient
// because it takes 2-3 minutes to start up a new EnvTestHarness.
var err error
th, err := testintegration.NewTestHarness()
if err != nil {
testintegration.Log.Error(err, "errors while initializing kubernetes cluster")
th.Teardown()
os.Exit(1)
}
defaultClient = th.Client
code := m.Run()
th.Teardown()
os.Exit(code)
}
// newTestCaseClient Creates a new TestCaseClient providing unique namespace and
// other default values.
func newTestCaseClient(name string, c client.Client) *testhelpers.TestCaseClient {
return &testhelpers.TestCaseClient{
Client: c,
Namespace: testhelpers.NewNamespaceName(name),
ConnectionString: "region:project:inst",
}
}
func TestCreateAndDeleteResource(t *testing.T) {
ctx := testintegration.TestContext()
tcc := newTestCaseClient("create", defaultClient)
res, err := tcc.CreateResource(ctx)
if err != nil {
t.Fatal(err)
}
err = tcc.WaitForFinalizerOnResource(ctx, res)
if err != nil {
t.Fatal(err)
}
err = tcc.DeleteResourceAndWait(ctx, res)
if err != nil {
t.Fatal(err)
}
}
// newTestCaseClient Creates a new TestCaseClient providing unique namespace and
// other default values.
func newDomainNameTestCaseClient(name string, c client.Client) *testhelpers.TestCaseClient {
return &testhelpers.TestCaseClient{
Client: c,
Namespace: testhelpers.NewNamespaceName(name),
ConnectionString: "db.example.com",
}
}
func TestCreateAndDeleteDomainNameResource(t *testing.T) {
ctx := testintegration.TestContext()
tcc := newDomainNameTestCaseClient("create", defaultClient)
res, err := tcc.CreateResource(ctx)
if err != nil {
t.Fatal(err)
}
err = tcc.WaitForFinalizerOnResource(ctx, res)
if err != nil {
t.Fatal(err)
}
err = tcc.DeleteResourceAndWait(ctx, res)
if err != nil {
t.Fatal(err)
}
}
func TestModifiesNewDeployment(t *testing.T) {
ctx := testintegration.TestContext()
tcc := newTestCaseClient("modifynew", defaultClient)
err := tcc.CreateOrPatchNamespace(ctx)
if err != nil {
t.Fatalf("can't create namespace, %v", err)
}
const (
pwlName = "newdeploy"
deploymentAppLabel = "busybox"
)
key := types.NamespacedName{Name: pwlName, Namespace: tcc.Namespace}
t.Log("Creating AuthProxyWorkload")
_, err = tcc.CreateAuthProxyWorkload(ctx, key, deploymentAppLabel, tcc.ConnectionString, "Deployment")
if err != nil {
t.Error(err)
return
}
t.Log("Waiting for AuthProxyWorkload operator to begin the reconcile loop")
_, err = tcc.GetAuthProxyWorkloadAfterReconcile(ctx, key)
if err != nil {
t.Error("unable to create AuthProxyWorkload", err)
return
}
t.Log("Creating deployment")
d := testhelpers.BuildDeployment(key, deploymentAppLabel)
err = tcc.CreateWorkload(ctx, d)
if err != nil {
t.Error("unable to create deployment", err)
return
}
t.Log("Creating deployment replicas")
_, _, err = tcc.CreateDeploymentReplicaSetAndPods(ctx, d)
if err != nil {
t.Error("unable to create pods", err)
return
}
err = tcc.ExpectPodContainerCount(ctx, d.Spec.Selector, 2, "all")
if err != nil {
t.Error(err)
}
}
func TestModifiesExistingDeployment(t *testing.T) {
const (
pwlName = "db-mod"
deploymentName = "deploy-mod"
deploymentAppLabel = "existing-mod"
)
ctx := testintegration.TestContext()
tcc := newTestCaseClient("modifyexisting", defaultClient)
err := tcc.CreateOrPatchNamespace(ctx)
if err != nil {
t.Fatal(err)
}
t.Logf("Creating namespace %v", tcc.Namespace)
pKey := types.NamespacedName{Name: pwlName, Namespace: tcc.Namespace}
dKey := types.NamespacedName{Name: deploymentName, Namespace: tcc.Namespace}
t.Log("Creating deployment")
d := testhelpers.BuildDeployment(dKey, deploymentAppLabel)
err = tcc.CreateWorkload(ctx, d)
if err != nil {
t.Fatal(err)
}
rs1, pods, err := tcc.CreateDeploymentReplicaSetAndPods(ctx, d)
if err != nil {
t.Fatalf("Unable to create pods and replicaset for deployment, %v", err)
}
// expect 1 container... no cloudsql instance yet
err = tcc.ExpectPodContainerCount(ctx, d.Spec.Selector, 1, "all")
if err != nil {
t.Fatal(err)
}
t.Log("Creating cloud sql instance")
_, err = tcc.CreateAuthProxyWorkload(ctx, pKey, deploymentAppLabel, tcc.ConnectionString, "Deployment")
if err != nil {
t.Fatal(err)
}
t.Log("Waiting for cloud sql instance to begin the reconcile loop ")
_, err = tcc.GetAuthProxyWorkloadAfterReconcile(ctx, pKey)
if err != nil {
t.Fatal(err)
}
// user must manually trigger the pods to be recreated.
// so we simulate that by asserting that after the update, there is only
// 1 container on the pods.
// expect 1 container... no cloudsql instance yet
err = tcc.ExpectPodContainerCount(ctx, d.Spec.Selector, 1, "all")
if err != nil {
t.Fatal(err)
}
err = recreatePodsAfterDeploymentUpdate(ctx, tcc, d, rs1, pods)
if err != nil {
t.Fatal(err)
}
// and check for 2 containers
err = tcc.ExpectPodContainerCount(ctx, d.Spec.Selector, 2, "all")
if err != nil {
t.Fatal(err)
}
}
// TestUpdateWorkloadContainerWhenDefaultProxyImageChanges is the test that
// demonstrates that when the operator's default image changes, it will
// automatically update the proxy container image on existing deployments.
func TestUpdateWorkloadContainerWhenDefaultProxyImageChanges(t *testing.T) {
ctx := testintegration.TestContext()
// Use a fresh EnvTestHarness because we are messing with the operator
// lifecycle.
th, err := testintegration.NewTestHarness()
defer th.Teardown()
tcc := newTestCaseClient("updateimage", th.Client)
err = tcc.CreateOrPatchNamespace(ctx)
if err != nil {
t.Fatalf("can't create namespace, %v", err)
}
const (
pwlName = "newdeploy"
deploymentAppLabel = "busybox"
)
key := types.NamespacedName{Name: pwlName, Namespace: tcc.Namespace}
t.Log("Creating AuthProxyWorkload")
p, err := tcc.CreateAuthProxyWorkload(ctx, key, deploymentAppLabel, tcc.ConnectionString, "Deployment")
if err != nil {
t.Fatal(err)
return
}
t.Log("Waiting for AuthProxyWorkload operator to begin the reconcile loop")
_, err = tcc.GetAuthProxyWorkloadAfterReconcile(ctx, key)
if err != nil {
t.Fatal("unable to create AuthProxyWorkload", err)
return
}
t.Log("Creating deployment")
d := testhelpers.BuildDeployment(key, deploymentAppLabel)
err = tcc.CreateWorkload(ctx, d)
if err != nil {
t.Fatal("unable to create deployment", err)
return
}
t.Log("Creating deployment replicas")
rs, pl, err := tcc.CreateDeploymentReplicaSetAndPods(ctx, d)
if err != nil {
t.Fatal("unable to create pods", err)
return
}
// Check that proxy container was added to pods
err = tcc.ExpectPodContainerCount(ctx, d.Spec.Selector, 2, "all")
if err != nil {
t.Fatal(err)
}
// Check that the pods have the expected default proxy image
pods, err := testhelpers.ListPods(ctx, tcc.Client, tcc.Namespace, d.Spec.Selector)
for _, p := range pods.Items {
want := workload.DefaultProxyImage
var got string
if len(p.Spec.Containers) > 1 {
got = p.Spec.Containers[1].Image
} else {
got = p.Spec.InitContainers[0].Image
}
if got != want {
t.Errorf("got %v, want %v image before operator upgrade", got, want)
}
}
// Restart the manager with a new default proxy image
const newDefault = "gcr.io/cloud-sql-connectors/cloud-sql-proxy:999.9.9"
th.StopManager()
err = th.StartManager(newDefault)
if err != nil {
t.Fatal("can't restart container", err)
}
// Get the related deployment. Make sure that annotations were
// set on the pod template
err = testhelpers.RetryUntilSuccess(24, testhelpers.DefaultRetryInterval, func() error {
ud := &appsv1.Deployment{}
err = tcc.Client.Get(ctx, client.ObjectKeyFromObject(d), ud)
wantK, wantV := workload.PodAnnotation(p, newDefault)
gotV := ud.Spec.Template.Annotations[wantK]
if gotV != wantV {
return fmt.Errorf("got %s, want %s for podspec annotation on deployment", gotV, wantV)
}
return nil
})
if err != nil {
t.Fatal(err)
}
// Recreate the ReplicaSet and Pods as would happen when the deployment
// PodTemplate changed.
err = recreatePodsAfterDeploymentUpdate(ctx, tcc, d, rs, pl)
if err != nil {
t.Fatal(err)
}
// Check that the new pods have the new default proxy image
pods, err = testhelpers.ListPods(ctx, tcc.Client, tcc.Namespace, d.Spec.Selector)
for _, p := range pods.Items {
want := newDefault
var got string
if len(p.Spec.Containers) > 1 {
got = p.Spec.Containers[1].Image
} else {
got = p.Spec.InitContainers[0].Image
}
if got != want {
t.Errorf("got %v, want %v image before operator upgrade", got, want)
}
}
}
// TestDeleteMisconfiguredPod is the test that
// demonstrates that when a pod is created, and the webhook does not work, then
// the PodDeleteController will attempt to delete the pod.
func TestDeleteMisconfiguredPod(t *testing.T) {
ctx := testintegration.TestContext()
// Use a fresh Manager Harness because we are messing with the operator
// lifecycle.
th, err := testintegration.NewTestHarness()
defer th.Teardown()
tcc := newTestCaseClient("deletemisconfig", th.Client)
err = tcc.CreateOrPatchNamespace(ctx)
if err != nil {
t.Fatalf("can't create namespace, %v", err)
}
const (
pwlName = "newdeploy"
deploymentAppLabel = "busybox"
)
key := types.NamespacedName{Name: pwlName, Namespace: tcc.Namespace}
t.Log("Creating AuthProxyWorkload")
_, err = tcc.CreateAuthProxyWorkload(ctx, key, deploymentAppLabel, tcc.ConnectionString, "Deployment")
if err != nil {
t.Error(err)
return
}
// Stop the manager before attempting to create the resources
th.StopManager()
t.Log("Manager is stopped")
t.Log("Creating deployment")
d := testhelpers.BuildDeployment(key, deploymentAppLabel)
err = tcc.CreateWorkload(ctx, d)
if err != nil {
t.Fatal("unable to create deployment", err)
return
}
t.Log("Creating deployment replicas")
rs, pl, err := tcc.CreateDeploymentReplicaSetAndPods(ctx, d)
if err != nil {
t.Fatal("unable to create pods", err)
return
}
// Check that proxy container was not added to pods, because the manager is stopped
err = tcc.ExpectPodContainerCount(ctx, d.Spec.Selector, 1, "all")
if err != nil {
t.Fatal(err)
}
pods, err := testhelpers.ListPods(ctx, tcc.Client, tcc.Namespace, d.Spec.Selector)
if len(pods.Items) == 0 {
t.Fatal("No pods found")
}
t.Log("Restarting the manager...")
// Start the manager
err = th.StartManager(workload.DefaultProxyImage)
if err != nil {
t.Fatal("can't restart container", err)
}
// Expect that old pods are deleted
err = testhelpers.RetryUntilSuccess(24, testhelpers.DefaultRetryInterval, func() error {
pods, err := testhelpers.ListPods(ctx, tcc.Client, tcc.Namespace, d.Spec.Selector)
if err != nil {
return err
}
var podCount int
for _, pod := range pods.Items {
if !pod.GetDeletionTimestamp().IsZero() {
podCount++
}
}
if podCount > 0 {
return fmt.Errorf("got %v, want 0 pods that are not yet deleted", podCount)
}
return nil
})
if err != nil {
t.Fatal(err)
}
// Recreate the ReplicaSet and Pods as would happen when the deployment
// PodTemplate changed.
err = recreatePodsAfterDeploymentUpdate(ctx, tcc, d, rs, pl)
if err != nil {
t.Fatal(err)
}
}
// recreatePodsAfterDeploymentUpdate acts like the DeploymentController, when
// the Deployment is updated. It deletes the old ReplicaSet and Pods, and
// creates a new ReplicaSet and Pods.
func recreatePodsAfterDeploymentUpdate(ctx context.Context, tcc *testhelpers.TestCaseClient, d *appsv1.Deployment, rs1 *appsv1.ReplicaSet, pods []*corev1.Pod) error {
// Then we simulate the deployment pods being replaced
err := tcc.Client.Delete(ctx, rs1)
if err != nil {
return err
}
for i := 0; i < len(pods); i++ {
err = tcc.Client.Delete(ctx, pods[i])
if err != nil {
return err
}
}
_, _, err = tcc.CreateDeploymentReplicaSetAndPods(ctx, d)
if err != nil {
return err
}
return nil
}