-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzmq2mqtt_test.go
506 lines (388 loc) · 11.3 KB
/
zmq2mqtt_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
package main
import (
"context"
"fmt"
"path/filepath"
"testing"
"time"
"github.com/stretchr/testify/assert"
"go.uber.org/zap"
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/container"
"github.com/docker/docker/api/types/mount"
"github.com/docker/docker/client"
"github.com/docker/go-connections/nat"
mqtt "github.com/eclipse/paho.mqtt.golang"
zmq "github.com/pebbe/zmq4"
"github.com/tkanos/gonfig"
)
const (
MQTT_DOCKER_IMG_NAME = "eclipse-mosquitto"
BENCHMARK_NUMBER_OF_MESSAGES = 1000
)
func TestMqttConnectPublish(t *testing.T) {
ctr_id, err := initMqtt()
defer removeMqtt(ctr_id)
if !assert.NoError(t, err) {
assert.FailNowf(t, "Error in setup", "Error starting MQTT: %v", err)
}
logger, config, zmq_socket, err := setup()
if !assert.NoError(t, err) {
assert.FailNowf(t, "Error in setup: %v", "Setup completed", err)
}
cancel := make(chan bool)
go forwarder_thread(logger, config, cancel)
defer func() {
//close forwarder thread
cancel <- true
}()
var message_received bool = false
//send message through listener, make sure it is published to MQTT
opts := mqtt.NewClientOptions().AddBroker(config.MqttServer).SetClientID("test client")
opts.SetKeepAlive(60 * time.Second)
opts.SetPingTimeout(10 * time.Second)
opts.SetMaxReconnectInterval(30 * time.Second)
client := mqtt.NewClient(opts)
if token := client.Connect(); token.Wait() && token.Error() != nil {
assert.FailNowf(t, "Error connecting to MQTT %v", "Setup completed", token.Error())
}
defer client.Disconnect(250)
//subscribe to recognition topic
topic := "testtopic"
token := client.Subscribe(topic, 0, func(client mqtt.Client, msg mqtt.Message) {
fmt.Printf("Received message: %s from topic: %s\n", msg.Payload(), msg.Topic())
message_received = true
})
token.Wait()
//publish message through zmq
zmq_socket.Send("testtopic test message", 0)
timeout := time.After(15 * time.Second)
//wait for message received with timeout
for {
select {
case <-timeout:
assert.FailNow(t, "Message isn't received in MQTT")
default:
if message_received {
return
}
}
}
}
func TestMqttPublishAfterReconnect(t *testing.T) {
ctr_id, err := initMqtt()
defer removeMqtt(ctr_id)
if !assert.NoError(t, err) {
assert.FailNowf(t, "Error in setup", "Error starting MQTT: %v", err)
}
logger, config, zmq_socket, err := setup()
if !assert.NoError(t, err) {
assert.FailNowf(t, "Error in setup: %v", "Setup completed", err)
}
cancel := make(chan bool)
go forwarder_thread(logger, config, cancel)
defer func() {
//close forwarder thread
cancel <- true
}()
var message_received bool = false
opts := mqtt.NewClientOptions().AddBroker(config.MqttServer).SetClientID("test client")
opts.SetKeepAlive(5 * time.Second)
opts.SetPingTimeout(1 * time.Second)
opts.SetMaxReconnectInterval(30 * time.Second)
opts.SetAutoReconnect(true)
opts.SetCleanSession(false)
client := mqtt.NewClient(opts)
if token := client.Connect(); token.Wait() && token.Error() != nil {
assert.FailNowf(t, "Error connecting to MQTT %v", "Setup completed", token.Error())
}
defer client.Disconnect(250)
//subscribe to recognition topic
topic := "testtopic"
token := client.Subscribe(topic, 1, func(client mqtt.Client, msg mqtt.Message) {
fmt.Printf("Received message: %s from topic: %s\n", msg.Payload(), msg.Topic())
message_received = true
})
token.Wait()
//stop MQTT
if err = stopMqtt(ctr_id); !assert.NoError(t, err) {
assert.FailNowf(t, "Error in stopping MQTT container: %v", "Stopping MQTT", err)
return
}
//start MQTT
if err = startMqtt(ctr_id); !assert.NoError(t, err) {
assert.FailNowf(t, "Error in starting MQTT container: %v", "Starting MQTT", err)
return
}
//publish message through zmq while MQTT is stopped
zmq_socket.Send("testtopic test message", 0)
//wait for message received with timeout
timeout := time.After(15 * time.Second)
for {
select {
case <-timeout:
assert.FailNow(t, "Message isn't received in MQTT")
return
default:
if message_received {
return
}
}
}
}
func TestMqttPublishDuringReconnect(t *testing.T) {
ctr_id, err := initMqtt()
defer removeMqtt(ctr_id)
if !assert.NoError(t, err) {
assert.FailNowf(t, "Error in setup", "Error starting MQTT: %v", err)
return
}
logger, config, zmq_socket, err := setup()
if !assert.NoError(t, err) {
assert.FailNowf(t, "Error in setup: %v", "Setup completed", err)
return
}
cancel := make(chan bool)
go forwarder_thread(logger, config, cancel)
defer func() {
//close forwarder thread
cancel <- true
}()
var message_received bool = false
opts := mqtt.NewClientOptions().AddBroker(config.MqttServer).SetClientID("test client")
opts.SetKeepAlive(5 * time.Second)
opts.SetPingTimeout(1 * time.Second)
opts.SetMaxReconnectInterval(30 * time.Second)
opts.SetAutoReconnect(true)
opts.SetCleanSession(false)
client := mqtt.NewClient(opts)
if token := client.Connect(); token.Wait() && token.Error() != nil {
assert.FailNowf(t, "Error connecting to MQTT %v", "Setup completed", token.Error())
return
}
defer client.Disconnect(250)
//subscribe to recognition topic
topic := "testtopic"
token := client.Subscribe(topic, 1, func(client mqtt.Client, msg mqtt.Message) {
fmt.Printf("Received message: %s from topic: %s\n", msg.Payload(), msg.Topic())
message_received = true
})
token.Wait()
//stop MQTT
if err = stopMqtt(ctr_id); !assert.NoError(t, err) {
assert.FailNowf(t, "Error in stopping MQTT container: %v", "Stopping MQTT", err)
return
}
//publish message through zmq while MQTT is stopped
zmq_socket.Send("testtopic test message", 0)
//start MQTT
if err = startMqtt(ctr_id); !assert.NoError(t, err) {
assert.FailNowf(t, "Error in starting MQTT container: %v", "Starting MQTT", err)
return
}
timeout := time.After(15 * time.Second)
//wait for message received with timeout
for {
select {
case <-timeout:
assert.FailNow(t, "Message isn't received in MQTT")
return
default:
if message_received {
return
}
}
}
}
func TestLatency(t *testing.T) {
//Test latency by first measuring average latency sending 100 messages to MQTT directly
//After that, sending 100 messages through ZMQ->MQTT bridge
ctr_id, err := initMqtt()
defer removeMqtt(ctr_id)
if !assert.NoError(t, err) {
assert.FailNowf(t, "Error in setup", "Error starting MQTT: %v", err)
return
}
logger, config, zmq_socket, err := setup()
if !assert.NoError(t, err) {
assert.FailNowf(t, "Error in setup: %v", "Setup completed", err)
return
}
cancel := make(chan bool)
go forwarder_thread(logger, config, cancel)
defer func() {
//close forwarder thread
cancel <- true
}()
opts := mqtt.NewClientOptions().AddBroker(config.MqttServer).SetClientID("test client")
opts.SetKeepAlive(60 * time.Second)
opts.SetPingTimeout(10 * time.Second)
opts.SetMaxReconnectInterval(30 * time.Second)
client := mqtt.NewClient(opts)
if token := client.Connect(); token.Wait() && token.Error() != nil {
assert.FailNowf(t, "Error connecting to MQTT %v", "Setup completed", token.Error())
}
messages_received := 0
//subscribe to recognition topic
topic := "testtopic"
token := client.Subscribe(topic, 0, func(client mqtt.Client, msg mqtt.Message) {
//fmt.Printf("Received message: %s from topic: %s\n", msg.Payload(), msg.Topic())
messages_received++
})
token.Wait()
starttime := time.Now()
for i := 0; i < BENCHMARK_NUMBER_OF_MESSAGES; i++ {
client.Publish("testtopic", 1, false, "Test Message")
}
timeout := time.After(5 * time.Second)
//wait for message received with timeout
for messages_received < BENCHMARK_NUMBER_OF_MESSAGES {
select {
case <-timeout:
assert.FailNow(t, "Timeout: message isn't received in MQTT")
return
default:
}
}
duration_mqtt := time.Since(starttime)
//now send messages through ZMQ->MQTT bridge
messages_received = 0
starttime = time.Now()
for i := 0; i < BENCHMARK_NUMBER_OF_MESSAGES; i++ {
zmq_socket.Send("testtopic test message", 0)
}
timeout = time.After(5 * time.Second)
//wait for message received with timeout
for messages_received < BENCHMARK_NUMBER_OF_MESSAGES {
select {
case <-timeout:
assert.FailNow(t, "Message isn't received in MQTT")
return
default:
}
}
duration_zmq := time.Since(starttime)
fmt.Printf("Benchmark latency: %f, ms\n", duration_mqtt.Seconds()/float64(BENCHMARK_NUMBER_OF_MESSAGES)*1000)
fmt.Printf("ZMQ->MQTT latency: %f, ms\n", duration_zmq.Seconds()/float64(BENCHMARK_NUMBER_OF_MESSAGES)*1000)
}
func setup() (*zap.SugaredLogger, *Configuration, *zmq.Socket, error) {
fmt.Println("in setup")
//load configuration
configuration := Configuration{}
err := gonfig.GetConf("config/config.test.json", &configuration)
if err != nil {
fmt.Println(err)
return nil, nil, nil, err
}
//setup logging
logger := zap.Must(configuration.LoggerConfig.Build())
defer logger.Sync()
if err != nil {
fmt.Println(err)
return nil, nil, nil, err
}
sugar := logger.Sugar()
//setup listener socket
listener, err := zmq.NewSocket(zmq.PAIR)
if err != nil {
fmt.Println(err)
return nil, nil, nil, err
}
err = listener.Connect("inproc://pipe")
if err != nil {
fmt.Println(err)
return nil, nil, nil, err
}
return sugar, &configuration, listener, nil
}
func initMqtt() (string, error) {
ctr_idx := ""
ctx := context.Background()
cli, err := client.NewClientWithOpts(client.FromEnv, client.WithAPIVersionNegotiation())
if err != nil {
return ctr_idx, err
}
defer cli.Close()
mosquitto_cfg_path, err := filepath.Abs("test_data/mosquitto/mosquitto.config")
if err != nil {
return ctr_idx, err
}
ctr_config := &container.Config{
Image: MQTT_DOCKER_IMG_NAME,
ExposedPorts: nat.PortSet{
"1883/tcp": struct{}{},
"9001/tcp": struct{}{},
},
Volumes: map[string]struct{}{},
}
host_config := &container.HostConfig{
PortBindings: nat.PortMap{
"1883/tcp": []nat.PortBinding{
{
HostIP: "0.0.0.0",
HostPort: "1883",
},
},
"9001/tcp": []nat.PortBinding{
{
HostIP: "0.0.0.0",
HostPort: "9001",
},
},
},
Mounts: []mount.Mount{
{
Type: mount.TypeBind,
Source: mosquitto_cfg_path,
Target: "/mosquitto/config/mosquitto.conf",
},
},
}
resp, err := cli.ContainerCreate(ctx, ctr_config, host_config, nil, nil, "")
if err != nil {
return resp.ID, err
}
if err := cli.ContainerStart(ctx, resp.ID, types.ContainerStartOptions{}); err != nil {
return resp.ID, err
}
return resp.ID, nil
}
func startMqtt(id string) error {
ctx := context.Background()
cli, err := client.NewClientWithOpts(client.FromEnv, client.WithAPIVersionNegotiation())
if err != nil {
return err
}
defer cli.Close()
if err := cli.ContainerUnpause(ctx, id); err != nil {
return err
}
time.Sleep(5 * time.Second)
return nil
}
func stopMqtt(id string) error {
ctx := context.Background()
cli, err := client.NewClientWithOpts(client.FromEnv, client.WithAPIVersionNegotiation())
if err != nil {
return err
}
defer cli.Close()
if err := cli.ContainerPause(ctx, id); err != nil {
return err
}
return nil
}
func removeMqtt(id string) error {
ctx := context.Background()
cli, err := client.NewClientWithOpts(client.FromEnv, client.WithAPIVersionNegotiation())
if err != nil {
return err
}
defer cli.Close()
err = cli.ContainerStop(ctx, id, container.StopOptions{})
if err != nil {
return err
}
cli.ContainerRemove(ctx, id, types.ContainerRemoveOptions{})
return nil
}