-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomparator_test.go
More file actions
940 lines (879 loc) · 23.1 KB
/
comparator_test.go
File metadata and controls
940 lines (879 loc) · 23.1 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
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
package dtree
import (
"os"
"testing"
"github.com/stretchr/testify/assert"
)
var containstt = []struct {
v1 interface{}
v2 *Tree
err error
result bool
message string
}{
{
v1: 123,
message: "Contains should not support others type than string as request",
result: false,
err: ErrNotSupportedType,
},
{
v1: "123",
v2: &Tree{Value: 123},
message: "Contains should not support others type than string as Tree Value",
result: false,
err: ErrBadType,
},
{
v1: "abcdefghijkl",
v2: &Tree{Value: "mnopqrstu"},
message: "Contains should return false if v1 does not contains v2",
result: false,
err: nil,
},
{
v1: "abcdefghijkl",
v2: &Tree{Value: "def"},
message: "Contains should return true if v1 contains v2",
result: true,
err: nil,
},
}
// TestContains test contains feature
func TestContains(t *testing.T) {
for _, tt := range containstt {
// Act
result, err := contains(tt.v1, tt.v2)
// Assert
assert.Equal(t, tt.err, err, tt.message)
assert.Equal(t, tt.result, (result != nil), tt.message)
}
}
var counttt = []struct {
v1 interface{}
v2 *Tree
err error
result bool
message string
}{
{
v1: 123,
message: "Count should not support others type than []interface{} as request",
result: false,
err: ErrNotSupportedType,
},
{
v1: []interface{}{1, 2, 3},
v2: &Tree{Value: "not float64"},
message: "Count should not support others type than float64 as Tree value",
result: false,
err: ErrBadType,
},
{
v1: []interface{}{1, 2, 3},
v2: &Tree{Value: 5.0},
message: "Count should return false if len(v1) != v2",
result: false,
err: nil,
},
{
v1: []interface{}{1, 2, 3},
v2: &Tree{Value: 3.0},
message: "Count should return false if len(v1) == v2",
result: true,
err: nil,
},
}
// TestCount test Count feature
func TestCount(t *testing.T) {
for _, tt := range counttt {
// Act
result, err := count(tt.v1, tt.v2)
// Assert
assert.Equal(t, tt.err, err, tt.message)
assert.Equal(t, tt.result, (result != nil), tt.message)
}
}
var gttt = []struct {
v1 interface{}
v2 *Tree
err error
result bool
message string
}{
{
v1: 123,
message: "gt should not support others type than float64 and string as request",
result: false,
err: ErrNotSupportedType,
},
{
v1: 123.0,
v2: &Tree{Value: 123},
message: "gt should not support others type than float64 and string as Tree value",
result: false,
err: ErrBadType,
},
{
v1: "a",
v2: &Tree{Value: 123},
message: "gt should not support others type than float64 and string as Tree value",
result: false,
err: ErrBadType,
},
{
v1: "e",
v2: &Tree{Value: "g"},
message: "gt (string) should return false if v1 < v2",
result: false,
err: nil,
},
{
v1: "g",
v2: &Tree{Value: "g"},
message: "gt (string) should return false if v1 == v2",
result: false,
err: nil,
},
{
v1: "t",
v2: &Tree{Value: "g"},
message: "gt (string) should return true if v1 > v2",
result: true,
err: nil,
},
{
v1: 9.0,
v2: &Tree{Value: 10.0},
message: "gt (float46) should return false if v1 < v2",
result: false,
err: nil,
},
{
v1: 10.0,
v2: &Tree{Value: 10.0},
message: "gt (float46) should return false if v1 == v2",
result: false,
err: nil,
},
{
v1: 15.0,
v2: &Tree{Value: 10.0},
message: "gt (float46) should return true if v1 > v2",
result: true,
err: nil,
},
}
// TestGt test GreatherThan feature
func TestGt(t *testing.T) {
for _, tt := range gttt {
// Act
result, err := gt(tt.v1, tt.v2)
// Assert
assert.Equal(t, tt.err, err, tt.message)
assert.Equal(t, tt.result, (result != nil), tt.message)
}
}
var lttt = []struct {
v1 interface{}
v2 *Tree
err error
result bool
message string
}{
{
v1: 123,
message: "lt should not support others type than float64 and string as request",
result: false,
err: ErrNotSupportedType,
},
{
v1: 123.0,
v2: &Tree{Value: 123},
message: "lt should not support others type than float64 and string as Tree value",
result: false,
err: ErrBadType,
},
{
v1: "a",
v2: &Tree{Value: 123},
message: "lt should not support others type than float64 and string as Tree value",
result: false,
err: ErrBadType,
},
{
v1: "g",
v2: &Tree{Value: "e"},
message: "lt (string) should return false if v1 > v2",
result: false,
err: nil,
},
{
v1: "g",
v2: &Tree{Value: "g"},
message: "lt (string) should return false if v1 == v2",
result: false,
err: nil,
},
{
v1: "g",
v2: &Tree{Value: "t"},
message: "lt (string) should return true if v1 < v2",
result: true,
err: nil,
},
{
v1: 10.0,
v2: &Tree{Value: 9.0},
message: "lt (float64) should return false if v1 > v2",
result: false,
err: nil,
},
{
v1: 10.0,
v2: &Tree{Value: 10.0},
message: "lt (float64) should return false if v1 == v2",
result: false,
err: nil,
},
{
v1: 10.0,
v2: &Tree{Value: 15.0},
message: "lt (float64) should return true if v1 < v2",
result: true,
err: nil,
},
}
// TestLt test LessThan feature
func TestLt(t *testing.T) {
for _, tt := range lttt {
// Act
result, err := lt(tt.v1, tt.v2)
// Assert
assert.Equal(t, tt.err, err, tt.message)
assert.Equal(t, tt.result, (result != nil), tt.message)
}
}
var gtett = []struct {
v1 interface{}
v2 *Tree
err error
result bool
message string
}{
{
v1: 123,
message: "gte should not support others type than float64 and string as request",
result: false,
err: ErrNotSupportedType,
},
{
v1: 123.0,
v2: &Tree{Value: 123},
message: "gte should not support others type than float64 and string as Tree value",
result: false,
err: ErrBadType,
},
{
v1: "a",
v2: &Tree{Value: 123},
message: "gte should not support others type than float64 and string as Tree value",
result: false,
err: ErrBadType,
},
{
v1: "e",
v2: &Tree{Value: "g"},
message: "gte (string) should return false if v1 < v2",
result: false,
err: nil,
},
{
v1: "g",
v2: &Tree{Value: "g"},
message: "gte (string) should return true if v1 == v2",
result: true,
err: nil,
},
{
v1: "t",
v2: &Tree{Value: "g"},
message: "gte (string) should return true if v1 > v2",
result: true,
err: nil,
},
{
v1: 9.0,
v2: &Tree{Value: 10.0},
message: "gte (float64) should return false if v1 < v2",
result: false,
err: nil,
},
{
v1: 10.0,
v2: &Tree{Value: 10.0},
message: "gte (float64) should return false if v1 == v2",
result: true,
err: nil,
},
{
v1: 15.0,
v2: &Tree{Value: 10.0},
message: "gte (float64) should return true if v1 > v2",
result: true,
err: nil,
},
}
// TestGte test GreatherThan Or Equal feature
func TestGte(t *testing.T) {
for _, tt := range gtett {
// Act
result, err := gte(tt.v1, tt.v2)
// Assert
assert.Equal(t, tt.err, err, tt.message)
assert.Equal(t, tt.result, (result != nil), tt.message)
}
}
var ltett = []struct {
v1 interface{}
v2 *Tree
err error
result bool
message string
}{
{
v1: 123,
message: "lte should not support others type than float64 and string as request",
result: false,
err: ErrNotSupportedType,
},
{
v1: 123.0,
v2: &Tree{Value: 123},
message: "lte should not support others type than float64 and string as Tree value",
result: false,
err: ErrBadType,
},
{
v1: "a",
v2: &Tree{Value: 123},
message: "lte should not support others type than float64 and string as Tree value",
result: false,
err: ErrBadType,
},
{
v1: "g",
v2: &Tree{Value: "e"},
message: "lte (string) should return false if v1 > v2",
result: false,
err: nil,
},
{
v1: "g",
v2: &Tree{Value: "g"},
message: "lte (string) should return true if v1 == v2",
result: true,
err: nil,
},
{
v1: "g",
v2: &Tree{Value: "t"},
message: "lte (string) should return true if v1 < v2",
result: true,
err: nil,
},
{
v1: 10.0,
v2: &Tree{Value: 9.0},
message: "lte (float64) should return false if v1 > v2",
result: false,
err: nil,
},
{
v1: 10.0,
v2: &Tree{Value: 10.0},
message: "lte (float64) should return true if v1 == v2",
result: true,
err: nil,
},
{
v1: 10.0,
v2: &Tree{Value: 15.0},
message: "lte (float64) should return true if v1 < v2",
result: true,
err: nil,
},
}
// TestLte test LessThan Or Equal feature
func TestLte(t *testing.T) {
for _, tt := range ltett {
// Act
result, err := lte(tt.v1, tt.v2)
// Assert
assert.Equal(t, tt.err, err, tt.message)
assert.Equal(t, tt.result, (result != nil), tt.message)
}
}
var eqtt = []struct {
v1 interface{}
v2 *Tree
err error
result bool
message string
}{
{
v1: 123,
message: "eq should not support others type than string, float64, bool, []interface{} (interface{} being a string or float64) as request",
result: false,
err: ErrNotSupportedType,
},
{
v1: 123.0,
v2: &Tree{Value: 123},
message: "eq should not support others type than float64, bool, string as Tree value",
result: false,
err: ErrBadType,
},
{
v1: "123.0",
v2: &Tree{Value: 123.0},
message: "eq should not support others type than float64, bool, string as Tree value",
result: false,
err: ErrBadType,
},
{
v1: true,
v2: &Tree{Value: 123.0},
message: "eq should not support others type than float64, bool, string as Tree value",
result: false,
err: ErrBadType,
},
{
v1: "123.0",
v2: &Tree{Value: 123.0},
message: "eq should not support others type than float64, bool, string as Tree value",
result: false,
err: ErrBadType,
},
{
v1: 123.0,
v2: &Tree{Value: 122.0},
message: "eq (float64) should return false when v1 != v2",
result: false,
err: nil,
},
{
v1: 123.0,
v2: &Tree{Value: 123.0},
message: "eq (float64) should return true when v1 == v2",
result: true,
err: nil,
},
{
v1: "a",
v2: &Tree{Value: "b"},
message: "eq (string) should return false when v1 != v2",
result: false,
err: nil,
},
{
v1: "a",
v2: &Tree{Value: "a"},
message: "eq (string) should return true when v1 == v2",
result: true,
err: nil,
},
{
v1: true,
v2: &Tree{Value: false},
message: "eq (bool) should return false when v1 != v2",
result: false,
err: nil,
},
{
v1: true,
v2: &Tree{Value: true},
message: "eq (bool) should return true when v1 == v2",
result: true,
err: nil,
},
{
v1: []interface{}{true, false},
v2: &Tree{Value: 122.0},
message: "eq should not support others type than []interface{} (interface{} being a string or float64) as request",
result: false,
err: nil,
},
{
v1: []interface{}{123.0, 456.0},
v2: &Tree{Value: true},
message: "eq ([]interface{} => float64) should return false when v2 type not the same as v1 element",
result: false,
err: nil,
},
{
v1: []interface{}{123.0, 456.0},
v2: &Tree{Value: 122.0},
message: "eq ([]interface{} => float64) should return false when v2 are not in v1",
result: false,
err: nil,
},
{
v1: []interface{}{123.0, 456.0},
v2: &Tree{Value: 456.0},
message: "eq ([]interface{} => float64) should return true when v2 are in v1",
result: true,
err: nil,
},
{
v1: []interface{}{"a", "b"},
v2: &Tree{Value: true},
message: "eq ([]interface{} => string) should return false when v2 type not the same as v1 element",
result: false,
err: nil,
},
{
v1: []interface{}{"a", "b"},
v2: &Tree{Value: "c"},
message: "eq ([]interface{} => string) should return false when v2 are not in v1",
result: false,
err: nil,
},
{
v1: []interface{}{"a", "b"},
v2: &Tree{Value: "a"},
message: "eq ([]interface{} => string) should return true when v2 are in v1",
result: true,
err: nil,
},
{
v1: []interface{}{"a", "b"},
v2: &Tree{Value: "c"},
message: "eq ([]interface{} => string) should return false when v2 are not in v1",
result: false,
err: nil,
},
{
v1: "a",
v2: &Tree{Value: []interface{}{1, 2}},
message: "eq (TreeValue []interface{} => int) without string in the tree value should return nil",
result: false,
err: nil,
},
{
v1: "a",
v2: &Tree{Value: []interface{}{"1", "2"}},
message: "eq (TreeValue []interface{} => string) not finding string should return nil",
result: false,
err: nil,
},
{
v1: "a",
v2: &Tree{Value: []interface{}{"a", "b"}},
message: "eq (TreeValue []interface{} => string) finding string should return The node",
result: true,
err: nil,
},
{
v1: 1.0,
v2: &Tree{Value: []interface{}{1, 2}},
message: "eq (TreeValue []interface{} => int) without float64 in the tree value should return nil",
result: false,
err: nil,
},
{
v1: 1.0,
v2: &Tree{Value: []interface{}{3.0, 4.0}},
message: "eq (TreeValue []interface{} => float64) not finding float64 should return nil",
result: false,
err: nil,
},
{
v1: 1.0,
v2: &Tree{Value: []interface{}{1.0, 2.0}},
message: "eq (TreeValue []interface{} => float64) finding float64 should return The node",
result: true,
err: nil,
},
}
// TestEq test Equal feature
func TestEq(t *testing.T) {
for _, tt := range eqtt {
// Act
result, err := eq(tt.v1, tt.v2)
// Assert
assert.Equal(t, tt.err, err, tt.message)
assert.Equal(t, tt.result, (result != nil), tt.message)
}
}
var comparett = []struct {
op string
v2 *Tree
err error
result bool
message string
}{
{
v2: &Tree{Value: "fallback"},
message: "Compare should always return true, when it is the fallback node",
result: true,
err: nil,
},
{
v2: &Tree{Value: 123, Operator: "abc"},
message: "Compare should always return false, when the operator is not supported",
result: false,
err: ErrOperator,
},
}
// TestCompare test the Compare function
func TestCompare(t *testing.T) {
for _, tt := range comparett {
// Act
result, err := compare(nil, nil, tt.v2, nil)
// Assert
assert.Equal(t, tt.err, err, tt.message)
assert.Equal(t, tt.result, (result != nil), tt.message)
}
}
var regexptt = []struct {
v1 interface{}
v2 *Tree
err error
result bool
message string
}{
{
v1: 123,
message: "Contains should not support others type than string as request",
result: false,
err: ErrNotSupportedType,
},
{
v1: "123",
v2: &Tree{Value: 123},
message: "Contains should not support others type than string as Tree Value",
result: false,
err: ErrBadType,
},
{
v1: "abcdefghijkl",
v2: &Tree{Value: "[0-9]+"},
message: "Contains should return false if v1 does not match v2",
result: false,
err: nil,
},
{
v1: "abcdefgh45jkl",
v2: &Tree{Value: "[0-9]+"},
message: "Contains should return true if v1 contains v2",
result: true,
err: nil,
},
}
// TestRegex test regular expression feature
func TestRegex(t *testing.T) {
for _, tt := range containstt {
// Act
result, err := regex(tt.v1, tt.v2)
// Assert
assert.Equal(t, tt.err, err, tt.message)
assert.Equal(t, tt.result, (result != nil), tt.message)
}
}
// TestPercentage_Without_Parent_Node_Should_Return_Nil should return nil, if no parent
func TestPercentage_Without_Parent_Node_Should_Return_Nil(t *testing.T) {
//Arrange
percentTree := &Tree{}
//Act
result, err := percentage(nil, percentTree)
//Assert
assert.Equal(t, err, ErrNoParentNode, "percentage should return an error, if no parents")
assert.Nil(t, result, "percentage should return nil, if no parent")
}
// TestPercentage_Without_Brother_Node_Should_Return_ItSelf should return itself, if no brother
func TestPercentage_Without_Brother_Node_Should_Return_ItSelf(t *testing.T) {
//Arrange
rootTree := &Tree{}
rootTree.AddNode(&Tree{})
//Act
result, err := percentage(nil, rootTree.GetChild()[0])
//Assert
assert.NoError(t, err, "percentage should not return an error, if there is no brothers")
assert.Equal(t, rootTree.GetChild()[0], result, "percentage should return the node itself, when there is no brothers")
}
// TestPercentage_Without_FloatValue_Should_Return_Nil should return nil, if the value is no parsable to float64
func TestPercentage_Without_FloatValue_Should_Return_Nil(t *testing.T) {
//Arrange
rootTree := &Tree{}
rootTree.AddNode(&Tree{
Operator: "%",
Value: 123,
})
rootTree.AddNode(&Tree{
Operator: "%",
Value: 123,
})
//Act
result, err := percentage(nil, rootTree.GetChild()[0])
//Assert
assert.NoError(t, err, "percentage should not return an error, if the value is no parsable to float64")
assert.Nil(t, result, "percentage should return nil, if the value is no parsable to float64")
}
// TestPercentage_With_FallBack_Should_Return_Fallback fallback should be returned if it is defined and there is no others choice
func TestPercentage_With_FallBack_Should_Return_Fallback(t *testing.T) {
//Arrange
rootTree := &Tree{}
rootTree.AddNode(&Tree{
Operator: "%",
Value: 123,
})
rootTree.AddNode(&Tree{
Value: FallbackType,
})
//Act
result, err := percentage(nil, rootTree.GetChild()[0])
//Assert
assert.NoError(t, err, "percentage should not return an error, if fallback is defined")
assert.Equal(t, rootTree.GetChild()[1], result, "percentage should return falback, if fallback is defined, and there is no others choice")
}
// TestPercentage_Should_Return_A_Node should return a node, if all is ok
func TestPercentage_Should_Return_A_Node(t *testing.T) {
//Arrange
rootTree := &Tree{}
rootTree.AddNode(&Tree{
Operator: "%",
Value: 50.0,
})
rootTree.AddNode(&Tree{
Operator: "%",
Value: 50.0,
})
//Act
result, err := percentage(nil, rootTree.GetChild()[0])
//Assert
assert.NoError(t, err, "percentage should not return an error, if all is ok")
assert.NotNil(t, result, "percentage should return a node if all is ok")
}
func TestCRC32(t *testing.T) {
num1 := crc32Num("entity1", "salt1", 1000)
num2 := crc32Num("entity2", "salt1", 1000)
num3 := crc32Num("entity1", "salt1", 1000)
assert.Equal(t, num1, num3)
assert.NotEqual(t, num1, num2)
}
// TestAbTest_Without_Parent_Node_Should_Return_Nil should return nil, if no parent
func TestAbTest_Without_Parent_Node_Should_Return_Nil(t *testing.T) {
//Arrange
percentTree := &Tree{}
//Act
result, err := abTest(nil, percentTree)
//Assert
assert.Equal(t, err, ErrNoParentNode, "A/B Test should return an error, if no parents")
assert.Nil(t, result, "A/B Test should return nil, if no parent")
}
// func TestAbTest_Without_Brother_Node_Should_Return_ItSelf should return itself, if no brother
func TestAbTest_Without_Brother_Node_Should_Return_ItSelf(t *testing.T) {
//Arrange
rootTree := &Tree{}
rootTree.AddNode(&Tree{})
//Act
result, err := abTest(nil, rootTree.GetChild()[0])
//Assert
assert.NoError(t, err, "A/B Test should not return an error, if there is no brothers")
assert.Equal(t, rootTree.GetChild()[0], result, "A/B Test should return the node itself, when there is no brothers")
}
// TestAbTest_Without_FloatValue_Should_Return_Nil should return nil, if the value is no parsable to float64
func TestAbTest_Without_FloatValue_Should_Return_Nil(t *testing.T) {
//Arrange
rootTree := &Tree{}
rootTree.AddNode(&Tree{
Operator: "ab",
Value: 123,
})
rootTree.AddNode(&Tree{
Operator: "ab",
Value: 123,
})
//Act
result, err := abTest(nil, rootTree.GetChild()[0])
//Assert
assert.NoError(t, err, "A/B Test should not return an error, if the value is no parsable to float64")
assert.Nil(t, result, "A/B Test should return nil, if the value is no parsable to float64")
}
// TestAbTest_With_FallBack_Should_Return_Fallback fallback should be returned if it is defined and there is no others choice
func TestAbTest_With_FallBack_Should_Return_Fallback(t *testing.T) {
//Arrange
rootTree := &Tree{}
rootTree.AddNode(&Tree{
Operator: "ab",
Value: 123,
})
rootTree.AddNode(&Tree{
Value: FallbackType,
})
//Act
result, err := abTest(nil, rootTree.GetChild()[0])
//Assert
assert.NoError(t, err, "A/B Test should not return an error, if fallback is defined")
assert.Equal(t, rootTree.GetChild()[1], result, "A/B Test should return falback, if fallback is defined, and there is no others choice")
}
// TestAbTest_Should_Return_A_Node should return a node, if all is ok
func TestAbTest_Should_Return_A_Node_Like_For_precentage(t *testing.T) {
if os.Getenv("TEST_SKIP") != "" {
t.Skip("Skipping random test, that won't work on CI process")
}
//Arrange
rootTree := &Tree{}
rootTree.AddNode(&Tree{
ID: 123,
Operator: "ab",
Value: 50.0,
})
rootTree.AddNode(&Tree{
ID: 456,
Operator: "ab",
Value: 50.0,
})
//Act
result1, err1 := abTest(nil, rootTree.GetChild()[0])
result2, err2 := abTest(nil, rootTree.GetChild()[0])
result3, err3 := abTest(nil, rootTree.GetChild()[0])
result4, err4 := abTest(nil, rootTree.GetChild()[0])
//Assert
assert.NoError(t, err1, "A/B Test should not return an error, if all is ok")
assert.NoError(t, err2, "A/B Test should not return an error, if all is ok")
assert.NoError(t, err3, "A/B Test should not return an error, if all is ok")
assert.NoError(t, err4, "A/B Test should not return an error, if all is ok")
assert.True(t, result1.ID != result2.ID || result2.ID != result3.ID || result3.ID != result4.ID, "A/B Test should return 4 different node if all is ok")
}
// TestAbTest_Should_Return_A_Node should return a node, if all is ok
func TestAbTest_Should_Return_The_Same_Node_By_UserId(t *testing.T) {
//Arrange
rootTree := &Tree{}
rootTree.AddNode(&Tree{
ID: 123,
Operator: "ab",
Value: 50.0,
})
rootTree.AddNode(&Tree{
ID: 456,
Operator: "ab",
Value: 50.0,
})
//Act
result1, err1 := abTest("Felipe", rootTree.GetChild()[0])
result2, _ := abTest("Felipe", rootTree.GetChild()[0])
result3, _ := abTest("Felipe", rootTree.GetChild()[0])
result4, _ := abTest("Felipe", rootTree.GetChild()[0])
result1_1, err2 := abTest("Another", rootTree.GetChild()[0])
result2_1, _ := abTest("Another", rootTree.GetChild()[0])
result3_1, _ := abTest("Another", rootTree.GetChild()[0])
result4_1, _ := abTest("Another", rootTree.GetChild()[0])
//Assert
assert.NoError(t, err1, "A/B Test should not return an error, if all is ok")
assert.NoError(t, err2, "A/B Test should not return an error, if all is ok")
assert.True(t, result1.ID == result2.ID && result2.ID == result3.ID && result3.ID == result4.ID, "A/B Test should return 4 same node if all is ok")
assert.NotEqual(t, result1.ID, result1_1.ID, "A/B Test should return 2 different node if different usersId")
assert.True(t, result1_1.ID == result2_1.ID && result2_1.ID == result3_1.ID && result3_1.ID == result4_1.ID, "A/B Test should return 4 same node if all is ok")
}