-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpostgres_controller_test.go
775 lines (668 loc) · 22.4 KB
/
postgres_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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
package postgres
import (
"context"
"fmt"
"time"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/golang/mock/gomock"
"github.com/movetokube/postgres-operator/pkg/apis/db/v1alpha1"
mockpg "github.com/movetokube/postgres-operator/pkg/postgres/mock"
"github.com/movetokube/postgres-operator/pkg/utils"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/types"
"k8s.io/client-go/kubernetes/scheme"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/client/fake"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
)
var _ = Describe("ReconcilePostgres", func() {
var (
name = "test-db"
namespace = "operator"
sc *runtime.Scheme
req reconcile.Request
mockCtrl *gomock.Controller
pg *mockpg.MockPG
)
BeforeEach(func() {
// Gomock
mockCtrl = gomock.NewController(GinkgoT())
pg = mockpg.NewMockPG(mockCtrl)
// Create runtime scheme
sc = scheme.Scheme
sc.AddKnownTypes(v1alpha1.SchemeGroupVersion, &v1alpha1.Postgres{})
sc.AddKnownTypes(v1alpha1.SchemeGroupVersion, &v1alpha1.PostgresList{})
// Create mock reconcile request
req = reconcile.Request{
NamespacedName: types.NamespacedName{
Name: name,
Namespace: namespace,
},
}
})
AfterEach(func() {
mockCtrl.Finish()
})
It("should not requeue if Postgres does not exist", func() {
// Create client
cl := fake.NewFakeClient()
// Create ReconcilePostgres
rp := &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
}
// Call Reconcile
res, err := rp.Reconcile(req)
// No error should be returned
Expect(err).To(BeNil())
// Request should not be requeued
Expect(res.Requeue).To(BeFalse())
})
Describe("Checking deletion logic", func() {
var (
postgresCR *v1alpha1.Postgres
cl client.Client
rp *ReconcilePostgres
)
BeforeEach(func() {
now := metav1.NewTime(time.Now())
postgresCR = &v1alpha1.Postgres{
ObjectMeta: metav1.ObjectMeta{
Name: name,
Namespace: namespace,
DeletionTimestamp: &now,
Finalizers: []string{"foregroundDeletion"},
},
Spec: v1alpha1.PostgresSpec{
Database: name,
},
Status: v1alpha1.PostgresStatus{
Succeeded: true,
Roles: v1alpha1.PostgresRoles{
Owner: name + "-group",
Reader: name + "-reader",
Writer: name + "-writer",
},
},
}
})
Context("DropOnDelete is unset", func() {
BeforeEach(func() {
// Create client
cl = fake.NewFakeClient([]runtime.Object{postgresCR}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
}
})
It("should remove finalizer", func() {
_, err := rp.Reconcile(req)
// No error should be returned
Expect(err).To(BeNil())
// Check updated Postgres
foundPostgres := &v1alpha1.Postgres{}
err = cl.Get(context.TODO(), types.NamespacedName{Name: name, Namespace: namespace}, foundPostgres)
Expect(err).To(BeNil())
Expect(len(foundPostgres.GetFinalizers())).To(Equal(0))
})
It("should not try to delete roles or database", func() {
// Neither DropRole nor DropDatabase should be called
pg.EXPECT().DropRole(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Times(0)
pg.EXPECT().DropDatabase(gomock.Any(), gomock.Any()).Times(0)
// Call Reconcile
rp.Reconcile(req)
})
})
Context("DropOnDelete is enabled", func() {
var (
dropGroupRole *gomock.Call
dropReaderRole *gomock.Call
dropWriterRole *gomock.Call
dropDatabase *gomock.Call
)
BeforeEach(func() {
// Expected function calls
pg.EXPECT().GetUser().Return("pguser").AnyTimes()
dropGroupRole = pg.EXPECT().DropRole(name+"-group", "pguser", name, gomock.Any())
dropReaderRole = pg.EXPECT().DropRole(name+"-reader", "pguser", name, gomock.Any())
dropWriterRole = pg.EXPECT().DropRole(name+"-writer", "pguser", name, gomock.Any())
dropDatabase = pg.EXPECT().DropDatabase(name, gomock.Any())
// Create Postgres with DropOnDelete == true
dropPostgres := postgresCR.DeepCopy()
dropPostgres.Spec.DropOnDelete = true
// Create client
cl = fake.NewFakeClient([]runtime.Object{dropPostgres}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
}
})
Context("Deletion is successful", func() {
It("should remove finalizer", func() {
// No method should return error
dropGroupRole.Return(nil)
dropReaderRole.Return(nil)
dropWriterRole.Return(nil)
dropDatabase.Return(nil)
// Call Reconcile
_, err := rp.Reconcile(req)
// No error should be returned
Expect(err).To(BeNil())
// Check updated Postgres
foundPostgres := &v1alpha1.Postgres{}
err = cl.Get(context.TODO(), types.NamespacedName{Name: name, Namespace: namespace}, foundPostgres)
Expect(err).To(BeNil())
Expect(len(foundPostgres.GetFinalizers())).To(Equal(0))
})
})
Context("Deletion is not successful", func() {
It("should not remove finalizer when any database action fails", func() {
// DropDatabase fails
dropDatabase.Return(fmt.Errorf("Could not drop database"))
// Call Reconcile
_, err := rp.Reconcile(req)
// No error should be returned
Expect(err).To(Not(BeNil()))
// Check updated Postgres
foundPostgres := &v1alpha1.Postgres{}
err = cl.Get(context.TODO(), types.NamespacedName{Name: name, Namespace: namespace}, foundPostgres)
Expect(err).To(BeNil())
Expect(foundPostgres.GetFinalizers()[0]).To(Equal("foregroundDeletion"))
})
})
Context("Another Postgres exists with same database", func() {
BeforeEach(func() {
// Create two Postgres with same database name
dropPostgres := postgresCR.DeepCopy()
dropPostgres.Spec.DropOnDelete = true
anotherPostgres := postgresCR.DeepCopy()
anotherPostgres.Namespace = "default"
// Create client
cl = fake.NewFakeClient([]runtime.Object{dropPostgres, anotherPostgres}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
}
})
It("should not drop roles or database", func() {
// Expect no method calls
dropDatabase.Times(0)
dropGroupRole.Times(0)
dropReaderRole.Times(0)
dropWriterRole.Times(0)
// Call Reconcile
rp.Reconcile(req)
})
})
})
})
Describe("Checking creation logic", func() {
var (
cl client.Client
rp *ReconcilePostgres
)
var postgresCR *v1alpha1.Postgres = &v1alpha1.Postgres{
ObjectMeta: metav1.ObjectMeta{
Name: name,
Namespace: namespace,
},
Spec: v1alpha1.PostgresSpec{
Database: name,
},
}
Context("MasterRole is unset", func() {
BeforeEach(func() {
// Create client
cl = fake.NewFakeClient([]runtime.Object{postgresCR}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
}
})
It("should pick a default role name", func() {
// CreateGroupRole we're after
expectedName := name + "-group"
pg.EXPECT().CreateGroupRole(expectedName).Return(nil)
// Rest of CreateGroupRole calls (reader and writer)
pg.EXPECT().CreateGroupRole(gomock.Any()).Return(nil).AnyTimes()
// CreateDB call
pg.EXPECT().CreateDB(name, expectedName).Return(nil)
// Call Reconcile
rp.Reconcile(req)
})
})
Context("MasterRole is set", func() {
BeforeEach(func() {
// Create client
modPostgres := postgresCR.DeepCopy()
modPostgres.Spec.MasterRole = "my-master-role"
cl = fake.NewFakeClient([]runtime.Object{modPostgres}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
}
})
It("should use name in MasterRole", func() {
// CreateGroupRole we're after
expectedName := "my-master-role"
pg.EXPECT().CreateGroupRole(expectedName).Return(nil)
// Rest of CreateGroupRole calls (reader and writer)
pg.EXPECT().CreateGroupRole(gomock.Any()).Return(nil).AnyTimes()
// CreateDB call
pg.EXPECT().CreateDB(name, expectedName).Return(nil)
// Call Reconcile
rp.Reconcile(req)
})
})
Context("Correct annotation filter is set", func() {
BeforeEach(func() {
// Create client
modPostgres := postgresCR.DeepCopy()
modPostgres.Annotations = map[string]string{
utils.INSTANCE_ANNOTATION: "my-instance",
}
cl = fake.NewFakeClient([]runtime.Object{modPostgres}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
instanceFilter: "my-instance",
}
})
It("should create the database", func() {
pg.EXPECT().CreateGroupRole(gomock.Any()).Return(nil).Times(3)
pg.EXPECT().CreateDB(name, gomock.Any()).Return(nil)
// Call Reconcile
rp.Reconcile(req)
})
})
Context("Incorrect annotation filter is set", func() {
BeforeEach(func() {
// Create client
modPostgres := postgresCR.DeepCopy()
modPostgres.Annotations = map[string]string{
utils.INSTANCE_ANNOTATION: "my-instance",
}
cl = fake.NewFakeClient([]runtime.Object{modPostgres}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
instanceFilter: "my-other-instance",
}
})
It("should create the database", func() {
// Call Reconcile
rp.Reconcile(req)
})
})
Context("Creation is successful", func() {
BeforeEach(func() {
// Create client
cl = fake.NewFakeClient([]runtime.Object{postgresCR}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
}
// Expected function calls
pg.EXPECT().CreateGroupRole(gomock.Any()).Return(nil).Times(3)
pg.EXPECT().CreateDB(name, gomock.Any()).Return(nil)
})
It("should update status", func() {
expectedRoles := v1alpha1.PostgresRoles{
Owner: name + "-group",
Reader: name + "-reader",
Writer: name + "-writer",
}
// Call Reconcile
_, err := rp.Reconcile(req)
// No error should be returned
Expect(err).To(BeNil())
// Check updated Postgres
foundPostgres := &v1alpha1.Postgres{}
err = cl.Get(context.TODO(), types.NamespacedName{Name: name, Namespace: namespace}, foundPostgres)
Expect(foundPostgres.Status.Roles).To(Equal(expectedRoles))
Expect(foundPostgres.Status.Succeeded).To(BeTrue())
})
It("should set a finalizer", func() {
expectedFinalizer := "foregroundDeletion"
// Call Reconcile
_, err := rp.Reconcile(req)
// No error should be returned
Expect(err).To(BeNil())
// Check updated Postgres
foundPostgres := &v1alpha1.Postgres{}
err = cl.Get(context.TODO(), types.NamespacedName{Name: name, Namespace: namespace}, foundPostgres)
Expect(foundPostgres.GetFinalizers()[0]).To(Equal(expectedFinalizer))
})
})
Context("Creation is not successful", func() {
BeforeEach(func() {
// Create client
cl = fake.NewFakeClient([]runtime.Object{postgresCR}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
}
// Expected function calls
pg.EXPECT().CreateGroupRole(gomock.Any()).Return(nil).Times(1)
pg.EXPECT().CreateDB(name, gomock.Any()).Return(fmt.Errorf("Could not create database"))
})
It("should not update status", func() {
expectedRoles := v1alpha1.PostgresRoles{
Owner: "",
Reader: "",
Writer: "",
}
// Call Reconcile
rp.Reconcile(req)
// Check updated Postgres
foundPostgres := &v1alpha1.Postgres{}
cl.Get(context.TODO(), types.NamespacedName{Name: name, Namespace: namespace}, foundPostgres)
Expect(foundPostgres.Status.Roles).To(Equal(expectedRoles))
Expect(foundPostgres.Status.Succeeded).To(BeFalse())
})
})
})
Describe("Checking extensions logic", func() {
var (
cl client.Client
rp *ReconcilePostgres
)
var postgresCR *v1alpha1.Postgres = &v1alpha1.Postgres{
ObjectMeta: metav1.ObjectMeta{
Name: name,
Namespace: namespace,
},
Spec: v1alpha1.PostgresSpec{
Database: name,
},
Status: v1alpha1.PostgresStatus{
// So it doesn't run creation logic
Succeeded: true,
},
}
Context("Postgres has no extensions", func() {
BeforeEach(func() {
// Create client
cl = fake.NewFakeClient([]runtime.Object{postgresCR}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
}
})
It("should not try to create extensions", func() {
// CreateExtension should not be called
pg.EXPECT().CreateExtension(name, gomock.Any(), gomock.Any()).Times(0)
// Call Reconcile
rp.Reconcile(req)
})
It("should not set status", func() {
// Call reconcile
rp.Reconcile(req)
// Check updated Postgres
foundPostgres := &v1alpha1.Postgres{}
cl.Get(context.TODO(), types.NamespacedName{Name: name, Namespace: namespace}, foundPostgres)
Expect(len(foundPostgres.Status.Extensions)).To(Equal(0))
})
})
Context("Postgres has extensions", func() {
BeforeEach(func() {
// Add extensions to Postgres object
extPostgres := postgresCR.DeepCopy()
extPostgres.Spec.Extensions = []string{"pg_stat_statements", "hstore"}
// Create client
cl = fake.NewFakeClient([]runtime.Object{extPostgres}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
}
})
Context("Creation is successful", func() {
BeforeEach(func() {
// Expected method calls
pg.EXPECT().CreateExtension(name, "pg_stat_statements", gomock.Any()).Return(nil).Times(1)
pg.EXPECT().CreateExtension(name, "hstore", gomock.Any()).Return(nil).Times(1)
})
It("should update status", func() {
// Call reconcile
rp.Reconcile(req)
// Check updated Postgres
foundPostgres := &v1alpha1.Postgres{}
cl.Get(context.TODO(), types.NamespacedName{Name: name, Namespace: namespace}, foundPostgres)
Expect(len(foundPostgres.Status.Extensions)).To(Equal(2))
Expect(foundPostgres.Status.Extensions[0]).To(Equal("pg_stat_statements"))
Expect(foundPostgres.Status.Extensions[1]).To(Equal("hstore"))
})
})
Context("Creation is not successful", func() {
BeforeEach(func() {
// Expected method calls
pg.EXPECT().CreateExtension(name, "pg_stat_statements", gomock.Any()).Return(fmt.Errorf("Could not create extension")).Times(1)
pg.EXPECT().CreateExtension(name, "hstore", gomock.Any()).Return(nil).Times(1)
})
It("should update status", func() {
// Call reconcile
rp.Reconcile(req)
// Check updated Postgres
foundPostgres := &v1alpha1.Postgres{}
cl.Get(context.TODO(), types.NamespacedName{Name: name, Namespace: namespace}, foundPostgres)
Expect(len(foundPostgres.Status.Extensions)).To(Equal(1))
Expect(foundPostgres.Status.Extensions[0]).To(Equal("hstore"))
})
})
})
Context("Subset of extensions already created", func() {
BeforeEach(func() {
// Add extensions to Postgres object
extPostgres := postgresCR.DeepCopy()
extPostgres.Spec.Extensions = []string{"pg_stat_statements", "hstore"}
extPostgres.Status.Extensions = []string{"hstore"}
// Create client
cl = fake.NewFakeClient([]runtime.Object{extPostgres}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
}
})
Context("Creation is successful", func() {
It("should not recreate extisting extension", func() {
// Expected method calls
pg.EXPECT().CreateExtension(name, "pg_stat_statements", gomock.Any()).Return(nil).Times(1)
pg.EXPECT().CreateExtension(name, "hstore", gomock.Any()).Times(0)
// Call reconcile
rp.Reconcile(req)
// Check updated Postgres
foundPostgres := &v1alpha1.Postgres{}
cl.Get(context.TODO(), types.NamespacedName{Name: name, Namespace: namespace}, foundPostgres)
Expect(len(foundPostgres.Status.Extensions)).To(Equal(2))
Expect(foundPostgres.Status.Extensions[0]).To(Equal("hstore"))
Expect(foundPostgres.Status.Extensions[1]).To(Equal("pg_stat_statements"))
})
})
})
})
Describe("Checking schemas logic", func() {
var (
cl client.Client
rp *ReconcilePostgres
)
var postgresCR *v1alpha1.Postgres = &v1alpha1.Postgres{
ObjectMeta: metav1.ObjectMeta{
Name: name,
Namespace: namespace,
},
Spec: v1alpha1.PostgresSpec{
Database: name,
},
Status: v1alpha1.PostgresStatus{
// So it doesn't run creation logic
Succeeded: true,
Roles: v1alpha1.PostgresRoles{
Owner: name + "-group",
Reader: name + "-reader",
Writer: name + "-writer",
},
},
}
Context("Postgres has no schemas", func() {
BeforeEach(func() {
// Create client
cl = fake.NewFakeClient([]runtime.Object{postgresCR}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
}
})
It("should not try to create schemas", func() {
// CreateSchema should not be called
pg.EXPECT().CreateSchema(gomock.Any(), gomock.Any(), gomock.Any(), gomock.Any()).Times(0)
// Call Reconcile
rp.Reconcile(req)
})
It("should not set status", func() {
// Call reconcile
rp.Reconcile(req)
// Check updated Postgres
foundPostgres := &v1alpha1.Postgres{}
cl.Get(context.TODO(), types.NamespacedName{Name: name, Namespace: namespace}, foundPostgres)
Expect(len(foundPostgres.Status.Schemas)).To(Equal(0))
})
})
Context("Postgres has schemas", func() {
BeforeEach(func() {
// Add schemas to Postgres object
schemaPostgres := postgresCR.DeepCopy()
schemaPostgres.Spec.Schemas = []string{"customers", "stores"}
// Create client
cl = fake.NewFakeClient([]runtime.Object{schemaPostgres}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
}
})
Context("Creation is successful", func() {
BeforeEach(func() {
// Expected method calls
// customers schema
pg.EXPECT().CreateSchema(name, name+"-group", "customers", gomock.Any()).Return(nil).Times(1)
pg.EXPECT().SetSchemaPrivileges(name, name+"-group", gomock.Any(), "customers", gomock.Any(), gomock.Any(), gomock.Any()).Return(nil).Times(3)
// stores schema
pg.EXPECT().CreateSchema(name, name+"-group", "stores", gomock.Any()).Return(nil).Times(1)
pg.EXPECT().SetSchemaPrivileges(name, name+"-group", gomock.Any(), "stores", gomock.Any(), gomock.Any(), gomock.Any()).Return(nil).Times(3)
})
It("should update status", func() {
// Call reconcile
rp.Reconcile(req)
// Check updated Postgres
foundPostgres := &v1alpha1.Postgres{}
cl.Get(context.TODO(), types.NamespacedName{Name: name, Namespace: namespace}, foundPostgres)
Expect(len(foundPostgres.Status.Schemas)).To(Equal(2))
Expect(foundPostgres.Status.Schemas[0]).To(Equal("customers"))
Expect(foundPostgres.Status.Schemas[1]).To(Equal("stores"))
})
})
Context("Creation is not successful", func() {
BeforeEach(func() {
// Expected method calls
// customers schema errors
pg.EXPECT().CreateSchema(name, name+"-group", "customers", gomock.Any()).Return(fmt.Errorf("Could not create schema")).Times(1)
pg.EXPECT().SetSchemaPrivileges(name, name+"-group", gomock.Any(), "customers", gomock.Any(), gomock.Any(), gomock.Any()).Return(nil).Times(0)
// stores schema
pg.EXPECT().CreateSchema(name, name+"-group", "stores", gomock.Any()).Return(nil).Times(1)
pg.EXPECT().SetSchemaPrivileges(name, name+"-group", name+"-reader", "stores", gomock.Any(), false, gomock.Any()).Return(nil).Times(1)
pg.EXPECT().SetSchemaPrivileges(name, name+"-group", name+"-writer", "stores", gomock.Any(), true, gomock.Any()).Return(nil).Times(1)
pg.EXPECT().SetSchemaPrivileges(name, name+"-group", name+"-group", "stores", gomock.Any(), true, gomock.Any()).Return(nil).Times(1)
})
It("should update status", func() {
// Call reconcile
rp.Reconcile(req)
// Check updated Postgres
foundPostgres := &v1alpha1.Postgres{}
cl.Get(context.TODO(), types.NamespacedName{Name: name, Namespace: namespace}, foundPostgres)
Expect(len(foundPostgres.Status.Schemas)).To(Equal(1))
Expect(foundPostgres.Status.Schemas[0]).To(Equal("stores"))
})
})
})
Context("Subset of schema already created", func() {
BeforeEach(func() {
// Add schemas to Postgres object
schemaPostgres := postgresCR.DeepCopy()
schemaPostgres.Spec.Schemas = []string{"customers", "stores"}
schemaPostgres.Status.Schemas = []string{"stores"}
// Create client
cl = fake.NewFakeClient([]runtime.Object{schemaPostgres}...)
// Create ReconcilePostgres
rp = &ReconcilePostgres{
client: cl,
scheme: sc,
pg: pg,
pgHost: "postgres.local",
}
})
Context("Creation is successful", func() {
It("should not recreate extisting schema", func() {
// Expected method calls
// customers schema
pg.EXPECT().CreateSchema(name, name+"-group", "customers", gomock.Any()).Return(nil).Times(1)
pg.EXPECT().SetSchemaPrivileges(name, name+"-group", gomock.Any(), "customers", gomock.Any(), gomock.Any(), gomock.Any()).Return(nil).Times(3)
// stores schema already exists
pg.EXPECT().CreateSchema(name, name+"-group", "stores", gomock.Any()).Times(0)
// Call reconcile
rp.Reconcile(req)
// Check updated Postgres
foundPostgres := &v1alpha1.Postgres{}
cl.Get(context.TODO(), types.NamespacedName{Name: name, Namespace: namespace}, foundPostgres)
Expect(len(foundPostgres.Status.Schemas)).To(Equal(2))
Expect(foundPostgres.Status.Schemas[0]).To(Equal("stores"))
Expect(foundPostgres.Status.Schemas[1]).To(Equal("customers"))
})
})
})
})
})