-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcleaner_test.go
1378 lines (1110 loc) · 46 KB
/
cleaner_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
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Copyright © 2021, 2022, 2023 Red Hat, Inc.
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 main_test
// Documentation in literate-programming-style is available at:
// https://redhatinsights.github.io/insights-results-aggregator-cleaner/packages/cleaner_test.html
import (
"errors"
"os"
"testing"
"time"
"github.com/DATA-DOG/go-sqlmock"
"github.com/RedHatInsights/insights-operator-utils/logger"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"github.com/stretchr/testify/assert"
"github.com/tisnik/go-capture"
cleaner "github.com/RedHatInsights/insights-results-aggregator-cleaner"
main "github.com/RedHatInsights/insights-results-aggregator-cleaner"
)
func init() {
zerolog.SetGlobalLevel(zerolog.InfoLevel)
}
func checkCapture(t *testing.T, err error) {
if err != nil {
t.Fatal("Unable to capture standard output", err)
}
}
// TestShowVersion checks the function showVersion
func TestShowVersion(t *testing.T) {
const expected = "Insights Results Aggregator Cleaner version 1.0\n"
// try to call the tested function and capture its output
output, err := capture.StandardOutput(func() {
main.ShowVersion()
})
// check the captured text
checkCapture(t, err)
assert.Contains(t, output, expected)
}
// TestShowAuthors checks the function showAuthors
func TestShowAuthors(t *testing.T) {
// try to call the tested function and capture its output
output, err := capture.StandardOutput(func() {
main.ShowAuthors()
})
// check the captured text
checkCapture(t, err)
assert.Contains(t, output, "Red Hat Inc.")
}
// TestShowConfiguration checks the function ShowConfiguration
func TestShowConfiguration(t *testing.T) {
// fill in configuration structure
configuration := main.ConfigStruct{}
configuration.Storage = main.StorageConfiguration{
Driver: "postgres",
PGUsername: "foo",
PGPassword: "bar",
PGHost: "baz",
PGDBName: "aggregator",
PGParams: ""}
configuration.Logging = logger.LoggingConfiguration{
Debug: true,
LogLevel: ""}
configuration.Cleaner = main.CleanerConfiguration{
MaxAge: "3 days",
ClusterListFile: "cluster_list.txt"}
// try to call the tested function and capture its output
output, err := capture.ErrorOutput(func() {
zerolog.SetGlobalLevel(zerolog.InfoLevel)
log.Logger = log.Output(zerolog.New(os.Stderr))
main.ShowConfiguration(&configuration)
})
// check the captured text
checkCapture(t, err)
assert.Contains(t, output, "Driver")
assert.Contains(t, output, "Level")
assert.Contains(t, output, "Records max age")
}
func TestIsValidUUID(t *testing.T) {
type UUID struct {
id string
valid bool
}
uuids := []UUID{
UUID{
id: "",
valid: false,
},
UUID{
id: "00000000-0000-0000-0000-000000000000",
valid: true,
},
UUID{
id: "5d5892d4-1f74-4ccf-91af-548dfc9767aa",
valid: true,
},
UUID{ // x at beginning
id: "xd5892d4-1f74-4ccf-91af-548dfc9767aa",
valid: false,
},
UUID{ // wrong separator
id: "5d5892d4-1f74-4cc-f91af-548dfc9767aa",
valid: false,
},
}
for _, uuid := range uuids {
v := main.IsValidUUID(uuid.id)
assert.Equal(t, v, uuid.valid)
}
}
// TestDoSelectedOperationShowVersion checks the function showVersion called
// via doSelectedOperation function
func TestDoSelectedOperationShowVersion(t *testing.T) {
const expected = "Insights Results Aggregator Cleaner version 1.0\n"
// stub for structures needed to call the tested function
configuration := main.ConfigStruct{}
cliFlags := main.CliFlags{
ShowVersion: true,
ShowAuthors: false,
ShowConfiguration: false,
VacuumDatabase: false,
PerformCleanup: false,
DetectMultipleRuleDisable: false,
FillInDatabase: false,
}
// try to call the tested function and capture its output
output, err := capture.StandardOutput(func() {
code, err := main.DoSelectedOperation(&configuration, nil, cliFlags)
assert.Equal(t, code, main.ExitStatusOK)
assert.Nil(t, err)
})
// check the captured text
checkCapture(t, err)
assert.Contains(t, output, expected)
}
// TestDoSelectedOperationShowAuthors checks the function showAuthors called
// via doSelectedOperation function
func TestDoSelectedOperationShowAuthors(t *testing.T) {
// stub for structures needed to call the tested function
configuration := main.ConfigStruct{}
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: true,
ShowConfiguration: false,
VacuumDatabase: false,
PerformCleanup: false,
DetectMultipleRuleDisable: false,
FillInDatabase: false,
}
// try to call the tested function and capture its output
output, err := capture.StandardOutput(func() {
code, err := main.DoSelectedOperation(&configuration, nil, cliFlags)
assert.Equal(t, code, main.ExitStatusOK)
assert.Nil(t, err)
})
// check the captured text
checkCapture(t, err)
assert.Contains(t, output, "Red Hat Inc.")
}
// TestDoSelectedOperationShowConfiguration checks the function
// showConfiguration called via doSelectedOperation function
func TestDoSelectedOperationShowConfiguration(t *testing.T) {
// fill in configuration structure
configuration := main.ConfigStruct{}
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: true,
VacuumDatabase: false,
PerformCleanup: false,
DetectMultipleRuleDisable: false,
FillInDatabase: false,
}
// try to call the tested function and capture its output
output, err := capture.ErrorOutput(func() {
zerolog.SetGlobalLevel(zerolog.InfoLevel)
log.Logger = log.Output(zerolog.New(os.Stderr))
code, err := main.DoSelectedOperation(&configuration, nil, cliFlags)
assert.Equal(t, code, main.ExitStatusOK)
assert.Nil(t, err)
})
// check the captured text
checkCapture(t, err)
assert.Contains(t, output, "Driver")
assert.Contains(t, output, "Level")
assert.Contains(t, output, "Records max age")
}
// TestDoSelectedOperationVacuumDatabase checks the function
// vacuumDB called via doSelectedOperation function
func TestDoSelectedOperationVacuumDatabase(t *testing.T) {
// fill in configuration structure
configuration := main.ConfigStruct{}
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
VacuumDatabase: true,
PerformCleanup: false,
DetectMultipleRuleDisable: false,
FillInDatabase: false,
}
// call tested function
code, err := main.DoSelectedOperation(&configuration, nil, cliFlags)
// error is expected
assert.Error(t, err, "error is expected while calling main.vacuumDB")
// check the status
assert.Equal(t, code, main.ExitStatusPerformVacuumError)
}
// TestDoSelectedOperationPerformCleanup checks the function
// performCleanup called via doSelectedOperation function
func TestDoSelectedOperationPerformCleanup(t *testing.T) {
// fill in configuration structure
configuration := main.ConfigStruct{}
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
VacuumDatabase: false,
PerformCleanup: true,
DetectMultipleRuleDisable: false,
FillInDatabase: false,
}
// call tested function
code, err := main.DoSelectedOperation(&configuration, nil, cliFlags)
// error is expected
assert.Error(t, err, "error is expected while calling main.vacuumDB")
// check the status
assert.Equal(t, code, main.ExitStatusPerformCleanupError)
}
// TestDoSelectedOperationDetectMultipleRuleDisable checks the function
// detectMultipleRuleDisable called via doSelectedOperation function
func TestDoSelectedOperationDetectMultipleRuleDisable(t *testing.T) {
// fill in configuration structure
configuration := main.ConfigStruct{}
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
VacuumDatabase: false,
PerformCleanup: false,
DetectMultipleRuleDisable: true,
FillInDatabase: false,
}
// call tested function
code, err := main.DoSelectedOperation(&configuration, nil, cliFlags)
// error is expected
assert.Error(t, err, "error is expected while calling main.vacuumDB")
// check the status
assert.Equal(t, code, main.ExitStatusStorageError)
}
// TestDoSelectedOperationFillInDatabase checks the function
// fillInDatabase called via doSelectedOperation function
func TestDoSelectedOperationFillInDatabase(t *testing.T) {
// fill in configuration structure
configuration := main.ConfigStruct{}
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
VacuumDatabase: false,
PerformCleanup: false,
DetectMultipleRuleDisable: false,
FillInDatabase: true,
}
// call tested function
code, err := main.DoSelectedOperation(&configuration, nil, cliFlags)
// error is expected
assert.Error(t, err, "error is expected while calling main.vacuumDB")
// check the status
assert.Equal(t, code, main.ExitStatusFillInStorageError)
}
// TestDoSelectedOperationDefaultOperation checks the function
// displayOldRecords called via doSelectedOperation function
func TestDoSelectedOperationDefaultOperation(t *testing.T) {
// fill in configuration structure
configuration := main.ConfigStruct{}
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
VacuumDatabase: false,
PerformCleanup: false,
DetectMultipleRuleDisable: false,
FillInDatabase: false,
}
// call tested function
code, err := main.DoSelectedOperation(&configuration, nil, cliFlags)
// error is expected
assert.Error(t, err, "error is expected while calling main.vacuumDB")
// check the status
assert.Equal(t, code, main.ExitStatusStorageError)
}
// TestReadClusterList checks the function readClusterList from
// cleaner.go using correct cluster list file
func TestReadClusterList(t *testing.T) {
// cluster list file with 8 clusters in total:
// 5 correct cluster names
// 3 incorrect cluster names
clusterList, improperClusterCount, err := main.ReadClusterList("tests/cluster_list.txt", "")
// file is correct - no errors should be thrown
assert.NoError(t, err)
// check returned content
assert.Equal(t, improperClusterCount, 3)
assert.Len(t, clusterList, 5)
// finally check actual cluster names
assert.Contains(t, clusterList, main.ClusterName("5d5892d4-1f74-4ccf-91af-548dfc9767aa"))
assert.Contains(t, clusterList, main.ClusterName("55d892d4-1f74-4ccf-91af-548dfc9767aa"))
assert.Contains(t, clusterList, main.ClusterName("5d5892d3-1f74-4ccf-91af-548dfc9767bb"))
assert.Contains(t, clusterList, main.ClusterName("00000000-0000-0000-0000-000000000000"))
assert.Contains(t, clusterList, main.ClusterName("11111111-1111-1111-1111-111111111111"))
}
// TestReadClusterListNoFile checks the function readClusterList from
// cleaner.go in case the cluster list file does not exists
func TestReadClusterListNoFile(t *testing.T) {
_, _, err := main.ReadClusterListFromFile("tests/this_does_not_exists.txt")
// in this case we expect error to be thrown
assert.Error(t, err)
}
// TestReadClusterListCLICase1 checks the function readClusterList from
// cleaner.go using provided CLI arguments
func TestReadClusterListCLICase1(t *testing.T) {
// just one cluster name is specified on CLI
input := "5d5892d4-1f74-4ccf-91af-548dfc9767aa"
clusterList, improperClusterCount, err := main.ReadClusterList("tests/cluster_list.txt", input)
// input is correct - no errors should be thrown
assert.NoError(t, err)
// check returned content
assert.Equal(t, improperClusterCount, 0)
assert.Len(t, clusterList, 1)
// finally check actual cluster names (only one name expected)
assert.Contains(t, clusterList, main.ClusterName(input))
}
// TestReadClusterList checks the function readClusterList from
// cleaner.go using provided CLI arguments
func TestReadClusterListCLICase2(t *testing.T) {
// two cluster names are specified on CLI
input := "5d5892d4-1f74-4ccf-91af-548dfc9767aa,ffffffff-1f74-4ccf-91af-548dfc9767aa"
// input is correct - no errors should be thrown
clusterList, improperClusterCount, err := main.ReadClusterList("tests/cluster_list.txt", input)
// both cluster names are correct
assert.NoError(t, err)
// check returned content
assert.Equal(t, improperClusterCount, 0)
assert.Len(t, clusterList, 2)
// finally check actual cluster names
assert.Contains(t, clusterList, main.ClusterName("5d5892d4-1f74-4ccf-91af-548dfc9767aa"))
assert.Contains(t, clusterList, main.ClusterName("ffffffff-1f74-4ccf-91af-548dfc9767aa"))
}
// TestReadClusterList checks the function readClusterList from
// cleaner.go using provided CLI arguments
func TestReadClusterListCLICase3(t *testing.T) {
input := "5d5892d4-1f74-4ccf-91af-548dfc9767aa,this-is-not-correct"
clusterList, improperClusterCount, err := main.ReadClusterList("tests/cluster_list.txt", input)
// just the first cluster name is correct
assert.NoError(t, err)
// check returned content
assert.Equal(t, improperClusterCount, 1)
assert.Len(t, clusterList, 1)
// finally check actual cluster names (just one correct cluster name is expected)
assert.Contains(t, clusterList, main.ClusterName("5d5892d4-1f74-4ccf-91af-548dfc9767aa"))
}
// TestReadClusterList checks the function readClusterList from
// cleaner.go using provided CLI arguments
func TestReadClusterListCLICase4(t *testing.T) {
input := "this-is-not-correct,this-also-is-not-correct"
clusterList, improperClusterCount, err := main.ReadClusterList("tests/cluster_list.txt", input)
// both cluster names are incorrect, but the whole algorithm does not throw an error
assert.NoError(t, err)
// check returned content
assert.Equal(t, improperClusterCount, 2)
assert.Len(t, clusterList, 0)
}
// TestReadClusterListFromFile checks the function readClusterListFromFile from
// cleaner.go using correct cluster list file with 5 correct clusters and 3
// incorrect clusters.
func TestReadClusterListFromFile(t *testing.T) {
// cluster list file with 8 clusters in total:
// 5 correct cluster names
// 3 incorrect cluster names
clusterList, improperClusterCount, err := main.ReadClusterListFromFile("tests/cluster_list.txt")
// file is correct - no errors should be thrown
assert.NoError(t, err)
// check returned content
assert.Equal(t, improperClusterCount, 3)
assert.Len(t, clusterList, 5)
// finally check actual cluster names
assert.Contains(t, clusterList, main.ClusterName("5d5892d4-1f74-4ccf-91af-548dfc9767aa"))
assert.Contains(t, clusterList, main.ClusterName("55d892d4-1f74-4ccf-91af-548dfc9767aa"))
assert.Contains(t, clusterList, main.ClusterName("5d5892d3-1f74-4ccf-91af-548dfc9767bb"))
assert.Contains(t, clusterList, main.ClusterName("00000000-0000-0000-0000-000000000000"))
assert.Contains(t, clusterList, main.ClusterName("11111111-1111-1111-1111-111111111111"))
}
// TestReadClusterListFromFileNoFile checks the function
// readClusterListFromFile from cleaner.go in case the cluster list file does
// not exists
func TestReadClusterListFromFileNoFile(t *testing.T) {
_, _, err := main.ReadClusterListFromFile("tests/this_does_not_exists.txt")
// file does not exist -> error should be thrown
assert.Error(t, err)
}
// TestReadClusterListFromFileEmptyFile checks the function
// readClusterListFromFile from cleaner.go in case the special /dev/null file is to be read
func TestReadClusterListFromFileEmptyFile(t *testing.T) {
clusterList, improperClusterCount, err := main.ReadClusterListFromFile("tests/empty_cluster_list.txt")
// it's empty so no error should be reported
assert.NoError(t, err)
// and the content should be empty
assert.Equal(t, improperClusterCount, 0)
assert.Len(t, clusterList, 0)
}
// TestReadClusterListFromFileNullFile checks the function
// readClusterListFromFile from cleaner.go in case the special /dev/null file is to be read
func TestReadClusterListFromFileNullFile(t *testing.T) {
clusterList, improperClusterCount, err := main.ReadClusterListFromFile("/dev/null")
// it's empty so no error should be reported
assert.NoError(t, err)
// and the content should be empty
assert.Equal(t, improperClusterCount, 0)
assert.Len(t, clusterList, 0)
}
// TestReadClusterListFromCLIArgumentEmptyInput check the function
// readClusterListFromCLIArgument from cleaner.go
func TestReadClusterListFromCLIArgumentEmptyInput(t *testing.T) {
clusterList, improperClusterCount, err := main.ReadClusterListFromCLIArgument("")
// it's empty so no error should be reported
assert.NoError(t, err)
// check returned content
assert.Equal(t, improperClusterCount, 1)
assert.Len(t, clusterList, 0)
}
// TestReadClusterListFromCLIArgumentOneCluster check the function
// readClusterListFromCLIArgument from cleaner.go
func TestReadClusterListFromCLIArgumentOneCluster(t *testing.T) {
// only one (correct) cluster
input := "5d5892d4-1f74-4ccf-91af-548dfc9767aa"
clusterList, improperClusterCount, err := main.ReadClusterListFromCLIArgument(input)
// input is correct -> no error should be thrown
assert.NoError(t, err)
// check returned content
assert.Equal(t, improperClusterCount, 0)
assert.Len(t, clusterList, 1)
// finally check actual cluster names (just one cluster name is expected)
assert.Contains(t, clusterList, main.ClusterName("5d5892d4-1f74-4ccf-91af-548dfc9767aa"))
}
// TestReadClusterListFromCLIArgumentOneIncorrectCluster check the function
// readClusterListFromCLIArgument from cleaner.go
func TestReadClusterListFromCLIArgumentOneIncorrectCluster(t *testing.T) {
// only one (incorrect) cluster
input := "foo-bar-baz"
clusterList, improperClusterCount, err := main.ReadClusterListFromCLIArgument(input)
assert.NoError(t, err)
// check returned content
assert.Equal(t, improperClusterCount, 1)
assert.Len(t, clusterList, 0)
}
// TestReadClusterListFromCLIArgumentTwoClusters check the function
// readClusterListFromCLIArgument from cleaner.go
func TestReadClusterListFromCLIArgumentTwoClusters(t *testing.T) {
// both clusters are correct
input := "5d5892d4-1f74-4ccf-91af-548dfc9767aa,5d5892d4-1f74-4ccf-91af-548dfc9767bb"
clusterList, improperClusterCount, err := main.ReadClusterListFromCLIArgument(input)
// input is correct -> no error should be thrown
assert.NoError(t, err)
// check returned content
assert.Equal(t, improperClusterCount, 0)
assert.Len(t, clusterList, 2)
// finally check actual cluster names (just one correct cluster name is expected)
assert.Contains(t, clusterList, main.ClusterName("5d5892d4-1f74-4ccf-91af-548dfc9767aa"))
assert.Contains(t, clusterList, main.ClusterName("5d5892d4-1f74-4ccf-91af-548dfc9767bb"))
}
// TestReadClusterListFromCLIArgumentImproperCluster check the function
// readClusterListFromCLIArgument from cleaner.go
func TestReadClusterListFromCLIArgumentImproperCluster(t *testing.T) {
// first cluster is correct, second one incorrect
input := "5d5892d4-1f74-4ccf-91af-548dfc9767aa,foo-bar-baz"
clusterList, improperClusterCount, err := main.ReadClusterListFromCLIArgument(input)
// no error should be thrown
assert.NoError(t, err)
// check returned content
assert.Equal(t, improperClusterCount, 1)
assert.Len(t, clusterList, 1)
// finally check actual cluster names (just one correct cluster name is expected)
assert.Contains(t, clusterList, main.ClusterName("5d5892d4-1f74-4ccf-91af-548dfc9767aa"))
}
// TestPrintSummaryTableBasicCase check the behaviour of function
// PrintSummaryTable for summary with zero changes made in database.
func TestPrintSummaryTableBasicCase(t *testing.T) {
const expected = `+--------------------------+-------+
| SUMMARY | COUNT |
+--------------------------+-------+
| Proper cluster entries | 0 |
| Improper cluster entries | 0 |
| | |
+--------------------------+-------+
| TOTAL DELETIONS | 0 |
+--------------------------+-------+
`
// try to call the tested function and capture its output
output, err := capture.StandardOutput(func() {
summary := main.Summary{
ProperClusterEntries: 0,
ImproperClusterEntries: 0,
DeletionsForTable: make(map[string]int),
}
main.PrintSummaryTable(summary)
})
// check the captured text
checkCapture(t, err)
// check if captured text contains expected summary table
assert.Contains(t, output, expected)
}
// TestPrintSummaryTableProperClusterEntries check the behaviour of function
// PrintSummaryTable for summary with non zero changes made in database.
func TestPrintSummaryTableProperClusterEntries(t *testing.T) {
const expected = `+--------------------------+-------+
| SUMMARY | COUNT |
+--------------------------+-------+
| Proper cluster entries | 42 |
| Improper cluster entries | 0 |
| | |
+--------------------------+-------+
| TOTAL DELETIONS | 0 |
+--------------------------+-------+
`
// try to call the tested function and capture its output
output, err := capture.StandardOutput(func() {
summary := main.Summary{
ProperClusterEntries: 42,
ImproperClusterEntries: 0,
DeletionsForTable: make(map[string]int),
}
main.PrintSummaryTable(summary)
})
// check the captured text
checkCapture(t, err)
// check if captured text contains expected summary table
assert.Contains(t, output, expected)
}
// TestPrintSummaryTableImproperClusterEntries check the behaviour of function
// PrintSummaryTable for summary with non zero changes made in database.
func TestPrintSummaryTableImproperClusterEntries(t *testing.T) {
const expected = `+--------------------------+-------+
| SUMMARY | COUNT |
+--------------------------+-------+
| Proper cluster entries | 0 |
| Improper cluster entries | 42 |
| | |
+--------------------------+-------+
| TOTAL DELETIONS | 0 |
+--------------------------+-------+
`
// try to call the tested function and capture its output
output, err := capture.StandardOutput(func() {
summary := main.Summary{
ProperClusterEntries: 0,
ImproperClusterEntries: 42,
DeletionsForTable: make(map[string]int),
}
main.PrintSummaryTable(summary)
})
// check the captured text
checkCapture(t, err)
// check if captured text contains expected summary table
assert.Contains(t, output, expected)
}
// TestPrintSummaryTableOneTableDeletion check the behaviour of function
// PrintSummaryTable for summary with one deletion in one table.
func TestPrintSummaryTableOneTableDeletion(t *testing.T) {
const expected = `+--------------------------------+-------+
| SUMMARY | COUNT |
+--------------------------------+-------+
| Proper cluster entries | 0 |
| Improper cluster entries | 0 |
| | |
| Deletions from table 'TABLE_X' | 1 |
+--------------------------------+-------+
| TOTAL DELETIONS | 1 |
+--------------------------------+-------+
`
deletions := map[string]int{
"TABLE_X": 1,
}
// try to call the tested function and capture its output
output, err := capture.StandardOutput(func() {
summary := main.Summary{
ProperClusterEntries: 0,
ImproperClusterEntries: 0,
DeletionsForTable: deletions,
}
main.PrintSummaryTable(summary)
})
// check the captured text
checkCapture(t, err)
// check if captured text contains expected summary table
assert.Contains(t, output, expected)
}
// TestPrintSummaryTableTwoTablesDeletions check the behaviour of function
// PrintSummaryTable for summary with multiple deletions in two tables.
func TestPrintSummaryTableTwoTablesDeletions(t *testing.T) {
// we work with map and there is no guarantees which order will be choosen in runtime
const expected1 = `+--------------------------------+-------+
| SUMMARY | COUNT |
+--------------------------------+-------+
| Proper cluster entries | 0 |
| Improper cluster entries | 0 |
| | |
| Deletions from table 'TABLE_X' | 1 |
| Deletions from table 'TABLE_Y' | 2 |
+--------------------------------+-------+
| TOTAL DELETIONS | 3 |
+--------------------------------+-------+
`
const expected2 = `+--------------------------------+-------+
| SUMMARY | COUNT |
+--------------------------------+-------+
| Proper cluster entries | 0 |
| Improper cluster entries | 0 |
| | |
| Deletions from table 'TABLE_Y' | 2 |
| Deletions from table 'TABLE_X' | 1 |
+--------------------------------+-------+
| TOTAL DELETIONS | 3 |
+--------------------------------+-------+
`
deletions := map[string]int{
"TABLE_X": 1,
"TABLE_Y": 2,
}
// try to call the tested function and capture its output
output, err := capture.StandardOutput(func() {
summary := main.Summary{
ProperClusterEntries: 0,
ImproperClusterEntries: 0,
DeletionsForTable: deletions,
}
main.PrintSummaryTable(summary)
})
// check the captured text
checkCapture(t, err)
// check if captured text contains expected summary table
// again: we work with map and there is no guarantees which order will
// be choosen in runtime
if output != expected1 && output != expected2 {
t.Error("Unexpected output", output)
}
}
// TestVacuumDBPositiveCase check the function vacuumDB when the DB
// operation pass without any error
func TestVacuumDBPositiveCase(t *testing.T) {
// prepare new mocked connection to database
connection, mock, err := sqlmock.New()
assert.NoError(t, err, "error creating SQL mock")
expectedVacuum := "VACUUM VERBOSE;"
mock.ExpectExec(expectedVacuum).WillReturnResult(sqlmock.NewResult(1, 1))
mock.ExpectClose()
// call the tested function
status, err := main.VacuumDB(connection)
assert.NoError(t, err, "error not expected while calling tested function")
// check the status
assert.Equal(t, status, main.ExitStatusOK)
// check if DB can be closed successfully
checkConnectionClose(t, connection)
// check all DB expectactions happened correctly
checkAllExpectations(t, mock)
}
// TestVacuumDBNegativeCase check the function vacuumDB when the DB
// operation pass with an error
func TestVacuumDBNegativeCase(t *testing.T) {
// error to be thrown
mockedError := errors.New("mocked error")
// prepare new mocked connection to database
connection, mock, err := sqlmock.New()
assert.NoError(t, err, "error creating SQL mock")
expectedVacuum := "VACUUM VERBOSE;"
mock.ExpectExec(expectedVacuum).WillReturnError(mockedError)
mock.ExpectClose()
// call the tested function
status, err := main.VacuumDB(connection)
// error is expected
assert.Error(t, err, "error is expected while calling main.vacuumDB")
// check the status
assert.Equal(t, status, main.ExitStatusPerformVacuumError)
// check if DB can be closed successfully
checkConnectionClose(t, connection)
// check all DB expectactions happened correctly
checkAllExpectations(t, mock)
}
// TestVacuumDBNoConnection check the function vacuumDB when the
// connection to DB is not established
func TestVacuumDBNoConnection(t *testing.T) {
// call the tested function
status, err := main.VacuumDB(nil)
// error is expected
assert.Error(t, err, "error is expected while calling main.vacuumDB")
// check the status
assert.Equal(t, status, main.ExitStatusPerformVacuumError)
}
// TestCleanupNoConnection check the function cleanup when the
// connection to DB is not established
func TestCleanupNoConnection(t *testing.T) {
// stub for structures needed to call the tested function
configuration := main.ConfigStruct{}
configuration.Cleaner = main.CleanerConfiguration{
ClusterListFile: "tests/cluster_list.txt",
}
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
}
// call the tested function
status, err := main.Cleanup(&configuration, nil, cliFlags, main.DBSchemaOCPRecommendations)
// error is expected
assert.Error(t, err, "error is expected while calling main.cleanup")
// check the status
assert.Equal(t, status, main.ExitStatusPerformCleanupError)
}
// TestCleanupOnReadClusterListError check the function cleanup when
// cluster list can not be retrieved
func TestCleanupOnReadClusterListError(t *testing.T) {
// stub for structures needed to call the tested function
configuration := main.ConfigStruct{}
configuration.Cleaner = main.CleanerConfiguration{
// non-existent file
ClusterListFile: "tests/this_dos_not_exists.txt",
}
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
}
// call the tested function
status, err := main.Cleanup(&configuration, nil, cliFlags, main.DBSchemaOCPRecommendations)
// error is expected
assert.Error(t, err, "error is expected while calling main.cleanup")
// check the status
assert.Equal(t, status, main.ExitStatusPerformCleanupError)
}
// TestCleanup check the function cleanup when
// summary table should not be printed
func TestCleanup(t *testing.T) {
// prepare new mocked connection to database
connection, _, err := sqlmock.New()
assert.NoError(t, err, "error creating SQL mock")
// stub for structures needed to call the tested function
configuration := main.ConfigStruct{}
configuration.Cleaner = main.CleanerConfiguration{
MaxAge: "3 days",
ClusterListFile: "cluster_list.txt",
}
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
PrintSummaryTable: false,
}
// call the tested function
status, err := main.Cleanup(&configuration, connection, cliFlags, main.DBSchemaOCPRecommendations)
// error is not expected
assert.NoError(t, err, "error is not expected while calling main.cleanup")
// check the status
assert.Equal(t, status, main.ExitStatusOK)
}
// TestCleanupPrintSummaryTable check the function cleanup when
// summary table should be printed
func TestCleanupPrintSummaryTable(t *testing.T) {
// prepare new mocked connection to database
connection, _, err := sqlmock.New()
assert.NoError(t, err, "error creating SQL mock")
// stub for structures needed to call the tested function
configuration := main.ConfigStruct{}
configuration.Cleaner = main.CleanerConfiguration{
MaxAge: "3 days",
ClusterListFile: "cluster_list.txt",
}
cliFlags := main.CliFlags{
ShowVersion: false,
ShowAuthors: false,
ShowConfiguration: false,
PrintSummaryTable: true,
}
// call the tested function
status, err := main.Cleanup(&configuration, connection, cliFlags, main.DBSchemaOCPRecommendations)
// error is not expected
assert.NoError(t, err, "error is not expected while calling main.cleanup")
// check the status
assert.Equal(t, status, main.ExitStatusOK)
}
// TestCleanupCheckSummaryTableContent check the function cleanup when
// summary table should be printed
func TestCleanupCheckSummaryTableContent(t *testing.T) {
var expectedOutputLines = []string{
"+-----------------------------------------------------------+-------+",
"| SUMMARY | COUNT |",
"+-----------------------------------------------------------+-------+",
"| Proper cluster entries | 5 |",
"| Improper cluster entries | 2 |",
"| | |",
"| Deletions from table 'cluster_rule_user_feedback' | 0 |",
"| Deletions from table 'cluster_user_rule_disable_feedback' | 0 |",
"| Deletions from table 'rule_hit' | 0 |",
"| Deletions from table 'recommendation' | 0 |",
"| Deletions from table 'report_info' | 0 |",
"| Deletions from table 'report' | 0 |",
"| Deletions from table 'cluster_rule_toggle' | 0 |",
"+-----------------------------------------------------------+-------+",
"| TOTAL DELETIONS | 0 |",
"+-----------------------------------------------------------+-------+",