-
Notifications
You must be signed in to change notification settings - Fork 113
/
action_test.go
545 lines (470 loc) · 12.6 KB
/
action_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
package radix
import (
"bufio"
"bytes"
"fmt"
. "testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"golang.org/x/xerrors"
"github.com/mediocregopher/radix/v3/resp"
"github.com/mediocregopher/radix/v3/resp/resp2"
)
func TestCmdAction(t *T) {
c := dial()
key, val := randStr(), randStr()
require.Nil(t, c.Do(Cmd(nil, "SET", key, val)))
var got string
require.Nil(t, c.Do(Cmd(&got, "GET", key)))
assert.Equal(t, val, got)
// because BITOP is weird
require.Nil(t, c.Do(Cmd(nil, "SET", key, val)))
bitopCmd := Cmd(nil, "BITOP", "AND", key+key, key, key)
assert.Equal(t, []string{key + key, key, key}, bitopCmd.Keys())
require.Nil(t, c.Do(bitopCmd))
var dstval string
require.Nil(t, c.Do(Cmd(&dstval, "GET", key+key)))
assert.Equal(t, val, dstval)
}
func TestCmdActionStreams(t *T) {
c := dial()
key, val := randStr(), randStr()
// talking about weird commands, here are XREAD and XREADGROUP
group := randStr()
consumer := randStr()
skeys := []string{"1", "1-", "1-1", "s1", ""} // make sure that we can handle empty and ID-like keys
for _, skey := range skeys {
require.Nil(t, c.Do(Cmd(nil, "DEL", skey)))
require.NoError(t, c.Do(Cmd(nil, "XADD", skey, "1-1", key, val)))
require.NoError(t, c.Do(Cmd(nil, "XGROUP", "CREATE", skey, group, "0-0")))
// so many possible arguments, so many tests...
for _, args := range [][]string{
{"XREAD", "STREAMS", skey, "0"},
{"XREAD", "BLOCK", "1", "STREAMS", skey, "0"},
{"XREAD", "COUNT", "1", "STREAMS", skey, "0"},
{"XREAD", "COUNT", "1", "BLOCK", "1", "STREAMS", skey, "0"},
{"XREADGROUP", "GROUP", group, consumer, "STREAMS", skey, ">"},
{"XREADGROUP", "GROUP", group, consumer, "BLOCK", "1", "STREAMS", skey, ">"},
{"XREADGROUP", "GROUP", group, consumer, "COUNT", "1", "STREAMS", skey, ">"},
{"XREADGROUP", "GROUP", group, consumer, "COUNT", "1", "BLOCK", "1", "STREAMS", skey, ">"},
{"XINFO", "CONSUMERS", skey, group},
{"XINFO", "GROUPS", skey},
{"XINFO", "STREAM", skey},
{"XGROUP", "DELCONSUMER", skey, group, consumer},
{"XGROUP", "DESTROY", skey, group},
{"XGROUP", "CREATE", skey, group, "$"},
{"XGROUP", "SETID", skey, group, "$"},
} {
xCmd := Cmd(nil, args[0], args[1:]...)
assert.Equal(t, []string{skey}, xCmd.Keys())
require.NoError(t, c.Do(xCmd))
}
}
// test that we correctly handle multiple keys. we just use 3 keys since it's shorter
for _, args := range [][]string{
{"XREAD", "STREAMS", skeys[0], skeys[1], skeys[2], "0", "0", "0"},
{"XREADGROUP", "GROUP", group, "test", "STREAMS", skeys[0], skeys[1], skeys[2], "0", ">", "0"},
} {
xCmd := Cmd(nil, args[0], args[1:]...)
assert.Equal(t, skeys[:3], xCmd.Keys())
require.NoError(t, c.Do(xCmd))
}
xCmd := Cmd(nil, "XINFO", "HELP")
assert.Equal(t, []string(nil), xCmd.Keys())
require.NoError(t, c.Do(xCmd))
}
func ExampleCmd() {
client, err := NewPool("tcp", "127.0.0.1:6379", 10) // or any other client
if err != nil {
panic(err)
}
if err := client.Do(Cmd(nil, "SET", "foo", "bar")); err != nil {
panic(err)
}
var fooVal string
if err := client.Do(Cmd(&fooVal, "GET", "foo")); err != nil {
panic(err)
}
fmt.Println(fooVal)
// Output: bar
}
func TestFlatCmdAction(t *T) {
c := dial()
key := randStr()
m := map[string]string{
randStr(): randStr(),
randStr(): randStr(),
randStr(): randStr(),
}
require.Nil(t, c.Do(FlatCmd(nil, "HMSET", key, m)))
var got map[string]string
require.Nil(t, c.Do(FlatCmd(&got, "HGETALL", key)))
assert.Equal(t, m, got)
}
func TestFlatCmdActionNil(t *T) {
c := dial()
defer c.Close()
key := randStr()
hashKey := randStr()
require.Nil(t, c.Do(FlatCmd(nil, "HMSET", key, hashKey, nil)))
var nilVal MaybeNil
require.Nil(t, c.Do(Cmd(&nilVal, "HGET", key, hashKey)))
require.False(t, nilVal.Nil)
require.False(t, nilVal.EmptyArray)
}
func TestFlatCmdActionEmpty(t *T) {
c := dial()
defer c.Close()
key := randStr()
var nilVal MaybeNil
require.Nil(t, c.Do(Cmd(&nilVal, "HGETALL", key)))
require.False(t, nilVal.Nil)
require.True(t, nilVal.EmptyArray)
}
func ExampleFlatCmd() {
client, err := NewPool("tcp", "127.0.0.1:6379", 10) // or any other client
if err != nil {
panic(err)
}
// performs "SET" "foo" "1"
err = client.Do(FlatCmd(nil, "SET", "foo", 1))
if err != nil {
panic(err)
}
// performs "SADD" "fooSet" "1" "2" "3"
err = client.Do(FlatCmd(nil, "SADD", "fooSet", []string{"1", "2", "3"}))
if err != nil {
panic(err)
}
// performs "HMSET" "foohash" "a" "1" "b" "2" "c" "3"
m := map[string]int{"a": 1, "b": 2, "c": 3}
err = client.Do(FlatCmd(nil, "HMSET", "fooHash", m))
if err != nil {
panic(err)
}
}
func TestEvalAction(t *T) {
getSet := NewEvalScript(1, `
local prev = redis.call("GET", KEYS[1])
redis.call("SET", KEYS[1], ARGV[1])
return prev
-- `+randStr() /* so there's an eval everytime */ +`
`)
c := dial()
key := randStr()
val1, val2, val3 := randStr(), randStr(), randStr()
{
var res string
err := c.Do(getSet.Cmd(&res, key, val1))
require.Nil(t, err, "%s", err)
assert.Empty(t, res)
}
{
var res string
err := c.Do(getSet.Cmd(&res, key, val2))
require.Nil(t, err)
assert.Equal(t, val1, res)
}
{
var res string
err := c.Do(getSet.FlatCmd(&res, []string{key}, val3))
require.Nil(t, err)
assert.Equal(t, val2, res)
}
}
func TestEvalActionWithInterfaceRcv(t *T) {
simpleScript := NewEvalScript(0, `
return 123
-- `+randStr() /* so there's an eval everytime */ +`
`)
c := dial()
{
var res interface{}
err := c.Do(simpleScript.Cmd(&res))
require.Nil(t, err)
assert.Equal(t, int64(123), res)
}
}
func ExampleEvalScript() {
// set as a global variable, this script is equivalent to the builtin GETSET
// redis command
var getSet = NewEvalScript(1, `
local prev = redis.call("GET", KEYS[1])
redis.call("SET", KEYS[1], ARGV[1])
return prev
`)
client, err := NewPool("tcp", "127.0.0.1:6379", 10) // or any other client
if err != nil {
// handle error
}
key := "someKey"
var prevVal string
if err := client.Do(getSet.Cmd(&prevVal, key, "myVal")); err != nil {
// handle error
}
fmt.Printf("value of key %q used to be %q\n", key, prevVal)
}
func TestPipelineAction(t *T) {
c := dial()
for i := 0; i < 10; i++ {
ss := []string{
randStr(),
randStr(),
randStr(),
}
out := make([]string, len(ss))
var cmds []CmdAction
for i := range ss {
cmds = append(cmds, Cmd(&out[i], "ECHO", ss[i]))
}
require.Nil(t, c.Do(Pipeline(cmds...)))
for i := range ss {
assert.Equal(t, ss[i], out[i])
}
}
t.Run("drain on decodeErr", func(t *T) {
// Setup
k1 := randStr()
k2 := randStr()
kvs := map[string]string{
k1: randStr(),
k2: randStr(),
}
for k, v := range kvs {
require.NoError(t, c.Do(Cmd(nil, "SET", k, v)))
}
var intRcv int
var strRcv string
pipeline := Pipeline(
Cmd(&intRcv, "GET", k1),
Cmd(nil, "GET", k2),
)
err := c.Do(pipeline)
require.Error(t, err)
require.Contains(t, err.Error(), "failed to decode")
err = c.Do(Cmd(&strRcv, "GET", k1))
require.NoError(t, err)
assert.Equal(t, kvs[k1], strRcv)
})
}
func ExamplePipeline() {
client, err := NewPool("tcp", "127.0.0.1:6379", 10) // or any other client
if err != nil {
// handle error
}
var fooVal string
p := Pipeline(
FlatCmd(nil, "SET", "foo", 1),
Cmd(&fooVal, "GET", "foo"),
)
if err := client.Do(p); err != nil {
// handle error
}
fmt.Printf("fooVal: %q\n", fooVal)
// Output: fooVal: "1"
}
func TestWithConnAction(t *T) {
c := dial()
k, v := randStr(), 10
err := c.Do(WithConn(k, func(conn Conn) error {
require.Nil(t, conn.Do(FlatCmd(nil, "SET", k, v)))
var out int
require.Nil(t, conn.Do(Cmd(&out, "GET", k)))
assert.Equal(t, v, out)
return nil
}))
require.Nil(t, err)
}
func ExampleWithConn() {
client, err := NewPool("tcp", "127.0.0.1:6379", 10) // or any other client
if err != nil {
// handle error
}
// This example retrieves the current integer value of `key` and sets its
// new value to be the increment of that, all using the same connection
// instance. NOTE that it does not do this atomically like the INCR command
// would.
key := "someKey"
err = client.Do(WithConn(key, func(conn Conn) error {
var curr int
if err := conn.Do(Cmd(&curr, "GET", key)); err != nil {
return err
}
curr++
return conn.Do(FlatCmd(nil, "SET", key, curr))
}))
if err != nil {
// handle error
}
}
func ExampleWithConn_transaction() {
client, err := NewPool("tcp", "127.0.0.1:6379", 10) // or any other client
if err != nil {
// handle error
}
// This example retrieves the current value of `key` and then sets a new
// value on it in an atomic transaction.
key := "someKey"
var prevVal string
err = client.Do(WithConn(key, func(c Conn) error {
// Begin the transaction with a MULTI command
if err := c.Do(Cmd(nil, "MULTI")); err != nil {
return err
}
// If any of the calls after the MULTI call error it's important that
// the transaction is discarded. This isn't strictly necessary if the
// only possible error is a network error, as the connection would be
// closed by the client anyway.
var err error
defer func() {
if err != nil {
// The return from DISCARD doesn't matter. If it's an error then
// it's a network error and the Conn will be closed by the
// client.
_ = c.Do(Cmd(nil, "DISCARD"))
}
}()
// queue up the transaction's commands
if err = c.Do(Cmd(nil, "GET", key)); err != nil {
return err
}
if err = c.Do(Cmd(nil, "SET", key, "someOtherValue")); err != nil {
return err
}
// execute the transaction, capturing the result in a Tuple. We only
// care about the first element (the result from GET), so we discard the
// second by setting nil.
result := Tuple{&prevVal, nil}
return c.Do(Cmd(&result, "EXEC"))
}))
if err != nil {
// handle error
}
fmt.Printf("the value of key %q was %q\n", key, prevVal)
}
func TestMaybeNil(t *T) {
mntests := []struct {
b string
isNil bool
isEmpty bool
}{
{b: "$-1\r\n", isNil: true},
{b: "*-1\r\n", isNil: true},
{b: "+foo\r\n"},
{b: "-\r\n"},
{b: "-foo\r\n"},
{b: ":5\r\n"},
{b: ":0\r\n"},
{b: ":-5\r\n"},
{b: "$0\r\n\r\n"},
{b: "$3\r\nfoo\r\n"},
{b: "$8\r\nfoo\r\nbar\r\n"},
{b: "*2\r\n:1\r\n:2\r\n"},
{b: "*0\r\n", isEmpty: true},
}
for _, mnt := range mntests {
buf := bytes.NewBufferString(mnt.b)
{
var rm resp2.RawMessage
mn := MaybeNil{Rcv: &rm}
require.Nil(t, mn.UnmarshalRESP(bufio.NewReader(buf)))
switch {
case mnt.isNil:
assert.True(t, mn.Nil)
case mnt.isEmpty:
assert.True(t, mn.EmptyArray)
assert.Equal(t, mnt.b, string(rm))
default:
assert.Equal(t, mnt.b, string(rm))
}
}
}
}
func ExampleMaybeNil() {
client, err := NewPool("tcp", "127.0.0.1:6379", 10) // or any other client
if err != nil {
// handle error
}
var rcv int64
mn := MaybeNil{Rcv: &rcv}
if err := client.Do(Cmd(&mn, "GET", "foo")); err != nil {
// handle error
} else if mn.Nil {
fmt.Println("rcv is nil")
} else {
fmt.Printf("rcv is %d\n", rcv)
}
}
func TestTuple(t *T) {
intPtr := func(i int) *int { return &i }
strPtr := func(s string) *string { return &s }
tests := []struct {
in string
into Tuple
exp Tuple
expErr bool
}{
{
in: "*0\r\n",
into: Tuple{},
exp: Tuple{},
},
{
in: "*0\r\n",
into: Tuple{new(int)},
expErr: true,
},
{
in: "*1\r\n:1\r\n",
into: Tuple{new(int)},
exp: Tuple{intPtr(1)},
},
{
in: "*2\r\n:1\r\n$3\r\nfoo\r\n",
into: Tuple{new(int), new(string)},
exp: Tuple{intPtr(1), strPtr("foo")},
},
{
in: "*2\r\n:1\r\n$3\r\nfoo\r\n",
into: Tuple{new(int), new(string), new(string)},
expErr: true,
},
{
in: "*2\r\n:1\r\n$3\r\nfoo\r\n",
into: Tuple{new(int), new(int)},
expErr: true,
},
}
for i, test := range tests {
t.Run(fmt.Sprint(i), func(t *T) {
t.Logf("in:%q", test.in)
buf := bytes.NewBufferString(test.in)
br := bufio.NewReader(buf)
defer func() { assert.Empty(t, buf.Bytes()) }()
defer func() { assert.Zero(t, br.Buffered()) }()
err := test.into.UnmarshalRESP(br)
if test.expErr {
assert.Error(t, err)
assert.True(t, xerrors.As(err, new(resp.ErrDiscarded)))
return
}
assert.Equal(t, test.exp, test.into)
})
}
}
var benchCmdActionKeys []string // global variable used to store the action keys in benchmarks
func BenchmarkCmdActionKeys(b *B) {
for i := 0; i < b.N; i++ {
benchCmdActionKeys = Cmd(nil, "GET", "a").Keys()
}
}
func BenchmarkFlatCmdActionKeys(b *B) {
for i := 0; i < b.N; i++ {
benchCmdActionKeys = FlatCmd(nil, "GET", "a").Keys()
}
}
func BenchmarkWithConnKeys(b *B) {
for i := 0; i < b.N; i++ {
benchCmdActionKeys = WithConn("a", func(Conn) error { return nil }).Keys()
}
}