forked from shoenig/test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassertions.go
1585 lines (1402 loc) · 36 KB
/
assertions.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 (c) The Test Authors
// SPDX-License-Identifier: MPL-2.0
package assertions
import (
"encoding/json"
"errors"
"fmt"
"io"
"io/fs"
"os"
"path/filepath"
"reflect"
"regexp"
"runtime"
"strings"
"github.com/google/go-cmp/cmp"
"github.com/shoenig/test/interfaces"
"github.com/shoenig/test/internal/constraints"
"github.com/shoenig/test/wait"
)
const depth = 4
func Caller() string {
_, file, line, ok := runtime.Caller(depth)
if ok {
file = filepath.Base(file)
return fmt.Sprintf("%s:%d: ", file, line)
}
return "[???]"
}
// diff creates a diff of a and b using cmp.Diff if possible, falling back to printing
// the Go string values of both types (e.g. contains unexported fields).
func diff[A, B any](a A, b B, opts cmp.Options) (s string) {
defer func() {
if r := recover(); r != nil {
s = fmt.Sprintf("↪ Assertion | comparison ↷\na: %#v\nb: %#v\n", a, b)
}
}()
s = "↪ Assertion | differential ↷\n" + cmp.Diff(a, b, opts)
return
}
// equal compares a and b using cmp.Equal if possible, falling back to reflect.DeepEqual
// (e.g. contains unexported fields).
func equal[A, B any](a A, b B, opts cmp.Options) (result bool) {
defer func() {
if r := recover(); r != nil {
result = reflect.DeepEqual(a, b)
}
}()
result = cmp.Equal(a, b, opts)
return
}
func contains[C comparable](slice []C, item C) bool {
found := false
for i := 0; i < len(slice); i++ {
if slice[i] == item {
found = true
break
}
}
return found
}
func containsFunc[A, B any](slice []A, item B, eq func(a A, b B) bool) bool {
found := false
for i := 0; i < len(slice); i++ {
if eq(slice[i], item) {
found = true
break
}
}
return found
}
func isNil(a any) bool {
// comparable check only works for simple types
if a == nil {
return true
}
// check for non-nil nil types
value := reflect.ValueOf(a)
switch value.Kind() {
case reflect.Chan, reflect.Func, reflect.Interface, reflect.Map, reflect.Ptr, reflect.Slice:
return value.IsNil()
default:
return false
}
}
func Nil(a any) (s string) {
if !isNil(a) {
s = "expected to be nil; is not nil\n"
}
return
}
func NotNil(a any) (s string) {
if isNil(a) {
s = "expected to not be nil; is nil\n"
}
return
}
func True(condition bool) (s string) {
if !condition {
s = "expected condition to be true; is false\n"
}
return
}
func False(condition bool) (s string) {
if condition {
s = "expected condition to be false; is true\n"
}
return
}
func Unreachable() (s string) {
s = "expected not to execute this code path\n"
return
}
func Error(err error) (s string) {
if err == nil {
s = "expected non-nil error; got nil\n"
}
return
}
func EqError(err error, msg string) (s string) {
if err == nil {
s = "expected non-nil error; got nil\n"
return
}
e := err.Error()
if e != msg {
s = "expected matching error strings\n"
s += bullet("msg: %q\n", msg)
s += bullet("err: %q\n", e)
}
return
}
func ErrorIs(err error, target error) (s string) {
if err == nil {
s = "expected non-nil error; got nil\n"
return
}
if !errors.Is(err, target) {
s = "expected errors.Is match\n"
s += bullet("target: %v\n", target)
s += bullet(" got: %v\n", err)
}
return
}
func ErrorAs[E error, Target *E](err error, target Target) (s string) {
if err == nil {
s = "expected non-nil error; got nil\n"
return
}
if target == nil {
s = "expected non-nil target; got nil\n"
return
}
if !errors.As(err, target) {
s = "expected errors.As match\n"
s += bullet("target: %v\n", target)
s += bullet(" got: %v\n", err)
}
return
}
func NoError(err error) (s string) {
if err != nil {
s = "expected nil error\n"
s += bullet("error: %v\n", err)
}
return
}
func ErrorContains(err error, sub string) (s string) {
if err == nil {
s = "expected non-nil error; got nil\n"
return
}
actual := err.Error()
if !strings.Contains(actual, sub) {
s = "expected error to contain substring\n"
s += bullet("substring: %s\n", sub)
s += bullet(" err: %s\n", actual)
}
return
}
func Eq[A any](exp, val A, opts ...cmp.Option) (s string) {
if !equal(exp, val, opts) {
s = "expected equality via cmp.Equal function\n"
s += diff(exp, val, opts)
}
return
}
func NotEq[A any](exp, val A, opts ...cmp.Option) (s string) {
if equal(exp, val, opts) {
s = "expected inequality via cmp.Equal function\n"
}
return
}
func EqOp[C comparable](exp, val C) (s string) {
if exp != val {
s = "expected equality via ==\n"
s += diff(exp, val, nil)
}
return
}
func EqFunc[A any](exp, val A, eq func(a, b A) bool) (s string) {
if !eq(exp, val) {
s = "expected equality via 'eq' function\n"
s += diff(exp, val, nil)
}
return
}
func NotEqOp[C comparable](exp, val C) (s string) {
if exp == val {
s = "expected inequality via !=\n"
}
return
}
func NotEqFunc[A any](exp, val A, eq func(a, b A) bool) (s string) {
if eq(exp, val) {
s = "expected inequality via 'eq' function\n"
}
return
}
func EqJSON(exp, val string) (s string) {
var expA, expB any
if err := json.Unmarshal([]byte(exp), &expA); err != nil {
s = fmt.Sprintf("failed to unmarshal first argument as JSON: %v\n", err)
return
}
if err := json.Unmarshal([]byte(val), &expB); err != nil {
s = fmt.Sprintf("failed to unmarshal second argument as JSON: %v\n", err)
return
}
if !reflect.DeepEqual(expA, expB) {
jsonA, _ := json.Marshal(expA)
jsonB, _ := json.Marshal(expB)
s = "expected equality via JSON marshalling\n"
s += diff(string(jsonA), string(jsonB), nil)
return
}
return
}
func ValidJSON(input string) (s string) {
return validJSON([]byte(input))
}
func ValidJSONBytes(input []byte) (s string) {
return validJSON(input)
}
func validJSON(input []byte) (s string) {
if !json.Valid([]byte(input)) {
return "expected input to be valid JSON\n"
}
return
}
func EqSliceFunc[A, B any](exp []B, val []A, eq func(a A, b B) bool) (s string) {
lenA, lenB := len(exp), len(val)
if lenA != lenB {
s = "expected slices of same length\n"
s += bullet("len(exp): %d\n", lenA)
s += bullet("len(val): %d\n", lenB)
s += diff(exp, val, nil)
return
}
miss := false
for i := 0; i < lenA; i++ {
if !eq(val[i], exp[i]) {
miss = true
break
}
}
if miss {
s = "expected slice equality via 'eq' function\n"
s += diff(exp, val, nil)
return
}
return
}
func Equal[E interfaces.EqualFunc[E]](exp, val E) (s string) {
if !val.Equal(exp) {
s = "expected equality via .Equal method\n"
s += diff(exp, val, nil)
}
return
}
func NotEqual[E interfaces.EqualFunc[E]](exp, val E) (s string) {
if val.Equal(exp) {
s = "expected inequality via .Equal method\n"
}
return
}
func SliceEqual[E interfaces.EqualFunc[E]](exp, val []E) (s string) {
lenA, lenB := len(exp), len(val)
if lenA != lenB {
s = "expected slices of same length\n"
s += bullet("len(exp): %d\n", lenA)
s += bullet("len(val): %d\n", lenB)
s += diff(exp, val, nil)
return
}
for i := 0; i < lenA; i++ {
if !exp[i].Equal(val[i]) {
s += "expected slice equality via .Equal method\n"
s += diff(exp[i], val[i], nil)
return
}
}
return
}
func SliceEqOp[A comparable, S ~[]A](exp, val S) (s string) {
lenA, lenB := len(exp), len(val)
if lenA != lenB {
s = "expected slices of same length\n"
s += bullet("len(exp): %d\n", lenA)
s += bullet("len(val): %d\n", lenB)
s += diff(exp, val, nil)
return
}
for i := 0; i < lenA; i++ {
if exp[i] != val[i] {
s += "expected slice equality via ==\n"
s += diff(exp[i], val[i], nil)
return
}
}
return
}
func Lesser[L interfaces.LessFunc[L]](exp, val L) (s string) {
if !val.Less(exp) {
s = "expected val to be less via .Less method\n"
s += diff(exp, val, nil)
}
return
}
func SliceEmpty[A any](slice []A) (s string) {
if len(slice) != 0 {
s = "expected slice to be empty\n"
s += bullet("len(slice): %d\n", len(slice))
}
return
}
func SliceNotEmpty[A any](slice []A) (s string) {
if len(slice) == 0 {
s = "expected slice to not be empty\n"
s += bullet("len(slice): %d\n", len(slice))
}
return
}
func SliceLen[A any](n int, slice []A) (s string) {
if l := len(slice); l != n {
s = "expected slice to be different length\n"
s += bullet("len(slice): %d, expected: %d\n", l, n)
}
return
}
func SliceContainsOp[C comparable](slice []C, item C) (s string) {
if !contains(slice, item) {
s = "expected slice to contain missing item via == operator\n"
s += bullet("slice is missing %#v\n", item)
}
return
}
func SliceContainsFunc[A, B any](slice []A, item B, eq func(a A, b B) bool) (s string) {
if !containsFunc(slice, item, eq) {
s = "expected slice to contain missing item via 'eq' function\n"
s += bullet("slice is missing %#v\n", item)
}
return
}
func SliceContainsEqual[E interfaces.EqualFunc[E]](slice []E, item E) (s string) {
if !containsFunc(slice, item, E.Equal) {
s = "expected slice to contain missing item via .Equal method\n"
s += bullet("slice is missing %#v\n", item)
}
return
}
func SliceContains[A any](slice []A, item A, opts ...cmp.Option) (s string) {
for _, i := range slice {
if cmp.Equal(i, item, opts...) {
return
}
}
s = "expected slice to contain missing item via cmp.Equal method\n"
s += bullet("slice is missing %#v\n", item)
return
}
func SliceNotContains[A any](slice []A, item A, opts ...cmp.Option) (s string) {
for _, i := range slice {
if cmp.Equal(i, item, opts...) {
s = "expected slice to not contain item but it does\n"
s += bullet("unwanted item %#v\n", item)
return
}
}
return
}
func SliceNotContainsFunc[A, B any](slice []A, item B, eq func(a A, b B) bool) (s string) {
if containsFunc(slice, item, eq) {
s = "expected slice to not contain item but it does\n"
s += bullet("unwanted item %#v\n", item)
}
return
}
func SliceContainsAll[A any](slice, items []A, opts ...cmp.Option) (s string) {
if len(slice) != len(items) {
s = "expected slice and items to contain same number of elements\n"
s += bullet("len(slice): %d\n", len(slice))
s += bullet("len(items): %d\n", len(items))
return s
}
return SliceContainsSubset(slice, items, opts...)
}
func SliceContainsSubset[A any](slice, items []A, opts ...cmp.Option) (s string) {
OUTER:
for _, target := range items {
var item A
for _, item = range slice {
if cmp.Equal(target, item, opts...) {
continue OUTER
}
}
s = "expected slice to contain missing item\n"
s += bullet("slice is missing %#v\n", item)
return
}
return
}
func Positive[N interfaces.Number](value N) (s string) {
if !(value > 0) {
s = "expected positive value\n"
s += bullet("value: %v\n", value)
}
return
}
func NonPositive[N interfaces.Number](value N) (s string) {
if !(value <= 0) {
s = "expected non-positive value\n"
s += bullet("value: %v\n", value)
}
return
}
func Negative[N interfaces.Number](value N) (s string) {
if value > 0 {
s = "expected negative value\n"
s += bullet("value: %v\n", value)
}
return
}
func NonNegative[N interfaces.Number](value N) (s string) {
if !(value >= 0) {
s = "expected non-negative value\n"
s += bullet("value: %v\n", value)
}
return
}
func Zero[N interfaces.Number](value N) (s string) {
if value != 0 {
s = "expected value of 0\n"
s += bullet("value: %v\n", value)
}
return
}
func NonZero[N interfaces.Number](value N) (s string) {
if value == 0 {
s = "expected non-zero value\n"
s += bullet("value: %v\n", value)
}
return
}
func One[N interfaces.Number](value N) (s string) {
if value != 1 {
s = "expected value of 1\n"
s += bullet("value: %v\n", value)
}
return
}
func Less[O constraints.Ordered](exp, val O) (s string) {
if !(val < exp) {
s = fmt.Sprintf("expected %v < %v\n", val, exp)
}
return
}
func LessEq[O constraints.Ordered](exp, val O) (s string) {
if !(val <= exp) {
s = fmt.Sprintf("expected %v ≤ %v\n", val, exp)
}
return
}
func Greater[O constraints.Ordered](exp, val O) (s string) {
if !(val > exp) {
s = fmt.Sprintf("expected %v > %v\n", val, exp)
}
return
}
func GreaterEq[O constraints.Ordered](exp, val O) (s string) {
if !(val >= exp) {
s = fmt.Sprintf("expected %v ≥ %v\n", val, exp)
}
return
}
func Between[O constraints.Ordered](lower, val, upper O) (s string) {
if val < lower || val > upper {
s = fmt.Sprintf("expected val in range (%v ≤ val ≤ %v)\n", lower, upper)
s += bullet("val: %v\n", val)
return
}
return
}
func BetweenExclusive[O constraints.Ordered](lower, val, upper O) (s string) {
if val <= lower || val >= upper {
s = fmt.Sprintf("expected val in range (%v < val < %v)\n", lower, upper)
s += bullet("val: %v\n", val)
return
}
return
}
func Min[A any, C interfaces.MinFunc[A]](expect A, collection C, opts ...cmp.Option) (s string) {
min := collection.Min()
if !equal(expect, min, opts) {
s = "expected a different value for min\n"
s += diff(expect, min, opts)
}
return
}
func Max[A any, C interfaces.MaxFunc[A]](expect A, collection C, opts ...cmp.Option) (s string) {
max := collection.Max()
if !equal(expect, max, opts) {
s = "expected a different value for max\n"
s += diff(expect, max, opts)
}
return
}
func Ascending[O constraints.Ordered](slice []O) (s string) {
for i := 0; i < len(slice)-1; i++ {
if slice[i] > slice[i+1] {
s = fmt.Sprintf("expected slice[%d] <= slice[%d]\n", i, i+1)
s += bullet("slice[%d]: %v\n", i, slice[i])
s += bullet("slice[%d]: %v\n", i+1, slice[i+1])
return
}
}
return
}
func AscendingFunc[A any](slice []A, less func(a, b A) bool) (s string) {
for i := 0; i < len(slice)-1; i++ {
if !less(slice[i], slice[i+1]) {
s = fmt.Sprintf("expected less(slice[%d], slice[%d])\n", i, i+1)
s += bullet("slice[%d]: %v\n", i, slice[i])
s += bullet("slice[%d]: %v\n", i+1, slice[i+1])
return
}
}
return
}
func AscendingCmp[A any](slice []A, compare func(a, b A) int) (s string) {
for i := 0; i < len(slice)-1; i++ {
cmp := compare(slice[i], slice[i+1])
if cmp > 0 {
s = fmt.Sprintf("expected compare(slice[%d], slice[%d]) <= 0\n", i, i+1)
s += bullet("slice[%d]: %v\n", i, slice[i])
s += bullet("slice[%d]: %v\n", i+1, slice[i+1])
return
}
}
return
}
func AscendingLess[L interfaces.LessFunc[L]](slice []L) (s string) {
for i := 0; i < len(slice)-1; i++ {
if !slice[i].Less(slice[i+1]) {
s = fmt.Sprintf("expected slice[%d].Less(slice[%d])\n", i, i+1)
s += bullet("slice[%d]: %v\n", i, slice[i])
s += bullet("slice[%d]: %v\n", i+1, slice[i+1])
return
}
}
return
}
func Descending[O constraints.Ordered](slice []O) (s string) {
for i := 0; i < len(slice)-1; i++ {
if slice[i] < slice[i+1] {
s = fmt.Sprintf("expected slice[%d] >= slice[%d]\n", i, i+1)
s += bullet("slice[%d]: %v\n", i, slice[i])
s += bullet("slice[%d]: %v\n", i+1, slice[i+1])
return
}
}
return
}
func DescendingFunc[A any](slice []A, less func(a, b A) bool) (s string) {
for i := 0; i < len(slice)-1; i++ {
if !less(slice[i+1], slice[i]) {
s = fmt.Sprintf("expected less(slice[%d], slice[%d])\n", i+1, i)
s += bullet("slice[%d]: %v\n", i, slice[i])
s += bullet("slice[%d]: %v\n", i+1, slice[i+1])
return
}
}
return
}
func DescendingCmp[A any](slice []A, compare func(a, b A) int) (s string) {
for i := 0; i < len(slice)-1; i++ {
cmp := compare(slice[i], slice[i+1])
if cmp < 0 {
s = fmt.Sprintf("expected compare(slice[%d], slice[%d]) >= 0\n", i, i+1)
s += bullet("slice[%d]: %v\n", i, slice[i])
s += bullet("slice[%d]: %v\n", i+1, slice[i+1])
return
}
}
return
}
func DescendingLess[L interfaces.LessFunc[L]](slice []L) (s string) {
for i := 0; i < len(slice)-1; i++ {
if !(slice[i+1].Less(slice[i])) {
s = fmt.Sprintf("expected slice[%d].Less(slice[%d])\n", i+1, i)
s += bullet("slice[%d]: %v\n", i, slice[i])
s += bullet("slice[%d]: %v\n", i+1, slice[i+1])
return
}
}
return
}
func InDelta[N interfaces.Number](a, b, delta N) (s string) {
var zero N
if !interfaces.Numeric(delta) {
s = fmt.Sprintf("delta must be numeric; got %v\n", delta)
return
}
if delta <= zero {
s = fmt.Sprintf("delta must be positive; got %v\n", delta)
return
}
if !interfaces.Numeric(a) {
s = fmt.Sprintf("first argument must be numeric; got %v\n", a)
return
}
if !interfaces.Numeric(b) {
s = fmt.Sprintf("second argument must be numeric; got %v\n", b)
return
}
difference := a - b
if difference < -delta || difference > delta {
s = fmt.Sprintf("%v and %v not within %v\n", a, b, delta)
return
}
return
}
func InDeltaSlice[N interfaces.Number](a, b []N, delta N) (s string) {
if len(a) != len(b) {
s = "expected slices of same length\n"
s += bullet("len(slice a): %d\n", len(a))
s += bullet("len(slice b): %d\n", len(b))
return
}
for i := 0; i < len(a); i++ {
if s = InDelta(a[i], b[i], delta); s != "" {
return
}
}
return
}
func MapEq[M1, M2 interfaces.Map[K, V], K comparable, V any](exp M1, val M2, opts cmp.Options) (s string) {
lenA, lenB := len(exp), len(val)
if lenA != lenB {
s = "expected maps of same length\n"
s += bullet("len(exp): %d\n", lenA)
s += bullet("len(val): %d\n", lenB)
return
}
for key, valA := range exp {
valB, exists := val[key]
if !exists {
s = "expected maps of same keys\n"
s += diff(exp, val, opts)
return
}
if !cmp.Equal(valA, valB, opts) {
s = "expected maps of same values via cmp.Equal function\n"
s += diff(exp, val, opts)
return
}
}
return
}
func MapEqFunc[M1, M2 interfaces.Map[K, V], K comparable, V any](exp M1, val M2, eq func(V, V) bool) (s string) {
lenA, lenB := len(exp), len(val)
if lenA != lenB {
s = "expected maps of same length\n"
s += bullet("len(exp): %d\n", lenA)
s += bullet("len(val): %d\n", lenB)
return
}
for key, valA := range exp {
valB, exists := val[key]
if !exists {
s = "expected maps of same keys\n"
s += diff(exp, val, nil)
return
}
if !eq(valA, valB) {
s = "expected maps of same values via 'eq' function\n"
s += diff(exp, val, nil)
return
}
}
return
}
func MapEqual[M interfaces.MapEqualFunc[K, V], K comparable, V interfaces.EqualFunc[V]](exp, val M) (s string) {
lenA, lenB := len(exp), len(val)
if lenA != lenB {
s = "expected maps of same length\n"
s += bullet("len(exp): %d\n", lenA)
s += bullet("len(val): %d\n", lenB)
return
}
for key, valA := range exp {
valB, exists := val[key]
if !exists {
s = "expected maps of same keys\n"
s += diff(exp, val, nil)
return
}
if !(valB).Equal(valA) {
s = "expected maps of same values via .Equal method\n"
s += diff(exp, val, nil)
return
}
}
return
}
func MapEqOp[M interfaces.Map[K, V], K, V comparable](exp, val M) (s string) {
lenA, lenB := len(exp), len(val)
if lenA != lenB {
s = "expected maps of same length\n"
s += bullet("len(exp): %d\n", lenA)
s += bullet("len(val): %d\n", lenB)
return
}
for key, valA := range exp {
valB, exists := val[key]
if !exists {
s = "expected maps of same keys\n"
s += diff(exp, val, nil)
return
}
if valA != valB {
s = "expected maps of same values via ==\n"
s += diff(exp, val, nil)
return
}
}
return
}
func MapLen[M ~map[K]V, K comparable, V any](n int, m M) (s string) {
if l := len(m); l != n {
s = "expected map to be different length\n"
s += bullet("len(map): %d, expected: %d\n", l, n)
}
return
}
func MapEmpty[M ~map[K]V, K comparable, V any](m M) (s string) {
if l := len(m); l > 0 {
s = "expected map to be empty\n"
s += bullet("len(map): %d\n", l)
}
return
}
func MapNotEmpty[M ~map[K]V, K comparable, V any](m M) (s string) {
if l := len(m); l == 0 {
s = "expected map to not be empty\n"
s += bullet("len(map): %d\n", l)
}
return
}
func MapContainsKey[M ~map[K]V, K comparable, V any](m M, key K) (s string) {
if _, exists := m[key]; !exists {
s = "expected map to contain key\n"
s += bullet("key: %v\n", key)
}
return
}
func MapNotContainsKey[M ~map[K]V, K comparable, V any](m M, key K) (s string) {
if _, exists := m[key]; exists {
s = "expected map to not contain key\n"
s += bullet("key: %v\n", key)
}
return
}
func MapContainsKeys[M ~map[K]V, K comparable, V any](m M, keys []K) (s string) {
var missing []K
for _, key := range keys {
if _, exists := m[key]; !exists {
missing = append(missing, key)
}
}
if len(missing) > 0 {
s = "expected map to contain keys\n"
for _, key := range missing {
s += bullet("key: %v\n", key)
}
}
return
}
func MapNotContainsKeys[M ~map[K]V, K comparable, V any](m M, keys []K) (s string) {
var unwanted []K
for _, key := range keys {
if _, exists := m[key]; exists {
unwanted = append(unwanted, key)
}
}
if len(unwanted) > 0 {
s = "expected map to not contain keys\n"
for _, key := range unwanted {
s += bullet("key: %v\n", key)
}
}
return
}
func mapContains[M ~map[K]V, K comparable, V any](m M, values []V, eq func(V, V) bool) (s string) {
var missing []V
for _, wanted := range values {
found := false
for _, v := range m {
if eq(wanted, v) {
found = true
break
}
}
if !found {
missing = append(missing, wanted)
}
}
if len(missing) > 0 {
s = "expected map to contain values\n"
for _, val := range missing {
s += bullet("val: %v\n", val)
}
}
return
}
func mapNotContains[M ~map[K]V, K comparable, V any](m M, values []V, eq func(V, V) bool) (s string) {
var unexpected []V
for _, target := range values {
found := false
for _, v := range m {
if eq(target, v) {
found = true
break
}
}
if found {
unexpected = append(unexpected, target)
}
}
if len(unexpected) > 0 {
s = "expected map to not contain values\n"
for _, val := range unexpected {
s += bullet("val: %v\n", val)
}
}
return
}
func MapContainsValues[M ~map[K]V, K comparable, V any](m M, vals []V, opts cmp.Options) (s string) {
return mapContains(m, vals, func(a, b V) bool {
return equal(a, b, opts)
})
}
func MapNotContainsValues[M ~map[K]V, K comparable, V any](m M, vals []V, opts cmp.Options) (s string) {
return mapNotContains(m, vals, func(a, b V) bool {
return equal(a, b, opts)
})
}
func MapContainsValuesFunc[M ~map[K]V, K comparable, V any](m M, vals []V, eq func(V, V) bool) (s string) {
return mapContains(m, vals, eq)
}
func MapNotContainsValuesFunc[M ~map[K]V, K comparable, V any](m M, vals []V, eq func(V, V) bool) (s string) {
return mapNotContains(m, vals, eq)
}
func MapContainsValuesEqual[M ~map[K]V, K comparable, V interfaces.EqualFunc[V]](m M, vals []V) (s string) {