Skip to content

Commit 890a1c8

Browse files
authored
Merge pull request #375 from Jahaja/xadd-nomkstream
Support for the NOMKSTREAM option for XADD
2 parents 5abdf8a + 73e4e17 commit 890a1c8

File tree

3 files changed

+34
-1
lines changed

3 files changed

+34
-1
lines changed

cmd_stream.go

+9-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ func (m *Miniredis) cmdXadd(c *server.Peer, cmd string, args []string) {
5050
withTx(m, c, func(c *server.Peer, ctx *connCtx) {
5151
maxlen := -1
5252
minID := ""
53+
makeStream := true
54+
if strings.ToLower(args[0]) == "nomkstream" {
55+
args = args[1:]
56+
makeStream = false
57+
}
5358
if strings.ToLower(args[0]) == "maxlen" {
5459
args = args[1:]
5560
// we don't treat "~" special
@@ -101,7 +106,10 @@ func (m *Miniredis) cmdXadd(c *server.Peer, cmd string, args []string) {
101106
return
102107
}
103108
if s == nil {
104-
// TODO: NOMKSTREAM
109+
if !makeStream {
110+
c.WriteNull()
111+
return
112+
}
105113
s, _ = db.newStream(key)
106114
}
107115

cmd_stream_test.go

+15
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,21 @@ func TestStreamAdd(t *testing.T) {
187187
)
188188
})
189189

190+
t.Run("XADD NOMKSTREAM", func(t *testing.T) {
191+
mustDo(t, c,
192+
"XADD", "reallynosuchkey", "NOMKSTREAM", "*", "one", "1",
193+
proto.Nil,
194+
)
195+
mustDo(t, c,
196+
"XADD", "reallynosuchkey", "NOMKSTREAM", "MINID", "1672545848004-0", "*", "one", "1",
197+
proto.Nil,
198+
)
199+
mustDo(t, c,
200+
"XADD", "reallynosuchkey", "NOMKSTREAM", "MAXLEN", "~", "10", "*", "one", "1",
201+
proto.Nil,
202+
)
203+
})
204+
190205
t.Run("error cases", func(t *testing.T) {
191206
// Wrong type of key
192207
mustOK(t, c,

integration/stream_test.go

+10
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ func TestStream(t *testing.T) {
2525
"18446744073709551000-0",
2626
"name", "Earth",
2727
)
28+
c.Do("XADD",
29+
"reallynosuchkey",
30+
"NOMKSTREAM",
31+
"*",
32+
"name", "Earth",
33+
)
2834
c.Error("ID specified", "XADD",
2935
"planets",
3036
"18446744073709551000-0", // <-- duplicate
@@ -125,6 +131,10 @@ func TestStream(t *testing.T) {
125131
c.Do("MULTI")
126132
c.Do("XADD", "planets", "MAXLEN", "four", "*", "name", "Mercury")
127133
c.Do("EXEC")
134+
135+
c.Do("MULTI")
136+
c.Do("XADD", "reallynosuchkey", "NOMKSTREAM", "MAXLEN", "four", "*", "name", "Mercury")
137+
c.Do("EXEC")
128138
})
129139
})
130140

0 commit comments

Comments
 (0)