forked from go-redis/redismock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
expect.go
1403 lines (1108 loc) · 41.1 KB
/
expect.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
package redismock
import (
"fmt"
"reflect"
"sync"
"time"
"unsafe"
"github.com/redis/go-redis/v9"
)
type baseMock interface {
// ClearExpect clear whether all queued expectations were met in order
ClearExpect()
// Regexp using the regular match command
Regexp() *mock
// CustomMatch using custom matching functions
CustomMatch(fn CustomMatch) *mock
// ExpectationsWereMet checks whether all queued expectations
// were met in order. If any of them was not met - an error is returned.
ExpectationsWereMet() error
// UnexpectedCallsWereMade returns any unexpected calls which were made.
// If any unexpected call was made, a list of unexpected call redis.Cmder is returned.
UnexpectedCallsWereMade() (bool, []redis.Cmder)
// MatchExpectationsInOrder gives an option whether to match all expectations in the order they were set or not.
MatchExpectationsInOrder(b bool)
ExpectDo(args ...interface{}) *ExpectedCmd
ExpectCommand() *ExpectedCommandsInfo
ExpectCommandList(filter *redis.FilterBy) *ExpectedStringSlice
ExpectCommandGetKeys(commands ...interface{}) *ExpectedStringSlice
ExpectCommandGetKeysAndFlags(commands ...interface{}) *ExpectedKeyFlags
ExpectClientGetName() *ExpectedString
ExpectEcho(message interface{}) *ExpectedString
ExpectPing() *ExpectedStatus
ExpectQuit() *ExpectedStatus
ExpectDel(keys ...string) *ExpectedInt
ExpectUnlink(keys ...string) *ExpectedInt
ExpectDump(key string) *ExpectedString
ExpectExists(keys ...string) *ExpectedInt
ExpectExpire(key string, expiration time.Duration) *ExpectedBool
ExpectExpireAt(key string, tm time.Time) *ExpectedBool
ExpectExpireTime(key string) *ExpectedDuration
ExpectExpireNX(key string, expiration time.Duration) *ExpectedBool
ExpectExpireXX(key string, expiration time.Duration) *ExpectedBool
ExpectExpireGT(key string, expiration time.Duration) *ExpectedBool
ExpectExpireLT(key string, expiration time.Duration) *ExpectedBool
ExpectKeys(pattern string) *ExpectedStringSlice
ExpectMigrate(host, port, key string, db int, timeout time.Duration) *ExpectedStatus
ExpectMove(key string, db int) *ExpectedBool
ExpectObjectRefCount(key string) *ExpectedInt
ExpectObjectEncoding(key string) *ExpectedString
ExpectObjectIdleTime(key string) *ExpectedDuration
ExpectPersist(key string) *ExpectedBool
ExpectPExpire(key string, expiration time.Duration) *ExpectedBool
ExpectPExpireAt(key string, tm time.Time) *ExpectedBool
ExpectPExpireTime(key string) *ExpectedDuration
ExpectPTTL(key string) *ExpectedDuration
ExpectRandomKey() *ExpectedString
ExpectRename(key, newkey string) *ExpectedStatus
ExpectRenameNX(key, newkey string) *ExpectedBool
ExpectRestore(key string, ttl time.Duration, value string) *ExpectedStatus
ExpectRestoreReplace(key string, ttl time.Duration, value string) *ExpectedStatus
ExpectSort(key string, sort *redis.Sort) *ExpectedStringSlice
ExpectSortRO(key string, sort *redis.Sort) *ExpectedStringSlice
ExpectSortStore(key, store string, sort *redis.Sort) *ExpectedInt
ExpectSortInterfaces(key string, sort *redis.Sort) *ExpectedSlice
ExpectTouch(keys ...string) *ExpectedInt
ExpectTTL(key string) *ExpectedDuration
ExpectType(key string) *ExpectedStatus
ExpectAppend(key, value string) *ExpectedInt
ExpectDecr(key string) *ExpectedInt
ExpectDecrBy(key string, decrement int64) *ExpectedInt
ExpectGet(key string) *ExpectedString
ExpectGetRange(key string, start, end int64) *ExpectedString
ExpectGetSet(key string, value interface{}) *ExpectedString
ExpectGetEx(key string, expiration time.Duration) *ExpectedString
ExpectGetDel(key string) *ExpectedString
ExpectIncr(key string) *ExpectedInt
ExpectIncrBy(key string, value int64) *ExpectedInt
ExpectIncrByFloat(key string, value float64) *ExpectedFloat
ExpectMGet(keys ...string) *ExpectedSlice
ExpectMSet(values ...interface{}) *ExpectedStatus
ExpectMSetNX(values ...interface{}) *ExpectedBool
ExpectSet(key string, value interface{}, expiration time.Duration) *ExpectedStatus
ExpectSetArgs(key string, value interface{}, a redis.SetArgs) *ExpectedStatus
ExpectSetEx(key string, value interface{}, expiration time.Duration) *ExpectedStatus
ExpectSetNX(key string, value interface{}, expiration time.Duration) *ExpectedBool
ExpectSetXX(key string, value interface{}, expiration time.Duration) *ExpectedBool
ExpectSetRange(key string, offset int64, value string) *ExpectedInt
ExpectStrLen(key string) *ExpectedInt
ExpectCopy(sourceKey string, destKey string, db int, replace bool) *ExpectedInt
ExpectGetBit(key string, offset int64) *ExpectedInt
ExpectSetBit(key string, offset int64, value int) *ExpectedInt
ExpectBitCount(key string, bitCount *redis.BitCount) *ExpectedInt
ExpectBitOpAnd(destKey string, keys ...string) *ExpectedInt
ExpectBitOpOr(destKey string, keys ...string) *ExpectedInt
ExpectBitOpXor(destKey string, keys ...string) *ExpectedInt
ExpectBitOpNot(destKey string, key string) *ExpectedInt
ExpectBitPos(key string, bit int64, pos ...int64) *ExpectedInt
ExpectBitPosSpan(key string, bit int8, start, end int64, span string) *ExpectedInt
ExpectBitField(key string, args ...interface{}) *ExpectedIntSlice
ExpectScan(cursor uint64, match string, count int64) *ExpectedScan
ExpectScanType(cursor uint64, match string, count int64, keyType string) *ExpectedScan
ExpectSScan(key string, cursor uint64, match string, count int64) *ExpectedScan
ExpectHScan(key string, cursor uint64, match string, count int64) *ExpectedScan
ExpectZScan(key string, cursor uint64, match string, count int64) *ExpectedScan
ExpectHDel(key string, fields ...string) *ExpectedInt
ExpectHExists(key, field string) *ExpectedBool
ExpectHGet(key, field string) *ExpectedString
ExpectHGetAll(key string) *ExpectedMapStringString
ExpectHIncrBy(key, field string, incr int64) *ExpectedInt
ExpectHIncrByFloat(key, field string, incr float64) *ExpectedFloat
ExpectHKeys(key string) *ExpectedStringSlice
ExpectHLen(key string) *ExpectedInt
ExpectHMGet(key string, fields ...string) *ExpectedSlice
ExpectHSet(key string, values ...interface{}) *ExpectedInt
ExpectHMSet(key string, values ...interface{}) *ExpectedBool
ExpectHSetNX(key, field string, value interface{}) *ExpectedBool
ExpectHVals(key string) *ExpectedStringSlice
ExpectHRandField(key string, count int) *ExpectedStringSlice
ExpectHRandFieldWithValues(key string, count int) *ExpectedKeyValueSlice
ExpectBLPop(timeout time.Duration, keys ...string) *ExpectedStringSlice
ExpectBLMPop(timeout time.Duration, direction string, count int64, keys ...string) *ExpectedKeyValues
ExpectBRPop(timeout time.Duration, keys ...string) *ExpectedStringSlice
ExpectBRPopLPush(source, destination string, timeout time.Duration) *ExpectedString
ExpectLCS(q *redis.LCSQuery) *ExpectedLCS
ExpectLIndex(key string, index int64) *ExpectedString
ExpectLInsert(key, op string, pivot, value interface{}) *ExpectedInt
ExpectLInsertBefore(key string, pivot, value interface{}) *ExpectedInt
ExpectLInsertAfter(key string, pivot, value interface{}) *ExpectedInt
ExpectLLen(key string) *ExpectedInt
ExpectLPop(key string) *ExpectedString
ExpectLPopCount(key string, count int) *ExpectedStringSlice
ExpectLMPop(direction string, count int64, keys ...string) *ExpectedKeyValues
ExpectLPos(key string, value string, args redis.LPosArgs) *ExpectedInt
ExpectLPosCount(key string, value string, count int64, args redis.LPosArgs) *ExpectedIntSlice
ExpectLPush(key string, values ...interface{}) *ExpectedInt
ExpectLPushX(key string, values ...interface{}) *ExpectedInt
ExpectLRange(key string, start, stop int64) *ExpectedStringSlice
ExpectLRem(key string, count int64, value interface{}) *ExpectedInt
ExpectLSet(key string, index int64, value interface{}) *ExpectedStatus
ExpectLTrim(key string, start, stop int64) *ExpectedStatus
ExpectRPop(key string) *ExpectedString
ExpectRPopCount(key string, count int) *ExpectedStringSlice
ExpectRPopLPush(source, destination string) *ExpectedString
ExpectRPush(key string, values ...interface{}) *ExpectedInt
ExpectRPushX(key string, values ...interface{}) *ExpectedInt
ExpectLMove(source, destination, srcpos, destpos string) *ExpectedString
ExpectBLMove(source, destination, srcpos, destpos string, timeout time.Duration) *ExpectedString
ExpectSAdd(key string, members ...interface{}) *ExpectedInt
ExpectSCard(key string) *ExpectedInt
ExpectSDiff(keys ...string) *ExpectedStringSlice
ExpectSDiffStore(destination string, keys ...string) *ExpectedInt
ExpectSInter(keys ...string) *ExpectedStringSlice
ExpectSInterCard(limit int64, keys ...string) *ExpectedInt
ExpectSInterStore(destination string, keys ...string) *ExpectedInt
ExpectSIsMember(key string, member interface{}) *ExpectedBool
ExpectSMIsMember(key string, members ...interface{}) *ExpectedBoolSlice
ExpectSMembers(key string) *ExpectedStringSlice
ExpectSMembersMap(key string) *ExpectedStringStructMap
ExpectSMove(source, destination string, member interface{}) *ExpectedBool
ExpectSPop(key string) *ExpectedString
ExpectSPopN(key string, count int64) *ExpectedStringSlice
ExpectSRandMember(key string) *ExpectedString
ExpectSRandMemberN(key string, count int64) *ExpectedStringSlice
ExpectSRem(key string, members ...interface{}) *ExpectedInt
ExpectSUnion(keys ...string) *ExpectedStringSlice
ExpectSUnionStore(destination string, keys ...string) *ExpectedInt
ExpectXAdd(a *redis.XAddArgs) *ExpectedString
ExpectXDel(stream string, ids ...string) *ExpectedInt
ExpectXLen(stream string) *ExpectedInt
ExpectXRange(stream, start, stop string) *ExpectedXMessageSlice
ExpectXRangeN(stream, start, stop string, count int64) *ExpectedXMessageSlice
ExpectXRevRange(stream string, start, stop string) *ExpectedXMessageSlice
ExpectXRevRangeN(stream string, start, stop string, count int64) *ExpectedXMessageSlice
ExpectXRead(a *redis.XReadArgs) *ExpectedXStreamSlice
ExpectXReadStreams(streams ...string) *ExpectedXStreamSlice
ExpectXGroupCreate(stream, group, start string) *ExpectedStatus
ExpectXGroupCreateMkStream(stream, group, start string) *ExpectedStatus
ExpectXGroupSetID(stream, group, start string) *ExpectedStatus
ExpectXGroupDestroy(stream, group string) *ExpectedInt
ExpectXGroupCreateConsumer(stream, group, consumer string) *ExpectedInt
ExpectXGroupDelConsumer(stream, group, consumer string) *ExpectedInt
ExpectXReadGroup(a *redis.XReadGroupArgs) *ExpectedXStreamSlice
ExpectXAck(stream, group string, ids ...string) *ExpectedInt
ExpectXPending(stream, group string) *ExpectedXPending
ExpectXPendingExt(a *redis.XPendingExtArgs) *ExpectedXPendingExt
ExpectXClaim(a *redis.XClaimArgs) *ExpectedXMessageSlice
ExpectXClaimJustID(a *redis.XClaimArgs) *ExpectedStringSlice
ExpectXAutoClaim(a *redis.XAutoClaimArgs) *ExpectedXAutoClaim
ExpectXAutoClaimJustID(a *redis.XAutoClaimArgs) *ExpectedXAutoClaimJustID
ExpectXTrimMaxLen(key string, maxLen int64) *ExpectedInt
ExpectXTrimMaxLenApprox(key string, maxLen, limit int64) *ExpectedInt
ExpectXTrimMinID(key string, minID string) *ExpectedInt
ExpectXTrimMinIDApprox(key string, minID string, limit int64) *ExpectedInt
ExpectXInfoGroups(key string) *ExpectedXInfoGroups
ExpectXInfoStream(key string) *ExpectedXInfoStream
ExpectXInfoStreamFull(key string, count int) *ExpectedXInfoStreamFull
ExpectXInfoConsumers(key string, group string) *ExpectedXInfoConsumers
ExpectBZPopMax(timeout time.Duration, keys ...string) *ExpectedZWithKey
ExpectBZPopMin(timeout time.Duration, keys ...string) *ExpectedZWithKey
ExpectBZMPop(timeout time.Duration, order string, count int64, keys ...string) *ExpectedZSliceWithKey
ExpectZAdd(key string, members ...redis.Z) *ExpectedInt
ExpectZAddLT(key string, members ...redis.Z) *ExpectedInt
ExpectZAddGT(key string, members ...redis.Z) *ExpectedInt
ExpectZAddNX(key string, members ...redis.Z) *ExpectedInt
ExpectZAddXX(key string, members ...redis.Z) *ExpectedInt
ExpectZAddArgs(key string, args redis.ZAddArgs) *ExpectedInt
ExpectZAddArgsIncr(key string, args redis.ZAddArgs) *ExpectedFloat
ExpectZCard(key string) *ExpectedInt
ExpectZCount(key, min, max string) *ExpectedInt
ExpectZLexCount(key, min, max string) *ExpectedInt
ExpectZIncrBy(key string, increment float64, member string) *ExpectedFloat
ExpectZInter(store *redis.ZStore) *ExpectedStringSlice
ExpectZInterWithScores(store *redis.ZStore) *ExpectedZSlice
ExpectZInterCard(limit int64, keys ...string) *ExpectedInt
ExpectZInterStore(destination string, store *redis.ZStore) *ExpectedInt
ExpectZMPop(order string, count int64, keys ...string) *ExpectedZSliceWithKey
ExpectZMScore(key string, members ...string) *ExpectedFloatSlice
ExpectZPopMax(key string, count ...int64) *ExpectedZSlice
ExpectZPopMin(key string, count ...int64) *ExpectedZSlice
ExpectZRange(key string, start, stop int64) *ExpectedStringSlice
ExpectZRangeWithScores(key string, start, stop int64) *ExpectedZSlice
ExpectZRangeByScore(key string, opt *redis.ZRangeBy) *ExpectedStringSlice
ExpectZRangeByLex(key string, opt *redis.ZRangeBy) *ExpectedStringSlice
ExpectZRangeByScoreWithScores(key string, opt *redis.ZRangeBy) *ExpectedZSlice
ExpectZRangeArgs(z redis.ZRangeArgs) *ExpectedStringSlice
ExpectZRangeArgsWithScores(z redis.ZRangeArgs) *ExpectedZSlice
ExpectZRangeStore(dst string, z redis.ZRangeArgs) *ExpectedInt
ExpectZRank(key, member string) *ExpectedInt
ExpectZRem(key string, members ...interface{}) *ExpectedInt
ExpectZRemRangeByRank(key string, start, stop int64) *ExpectedInt
ExpectZRemRangeByScore(key, min, max string) *ExpectedInt
ExpectZRemRangeByLex(key, min, max string) *ExpectedInt
ExpectZRevRange(key string, start, stop int64) *ExpectedStringSlice
ExpectZRevRangeWithScores(key string, start, stop int64) *ExpectedZSlice
ExpectZRevRangeByScore(key string, opt *redis.ZRangeBy) *ExpectedStringSlice
ExpectZRevRangeByLex(key string, opt *redis.ZRangeBy) *ExpectedStringSlice
ExpectZRevRangeByScoreWithScores(key string, opt *redis.ZRangeBy) *ExpectedZSlice
ExpectZRevRank(key, member string) *ExpectedInt
ExpectZScore(key, member string) *ExpectedFloat
ExpectZUnionStore(dest string, store *redis.ZStore) *ExpectedInt
ExpectZRandMember(key string, count int) *ExpectedStringSlice
ExpectZRandMemberWithScores(key string, count int) *ExpectedZSlice
ExpectZUnion(store redis.ZStore) *ExpectedStringSlice
ExpectZUnionWithScores(store redis.ZStore) *ExpectedZSlice
ExpectZDiff(keys ...string) *ExpectedStringSlice
ExpectZDiffWithScores(keys ...string) *ExpectedZSlice
ExpectZDiffStore(destination string, keys ...string) *ExpectedInt
ExpectPFAdd(key string, els ...interface{}) *ExpectedInt
ExpectPFCount(keys ...string) *ExpectedInt
ExpectPFMerge(dest string, keys ...string) *ExpectedStatus
ExpectBgRewriteAOF() *ExpectedStatus
ExpectBgSave() *ExpectedStatus
ExpectClientKill(ipPort string) *ExpectedStatus
ExpectClientKillByFilter(keys ...string) *ExpectedInt
ExpectClientList() *ExpectedString
ExpectClientPause(dur time.Duration) *ExpectedBool
ExpectClientUnpause() *ExpectedBool
ExpectClientID() *ExpectedInt
ExpectClientUnblock(id int64) *ExpectedInt
ExpectClientUnblockWithError(id int64) *ExpectedInt
ExpectConfigGet(parameter string) *ExpectedMapStringString
ExpectConfigResetStat() *ExpectedStatus
ExpectConfigSet(parameter, value string) *ExpectedStatus
ExpectConfigRewrite() *ExpectedStatus
ExpectDBSize() *ExpectedInt
ExpectFlushAll() *ExpectedStatus
ExpectFlushAllAsync() *ExpectedStatus
ExpectFlushDB() *ExpectedStatus
ExpectFlushDBAsync() *ExpectedStatus
ExpectInfo(section ...string) *ExpectedString
ExpectLastSave() *ExpectedInt
ExpectSave() *ExpectedStatus
ExpectShutdown() *ExpectedStatus
ExpectShutdownSave() *ExpectedStatus
ExpectShutdownNoSave() *ExpectedStatus
ExpectSlaveOf(host, port string) *ExpectedStatus
ExpectSlowLogGet(num int64) *ExpectedSlowLog
ExpectTime() *ExpectedTime
ExpectDebugObject(key string) *ExpectedString
ExpectReadOnly() *ExpectedStatus
ExpectReadWrite() *ExpectedStatus
ExpectMemoryUsage(key string, samples ...int) *ExpectedInt
ExpectEval(script string, keys []string, args ...interface{}) *ExpectedCmd
ExpectEvalSha(sha1 string, keys []string, args ...interface{}) *ExpectedCmd
ExpectEvalRO(script string, keys []string, args ...interface{}) *ExpectedCmd
ExpectEvalShaRO(sha1 string, keys []string, args ...interface{}) *ExpectedCmd
ExpectScriptExists(hashes ...string) *ExpectedBoolSlice
ExpectScriptFlush() *ExpectedStatus
ExpectScriptKill() *ExpectedStatus
ExpectScriptLoad(script string) *ExpectedString
ExpectPublish(channel string, message interface{}) *ExpectedInt
ExpectSPublish(channel string, message interface{}) *ExpectedInt
ExpectPubSubChannels(pattern string) *ExpectedStringSlice
ExpectPubSubNumSub(channels ...string) *ExpectedMapStringInt
ExpectPubSubNumPat() *ExpectedInt
ExpectPubSubShardChannels(pattern string) *ExpectedStringSlice
ExpectPubSubShardNumSub(channels ...string) *ExpectedMapStringInt
ExpectClusterSlots() *ExpectedClusterSlots
ExpectClusterShards() *ExpectedClusterShards
ExpectClusterLinks() *ExpectedClusterLinks
ExpectClusterNodes() *ExpectedString
ExpectClusterMeet(host, port string) *ExpectedStatus
ExpectClusterForget(nodeID string) *ExpectedStatus
ExpectClusterReplicate(nodeID string) *ExpectedStatus
ExpectClusterResetSoft() *ExpectedStatus
ExpectClusterResetHard() *ExpectedStatus
ExpectClusterInfo() *ExpectedString
ExpectClusterKeySlot(key string) *ExpectedInt
ExpectClusterGetKeysInSlot(slot int, count int) *ExpectedStringSlice
ExpectClusterCountFailureReports(nodeID string) *ExpectedInt
ExpectClusterCountKeysInSlot(slot int) *ExpectedInt
ExpectClusterDelSlots(slots ...int) *ExpectedStatus
ExpectClusterDelSlotsRange(min, max int) *ExpectedStatus
ExpectClusterSaveConfig() *ExpectedStatus
ExpectClusterSlaves(nodeID string) *ExpectedStringSlice
ExpectClusterFailover() *ExpectedStatus
ExpectClusterAddSlots(slots ...int) *ExpectedStatus
ExpectClusterAddSlotsRange(min, max int) *ExpectedStatus
ExpectGeoAdd(key string, geoLocation ...*redis.GeoLocation) *ExpectedInt
ExpectGeoPos(key string, members ...string) *ExpectedGeoPos
ExpectGeoRadius(key string, longitude, latitude float64, query *redis.GeoRadiusQuery) *ExpectedGeoLocation
ExpectGeoRadiusStore(key string, longitude, latitude float64, query *redis.GeoRadiusQuery) *ExpectedInt
ExpectGeoRadiusByMember(key, member string, query *redis.GeoRadiusQuery) *ExpectedGeoLocation
ExpectGeoRadiusByMemberStore(key, member string, query *redis.GeoRadiusQuery) *ExpectedInt
ExpectGeoSearch(key string, q *redis.GeoSearchQuery) *ExpectedStringSlice
ExpectGeoSearchLocation(key string, q *redis.GeoSearchLocationQuery) *ExpectedGeoSearchLocation
ExpectGeoSearchStore(key, store string, q *redis.GeoSearchStoreQuery) *ExpectedInt
ExpectGeoDist(key string, member1, member2, unit string) *ExpectedFloat
ExpectGeoHash(key string, members ...string) *ExpectedStringSlice
ExpectFunctionLoad(code string) *ExpectedString
ExpectFunctionLoadReplace(code string) *ExpectedString
ExpectFunctionDelete(libName string) *ExpectedString
ExpectFunctionFlush() *ExpectedString
ExpectFunctionFlushAsync() *ExpectedString
ExpectFunctionList(q redis.FunctionListQuery) *ExpectedFunctionList
ExpectFunctionKill() *ExpectedString
ExpectFunctionDump() *ExpectedString
ExpectFunctionRestore(libDump string) *ExpectedString
ExpectFCall(function string, keys []string, args ...interface{}) *ExpectedCmd
ExpectFCallRo(function string, keys []string, args ...interface{}) *ExpectedCmd
ExpectACLDryRun(username string, command ...interface{}) *ExpectedString
ExpectTSAdd(key string, timestamp interface{}, value float64) *ExpectedInt
ExpectTSAddWithArgs(key string, timestamp interface{}, value float64, options *redis.TSOptions) *ExpectedInt
ExpectTSCreate(key string) *ExpectedStatus
ExpectTSCreateWithArgs(key string, options *redis.TSOptions) *ExpectedStatus
ExpectTSAlter(key string, options *redis.TSAlterOptions) *ExpectedStatus
ExpectTSCreateRule(sourceKey string, destKey string, aggregator redis.Aggregator, bucketDuration int) *ExpectedStatus
ExpectTSCreateRuleWithArgs(sourceKey string, destKey string, aggregator redis.Aggregator, bucketDuration int, options *redis.TSCreateRuleOptions) *ExpectedStatus
ExpectTSIncrBy(Key string, timestamp float64) *ExpectedInt
ExpectTSIncrByWithArgs(key string, timestamp float64, options *redis.TSIncrDecrOptions) *ExpectedInt
ExpectTSDecrBy(Key string, timestamp float64) *ExpectedInt
ExpectTSDecrByWithArgs(key string, timestamp float64, options *redis.TSIncrDecrOptions) *ExpectedInt
ExpectTSDel(Key string, fromTimestamp int, toTimestamp int) *ExpectedInt
ExpectTSDeleteRule(sourceKey string, destKey string) *ExpectedStatus
ExpectTSGet(key string) *ExpectedTSTimestampValue
ExpectTSGetWithArgs(key string, options *redis.TSGetOptions) *ExpectedTSTimestampValue
ExpectTSInfo(key string) *ExpectedMapStringInterface
ExpectTSInfoWithArgs(key string, options *redis.TSInfoOptions) *ExpectedMapStringInterface
ExpectTSMAdd(ktvSlices [][]interface{}) *ExpectedIntSlice
ExpectTSQueryIndex(filterExpr []string) *ExpectedStringSlice
ExpectTSRevRange(key string, fromTimestamp int, toTimestamp int) *ExpectedTSTimestampValueSlice
ExpectTSRevRangeWithArgs(key string, fromTimestamp int, toTimestamp int, options *redis.TSRevRangeOptions) *ExpectedTSTimestampValueSlice
ExpectTSRange(key string, fromTimestamp int, toTimestamp int) *ExpectedTSTimestampValueSlice
ExpectTSRangeWithArgs(key string, fromTimestamp int, toTimestamp int, options *redis.TSRangeOptions) *ExpectedTSTimestampValueSlice
ExpectTSMRange(fromTimestamp int, toTimestamp int, filterExpr []string) *ExpectedMapStringSliceInterface
ExpectTSMRangeWithArgs(fromTimestamp int, toTimestamp int, filterExpr []string, options *redis.TSMRangeOptions) *ExpectedMapStringSliceInterface
ExpectTSMRevRange(fromTimestamp int, toTimestamp int, filterExpr []string) *ExpectedMapStringSliceInterface
ExpectTSMRevRangeWithArgs(fromTimestamp int, toTimestamp int, filterExpr []string, options *redis.TSMRevRangeOptions) *ExpectedMapStringSliceInterface
ExpectTSMGet(filters []string) *ExpectedMapStringSliceInterface
ExpectTSMGetWithArgs(filters []string, options *redis.TSMGetOptions) *ExpectedMapStringSliceInterface
}
type pipelineMock interface {
ExpectTxPipeline()
ExpectTxPipelineExec() *ExpectedSlice
}
type watchMock interface {
ExpectWatch(keys ...string) *ExpectedError
}
type ClientMock interface {
baseMock
pipelineMock
watchMock
}
type ClusterClientMock interface {
baseMock
}
func inflow(cmd redis.Cmder, key string, val interface{}) {
v := reflect.ValueOf(cmd).Elem().FieldByName(key)
if !v.IsValid() {
panic(fmt.Sprintf("cmd did not find key '%s'", key))
}
v = reflect.NewAt(v.Type(), unsafe.Pointer(v.UnsafeAddr())).Elem()
setVal := reflect.ValueOf(val)
if v.Kind() != reflect.Interface && setVal.Kind() != v.Kind() {
panic(fmt.Sprintf("expected kind %v, got kind: %v", v.Kind(), setVal.Kind()))
}
v.Set(setVal)
}
type expectation interface {
regexp() bool
setRegexpMatch()
custom() CustomMatch
setCustomMatch(fn CustomMatch)
usable() bool
trigger()
name() string
args() []interface{}
error() error
SetErr(err error)
RedisNil()
isRedisNil() bool
inflow(c redis.Cmder)
isSetVal() bool
lock()
unlock()
}
type CustomMatch func(expected, actual []interface{}) error
type expectedBase struct {
cmd redis.Cmder
err error
redisNil bool
triggered bool
setVal bool
regexpMatch bool
customMatch CustomMatch
rw sync.RWMutex
}
func (base *expectedBase) lock() {
base.rw.Lock()
}
func (base *expectedBase) unlock() {
base.rw.Unlock()
}
func (base *expectedBase) regexp() bool {
return base.regexpMatch
}
func (base *expectedBase) setRegexpMatch() {
base.regexpMatch = true
}
func (base *expectedBase) custom() CustomMatch {
return base.customMatch
}
func (base *expectedBase) setCustomMatch(fn CustomMatch) {
base.customMatch = fn
}
func (base *expectedBase) usable() bool {
return !base.triggered
}
func (base *expectedBase) trigger() {
base.triggered = true
}
func (base *expectedBase) name() string {
return base.cmd.Name()
}
func (base *expectedBase) args() []interface{} {
return base.cmd.Args()
}
func (base *expectedBase) SetErr(err error) {
base.err = err
}
func (base *expectedBase) error() error {
return base.err
}
func (base *expectedBase) RedisNil() {
base.redisNil = true
}
func (base *expectedBase) isRedisNil() bool {
return base.redisNil
}
func (base *expectedBase) isSetVal() bool {
return base.setVal
}
//---------------------------------
type ExpectedCommandsInfo struct {
expectedBase
val map[string]*redis.CommandInfo
}
func (cmd *ExpectedCommandsInfo) SetVal(val []*redis.CommandInfo) {
cmd.setVal = true
cmd.val = make(map[string]*redis.CommandInfo)
for _, v := range val {
cmd.val[v.Name] = v
}
}
func (cmd *ExpectedCommandsInfo) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedString struct {
expectedBase
val string
}
func (cmd *ExpectedString) SetVal(val string) {
cmd.setVal = true
cmd.val = val
}
func (cmd *ExpectedString) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedStatus struct {
expectedBase
val string
}
func (cmd *ExpectedStatus) SetVal(val string) {
cmd.setVal = true
cmd.val = val
}
func (cmd *ExpectedStatus) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedInt struct {
expectedBase
val int64
}
func (cmd *ExpectedInt) SetVal(val int64) {
cmd.setVal = true
cmd.val = val
}
func (cmd *ExpectedInt) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedBool struct {
expectedBase
val bool
}
func (cmd *ExpectedBool) SetVal(val bool) {
cmd.setVal = true
cmd.val = val
}
func (cmd *ExpectedBool) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedStringSlice struct {
expectedBase
val []string
}
func (cmd *ExpectedStringSlice) SetVal(val []string) {
cmd.setVal = true
cmd.val = make([]string, len(val))
copy(cmd.val, val)
}
func (cmd *ExpectedStringSlice) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedKeyValueSlice struct {
expectedBase
val []redis.KeyValue
}
func (cmd *ExpectedKeyValueSlice) SetVal(val []redis.KeyValue) {
cmd.setVal = true
cmd.val = make([]redis.KeyValue, len(val))
copy(cmd.val, val)
}
func (cmd *ExpectedKeyValueSlice) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedDuration struct {
expectedBase
val time.Duration
// precision time.Duration
}
func (cmd *ExpectedDuration) SetVal(val time.Duration) {
cmd.setVal = true
cmd.val = val
}
func (cmd *ExpectedDuration) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedSlice struct {
expectedBase
val []interface{}
}
func (cmd *ExpectedSlice) SetVal(val []interface{}) {
cmd.setVal = true
cmd.val = make([]interface{}, len(val))
copy(cmd.val, val)
}
func (cmd *ExpectedSlice) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedFloat struct {
expectedBase
val float64
}
func (cmd *ExpectedFloat) SetVal(val float64) {
cmd.setVal = true
cmd.val = val
}
func (cmd *ExpectedFloat) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedFloatSlice struct {
expectedBase
val []float64
}
func (cmd *ExpectedFloatSlice) SetVal(val []float64) {
cmd.setVal = true
cmd.val = make([]float64, len(val))
copy(cmd.val, val)
}
func (cmd *ExpectedFloatSlice) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedIntSlice struct {
expectedBase
val []int64
}
func (cmd *ExpectedIntSlice) SetVal(val []int64) {
cmd.setVal = true
cmd.val = make([]int64, len(val))
copy(cmd.val, val)
}
func (cmd *ExpectedIntSlice) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedScan struct {
expectedBase
page []string
cursor uint64
}
func (cmd *ExpectedScan) SetVal(page []string, cursor uint64) {
cmd.setVal = true
cmd.page = make([]string, len(page))
copy(cmd.page, page)
cmd.cursor = cursor
}
func (cmd *ExpectedScan) inflow(c redis.Cmder) {
inflow(c, "page", cmd.page)
inflow(c, "cursor", cmd.cursor)
}
// ------------------------------------------------------------
type ExpectedMapStringString struct {
expectedBase
val map[string]string
}
func (cmd *ExpectedMapStringString) SetVal(val map[string]string) {
cmd.setVal = true
cmd.val = make(map[string]string)
for k, v := range val {
cmd.val[k] = v
}
}
func (cmd *ExpectedMapStringString) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedStringStructMap struct {
expectedBase
val map[string]struct{}
}
func (cmd *ExpectedStringStructMap) SetVal(val []string) {
cmd.setVal = true
cmd.val = make(map[string]struct{})
for _, v := range val {
cmd.val[v] = struct{}{}
}
}
func (cmd *ExpectedStringStructMap) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedXMessageSlice struct {
expectedBase
val []redis.XMessage
}
func (cmd *ExpectedXMessageSlice) SetVal(val []redis.XMessage) {
cmd.setVal = true
cmd.val = make([]redis.XMessage, len(val))
copy(cmd.val, val)
}
func (cmd *ExpectedXMessageSlice) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedXStreamSlice struct {
expectedBase
val []redis.XStream
}
func (cmd *ExpectedXStreamSlice) SetVal(val []redis.XStream) {
cmd.setVal = true
cmd.val = make([]redis.XStream, len(val))
copy(cmd.val, val)
}
func (cmd *ExpectedXStreamSlice) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedXPending struct {
expectedBase
val *redis.XPending
}
func (cmd *ExpectedXPending) SetVal(val *redis.XPending) {
cmd.setVal = true
v := *val
cmd.val = &v
}
func (cmd *ExpectedXPending) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedXPendingExt struct {
expectedBase
val []redis.XPendingExt
}
func (cmd *ExpectedXPendingExt) SetVal(val []redis.XPendingExt) {
cmd.setVal = true
cmd.val = make([]redis.XPendingExt, len(val))
copy(cmd.val, val)
}
func (cmd *ExpectedXPendingExt) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ----------------------------------------------------------------------
type ExpectedXAutoClaim struct {
expectedBase
start string
val []redis.XMessage
}
func (cmd *ExpectedXAutoClaim) SetVal(val []redis.XMessage, start string) {
cmd.setVal = true
cmd.start = start
cmd.val = make([]redis.XMessage, len(val))
copy(cmd.val, val)
}
func (cmd *ExpectedXAutoClaim) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
inflow(c, "start", cmd.start)
}
// ------------------------------------------------------------
type ExpectedXAutoClaimJustID struct {
expectedBase
start string
val []string
}
func (cmd *ExpectedXAutoClaimJustID) SetVal(val []string, start string) {
cmd.setVal = true
cmd.start = start
cmd.val = make([]string, len(val))
copy(cmd.val, val)
}
func (cmd *ExpectedXAutoClaimJustID) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
inflow(c, "start", cmd.start)
}
// ------------------------------------------------------------
type ExpectedXInfoGroups struct {
expectedBase
val []redis.XInfoGroup
}
func (cmd *ExpectedXInfoGroups) SetVal(val []redis.XInfoGroup) {
cmd.setVal = true
cmd.val = make([]redis.XInfoGroup, len(val))
copy(cmd.val, val)
}
func (cmd *ExpectedXInfoGroups) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedXInfoStream struct {
expectedBase
val *redis.XInfoStream
}
func (cmd *ExpectedXInfoStream) SetVal(val *redis.XInfoStream) {
cmd.setVal = true
v := *val
cmd.val = &v
}
func (cmd *ExpectedXInfoStream) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedXInfoConsumers struct {
expectedBase
val []redis.XInfoConsumer
}
func (cmd *ExpectedXInfoConsumers) SetVal(val []redis.XInfoConsumer) {
cmd.setVal = true
cmd.val = make([]redis.XInfoConsumer, len(val))
copy(cmd.val, val)
}
func (cmd *ExpectedXInfoConsumers) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedXInfoStreamFull struct {
expectedBase
val *redis.XInfoStreamFull
}
func (cmd *ExpectedXInfoStreamFull) SetVal(val *redis.XInfoStreamFull) {
cmd.setVal = true
v := *val
cmd.val = &v
}
func (cmd *ExpectedXInfoStreamFull) inflow(c redis.Cmder) {
inflow(c, "val", cmd.val)
}
// ------------------------------------------------------------
type ExpectedZWithKey struct {
expectedBase
val *redis.ZWithKey
}
func (cmd *ExpectedZWithKey) SetVal(val *redis.ZWithKey) {
cmd.setVal = true