-
Notifications
You must be signed in to change notification settings - Fork 39
/
server_test.go
367 lines (300 loc) · 9.3 KB
/
server_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
package redeo
import (
"encoding/json"
"fmt"
"net"
"strings"
"testing"
"time"
. "github.com/bsm/ginkgo/v2"
. "github.com/bsm/gomega"
"github.com/bsm/redeo/v2/resp"
)
var _ = Describe("Server", func() {
var subject *Server
var (
pong = func(w resp.ResponseWriter, _ *resp.Command) { w.AppendInlineString("PONG") }
echo = func(w resp.ResponseWriter, cmd *resp.Command) {
if cmd.ArgN() != 1 {
w.AppendError(WrongNumberOfArgs(cmd.Name))
return
}
w.AppendBulk(cmd.Arg(0))
}
flush = func(w resp.ResponseWriter, _ *resp.Command) {
w.AppendOK()
w.Flush()
}
quit = func(w resp.ResponseWriter, cmd *resp.Command) {
if client := GetClient(cmd.Context()); client != nil {
client.Close()
w.AppendOK()
return
}
w.AppendNil()
}
stream = func(w resp.ResponseWriter, cmd *resp.CommandStream) {
if cmd.ArgN() != 1 {
w.AppendError(WrongNumberOfArgs(cmd.Name))
return
}
rd, err := cmd.Next()
if err != nil {
w.AppendErrorf("ERR unable to parse argument: %s", err.Error())
return
}
data := struct {
N int
S string
}{}
if err := json.NewDecoder(rd).Decode(&data); err != nil {
w.AppendErrorf("ERR unable to decode argument: %s", err.Error())
return
}
w.AppendInlineString(fmt.Sprintf("%s.%d", data.S, data.N))
w.AppendOK()
}
)
var runServer = func(srv *Server, fn func(net.Conn, *resp.RequestWriter, resp.ResponseReader)) {
lis, err := net.Listen("tcp", "127.0.0.1:0")
Expect(err).NotTo(HaveOccurred())
defer lis.Close()
// start listening
go func() { _ = srv.Serve(lis) }()
// connect client
cn, err := net.Dial("tcp", lis.Addr().String())
Expect(err).NotTo(HaveOccurred())
defer cn.Close()
fn(cn, resp.NewRequestWriter(cn), resp.NewResponseReader(cn))
}
BeforeEach(func() {
subject = NewServer(&Config{
Timeout: 100 * time.Millisecond,
})
subject.HandleFunc("pInG", pong)
subject.HandleFunc("echo", echo)
subject.HandleFunc("flush", flush)
subject.HandleFunc("quit", quit)
subject.HandleStreamFunc("stream", stream)
})
It("should register handlers", func() {
Expect(subject.cmds).To(HaveLen(5))
Expect(subject.cmds).To(HaveKey("ping"))
})
It("should serve", func() {
runServer(subject, func(cn net.Conn, cw *resp.RequestWriter, cr resp.ResponseReader) {
cw.WriteCmd("PING")
Expect(cw.Flush()).To(Succeed())
s, err := cr.ReadInlineString()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("PONG"))
info := subject.Info()
Expect(info.NumClients()).To(Equal(1))
Expect(info.TotalCommands()).To(Equal(int64(1)))
Expect(info.TotalConnections()).To(Equal(int64(1)))
Expect(info.ClientInfo()[0].LastCmd).To(Equal("ping"))
cw.WriteCmdString("echo", strings.Repeat("x", 10000))
Expect(cw.Flush()).To(Succeed())
s, err = cr.ReadBulkString()
Expect(err).NotTo(HaveOccurred())
Expect(len(s)).To(Equal(10000))
info = subject.Info()
Expect(info.NumClients()).To(Equal(1))
Expect(info.TotalCommands()).To(Equal(int64(2)))
Expect(info.TotalConnections()).To(Equal(int64(1)))
Expect(info.ClientInfo()[0].LastCmd).To(Equal("echo"))
})
})
It("should serve streams", func() {
runServer(subject, func(cn net.Conn, cw *resp.RequestWriter, cr resp.ResponseReader) {
cw.WriteCmdString("STREAM", `{"n":8,"s":"hello"}`)
Expect(cw.Flush()).To(Succeed())
s, err := cr.ReadInlineString()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("hello.8"))
})
})
It("should handle pipelines", func() {
runServer(subject, func(cn net.Conn, cw *resp.RequestWriter, cr resp.ResponseReader) {
cw.WriteCmd("PING")
cw.WriteCmd("PING")
cw.WriteCmd("PING")
Expect(cw.Flush()).To(Succeed())
for i := 0; i < 3; i++ {
s, err := cr.ReadInlineString()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("PONG"))
}
})
})
It("should handle invalid commands", func() {
runServer(subject, func(cn net.Conn, cw *resp.RequestWriter, cr resp.ResponseReader) {
cw.WriteCmd("nOOp")
Expect(cw.Flush()).To(Succeed())
s, err := cr.ReadError()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("ERR unknown command 'nOOp'"))
// connection should still be open
cw.WriteCmd("PING")
Expect(cw.Flush()).To(Succeed())
s, err = cr.ReadInlineString()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("PONG"))
})
})
It("should handle invalid commands in pipelines", func() {
runServer(subject, func(cn net.Conn, cw *resp.RequestWriter, cr resp.ResponseReader) {
cw.WriteCmd("PING")
cw.WriteCmd("BAD")
cw.WriteCmd("PING")
Expect(cw.Flush()).To(Succeed())
s, err := cr.ReadInlineString()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("PONG"))
s, err = cr.ReadError()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("ERR unknown command 'BAD'"))
s, err = cr.ReadInlineString()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("PONG"))
})
})
It("should handle client errors", func() {
runServer(subject, func(cn net.Conn, cw *resp.RequestWriter, cr resp.ResponseReader) {
cw.WriteCmd("ECHO")
Expect(cw.Flush()).To(Succeed())
s, err := cr.ReadError()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("ERR wrong number of arguments for 'ECHO' command"))
// connection should still be open
cw.WriteCmd("PING")
Expect(cw.Flush()).To(Succeed())
s, err = cr.ReadInlineString()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("PONG"))
})
})
It("should handle client errors in pipelines", func() {
runServer(subject, func(cn net.Conn, cw *resp.RequestWriter, cr resp.ResponseReader) {
cw.WriteCmd("PING")
cw.WriteCmd("echo")
cw.WriteCmd("PING")
Expect(cw.Flush()).To(Succeed())
s, err := cr.ReadInlineString()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("PONG"))
s, err = cr.ReadError()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("ERR wrong number of arguments for 'echo' command"))
s, err = cr.ReadInlineString()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("PONG"))
})
})
It("should handle protocol errors", func() {
runServer(subject, func(cn net.Conn, cw *resp.RequestWriter, cr resp.ResponseReader) {
_, err := cn.Write([]byte("*x\r\n"))
Expect(err).NotTo(HaveOccurred())
x, _ := cr.PeekType()
Expect(x).To(Equal(resp.TypeError))
s, err := cr.ReadError()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("ERR Protocol error: invalid multibulk length"))
// connection should still be open
cw.WriteCmd("PING")
Expect(cw.Flush()).To(Succeed())
s, err = cr.ReadInlineString()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("PONG"))
})
})
It("should handle protocol errors in pipelines", func() {
runServer(subject, func(cn net.Conn, cw *resp.RequestWriter, cr resp.ResponseReader) {
_, err := cn.Write([]byte("*1\r\n$4\r\nPING\r\n*1\r\n$x\r\nPING\r\n*1\r\n$4\r\nPING\r\n"))
Expect(err).NotTo(HaveOccurred())
s, err := cr.ReadInlineString()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("PONG"))
s, err = cr.ReadError()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("ERR Protocol error: invalid bulk length"))
s, err = cr.ReadInlineString()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("PONG"))
})
})
It("should close connections on EOF errors", func() {
runServer(subject, func(cn net.Conn, cw *resp.RequestWriter, cr resp.ResponseReader) {
_, err := cn.Write([]byte("*1\r\n$4\r\nPI"))
Expect(err).NotTo(HaveOccurred())
// connection should be closed
_, err = cr.PeekType()
Expect(err).To(MatchError("EOF"))
})
})
It("should allow user to close connections", func() {
runServer(subject, func(cn net.Conn, cw *resp.RequestWriter, cr resp.ResponseReader) {
cw.WriteCmd("QUIT")
Expect(cw.Flush()).To(Succeed())
s, err := cr.ReadInlineString()
Expect(err).NotTo(HaveOccurred())
Expect(s).To(Equal("OK"))
cw.WriteCmd("PING")
Expect(cw.Flush()).To(Succeed())
// connection should be closed
_, err = cr.PeekType()
Expect(err).To(MatchError("EOF"))
})
})
})
// --------------------------------------------------------------------
func BenchmarkServer_inline(b *testing.B) {
benchmarkServer(b, []byte(
"ECHO HELLO\r\n"+
"ECHO CRUEL\r\n"+
"ECHO WORLD\r\n",
), 24)
}
func BenchmarkServer_bulk(b *testing.B) {
benchmarkServer(b, []byte(
"*2\r\n$4\r\nECHO\r\n$5\r\nHELLO\r\n"+
"*2\r\n$4\r\nECHO\r\n$5\r\nCRUEL\r\n"+
"*2\r\n$4\r\nECHO\r\n$5\r\nWORLD\r\n",
), 24)
}
func benchmarkServer(b *testing.B, pipe []byte, expN int) {
lis, err := net.Listen("tcp", "127.0.0.1:0")
if err != nil {
b.Fatal(err)
}
defer lis.Close()
srv := NewServer(nil)
srv.HandleFunc("echo", func(w resp.ResponseWriter, cmd *resp.Command) {
if len(cmd.Args) != 1 {
w.AppendError(WrongNumberOfArgs(cmd.Name))
}
w.AppendInline(cmd.Arg(0))
})
// start listening
go func() {
defer GinkgoRecover()
Expect(srv.Serve(lis)).To(Succeed())
}()
conn, err := net.Dial("tcp", lis.Addr().String())
if err != nil {
b.Fatal(err)
}
defer conn.Close()
buf := make([]byte, 1024)
b.ResetTimer()
for i := 0; i < b.N; i++ {
if _, err := conn.Write(pipe); err != nil {
b.Fatal(err)
}
if n, err := conn.Read(buf); err != nil {
b.Fatal(err)
} else if n != expN {
b.Fatalf("expected response to be %d bytes long, not %d", expN, n)
}
}
}