forked from elliotchance/redismock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
s_cmd.go
139 lines (104 loc) Β· 3.45 KB
/
s_cmd.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
package redismock
import "github.com/go-redis/redis/v7"
func (m *ClientMock) SAdd(key string, members ...interface{}) *redis.IntCmd {
if !m.hasStub("SAdd") {
return m.client.SAdd(key, members...)
}
return m.Called(key, members).Get(0).(*redis.IntCmd)
}
func (m *ClientMock) SCard(key string) *redis.IntCmd {
if !m.hasStub("SCard") {
return m.client.SCard(key)
}
return m.Called(key).Get(0).(*redis.IntCmd)
}
func (m *ClientMock) SDiff(keys ...string) *redis.StringSliceCmd {
if !m.hasStub("SDiff") {
return m.client.SDiff(keys...)
}
return m.Called(keys).Get(0).(*redis.StringSliceCmd)
}
func (m *ClientMock) SDiffStore(destination string, keys ...string) *redis.IntCmd {
if !m.hasStub("SDiffStore") {
return m.client.SDiffStore(destination, keys...)
}
return m.Called(destination, keys).Get(0).(*redis.IntCmd)
}
func (m *ClientMock) SInter(keys ...string) *redis.StringSliceCmd {
if !m.hasStub("SInter") {
return m.client.SInter(keys...)
}
return m.Called(keys).Get(0).(*redis.StringSliceCmd)
}
func (m *ClientMock) SInterStore(destination string, keys ...string) *redis.IntCmd {
if !m.hasStub("SInterStore") {
return m.client.SInterStore(destination, keys...)
}
return m.Called(destination, keys).Get(0).(*redis.IntCmd)
}
func (m *ClientMock) SIsMember(key string, member interface{}) *redis.BoolCmd {
if !m.hasStub("SIsMember") {
return m.client.SIsMember(key, member)
}
return m.Called(key, member).Get(0).(*redis.BoolCmd)
}
func (m *ClientMock) SMembers(key string) *redis.StringSliceCmd {
if !m.hasStub("SMembers") {
return m.client.SMembers(key)
}
return m.Called(key).Get(0).(*redis.StringSliceCmd)
}
func (m *ClientMock) SMembersMap(key string) *redis.StringStructMapCmd {
if !m.hasStub("SMembersMap") {
return m.client.SMembersMap(key)
}
return m.Called(key).Get(0).(*redis.StringStructMapCmd)
}
func (m *ClientMock) SMove(source, destination string, member interface{}) *redis.BoolCmd {
if !m.hasStub("SMove") {
return m.client.SMove(source, destination, member)
}
return m.Called(source, destination, member).Get(0).(*redis.BoolCmd)
}
func (m *ClientMock) SPop(key string) *redis.StringCmd {
if !m.hasStub("SPop") {
return m.client.SPop(key)
}
return m.Called(key).Get(0).(*redis.StringCmd)
}
func (m *ClientMock) SPopN(key string, count int64) *redis.StringSliceCmd {
if !m.hasStub("SPopN") {
return m.client.SPopN(key, count)
}
return m.Called(key, count).Get(0).(*redis.StringSliceCmd)
}
func (m *ClientMock) SRandMember(key string) *redis.StringCmd {
if !m.hasStub("SRandMember") {
return m.client.SRandMember(key)
}
return m.Called(key).Get(0).(*redis.StringCmd)
}
func (m *ClientMock) SRandMemberN(key string, count int64) *redis.StringSliceCmd {
if !m.hasStub("SRandMemberN") {
return m.client.SRandMemberN(key, count)
}
return m.Called(key, count).Get(0).(*redis.StringSliceCmd)
}
func (m *ClientMock) SRem(key string, members ...interface{}) *redis.IntCmd {
if !m.hasStub("SRem") {
return m.client.SRem(key, members...)
}
return m.Called(key, members).Get(0).(*redis.IntCmd)
}
func (m *ClientMock) SUnion(keys ...string) *redis.StringSliceCmd {
if !m.hasStub("SUnion") {
return m.client.SUnion(keys...)
}
return m.Called(keys).Get(0).(*redis.StringSliceCmd)
}
func (m *ClientMock) SUnionStore(destination string, keys ...string) *redis.IntCmd {
if !m.hasStub("SUnionStore") {
return m.client.SUnionStore(destination, keys...)
}
return m.Called(destination, keys).Get(0).(*redis.IntCmd)
}