-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtest.js
231 lines (182 loc) · 5.85 KB
/
test.js
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
'use strict'
const { test } = require('tap')
const mqtt = require('mqtt')
const aedes = require('aedes')
const stats = require('./stats')
const net = require('net')
const QlobberTrue = require('qlobber').QlobberTrue
const matcher = new QlobberTrue({ wildcard_one: '+', wildcard_some: '#' })
const port = 1889
let clients = 0
let server
function setup () {
const instance = aedes()
stats(instance)
if (server && server.listening) {
server.close()
}
server = net.createServer(instance.handle)
server.listen(port)
return {
instance,
server
}
}
function connect (s, opts = {}) {
s = Object.create(s)
const client = mqtt.connect({
port,
host: '127.0.0.1',
clean: true,
clientId: opts.clientId || 'my-client-' + clients++,
keepalive: opts.keepAlive || 200
})
client.on('end', function () {
if (s.instance.connectedClients > 1) {
return
}
s.instance.close()
s.server.close()
})
return client
}
function checkTopic (actual, expected) {
matcher.clear()
matcher.add(expected)
const bool = matcher.match(expected, actual)
matcher.clear()
return bool
}
test('Connect a client and subscribe to get total number of clients', function (t) {
t.plan(2)
const sysTopic = '$SYS/+/clients/total'
const subscriber = connect(setup())
subscriber.subscribe(sysTopic)
subscriber.on('message', function (topic, message) {
t.ok(checkTopic(topic, sysTopic))
t.equal('1', message.toString(), 'clients connected')
subscriber.end()
})
})
test('Connect a client and subscribe to get maximum number of clients', function (t) {
t.plan(2)
const sysTopic = '$SYS/+/clients/maximum'
const s = setup()
const subscriber = connect(s, { clientId: 'subscriber' })
const additionalClient = connect(s, { clientId: 'client' })
subscriber.subscribe(sysTopic)
subscriber.on('message', function (topic, message) {
t.ok(checkTopic(topic, sysTopic))
t.equal('2', message.toString(), 'clients connected')
subscriber.end()
additionalClient.end()
})
})
test('Connect a client and subscribe to get current broker time', function (t) {
t.plan(2)
const sysTopic = '$SYS/+/time'
const s = setup()
const subscriber = connect(s, { clientId: 'subscriber' })
const additionalClient = connect(s, { clientId: 'client' })
subscriber.subscribe(sysTopic)
subscriber.on('message', function (topic, message) {
t.ok(checkTopic(topic, sysTopic))
t.equal(s.instance.stats.time.toISOString(), message.toString(), 'current broker time')
subscriber.end()
additionalClient.end()
})
})
test('Connect a client and subscribe to get broker up-time', function (t) {
t.plan(2)
const sysTopic = '$SYS/+/uptime'
const s = setup()
const subscriber = connect(s)
subscriber.subscribe(sysTopic)
subscriber.on('message', function (topic, message) {
t.ok(checkTopic(topic, sysTopic))
const seconds = Math.round((s.instance.stats.time - s.instance.stats.started) / 1000)
t.equal(seconds.toString(), message.toString(), 'Broker uptime')
subscriber.end()
})
})
test('Connect a client and subscribe to get the number of published messages', function (t) {
t.plan(2)
const sysTopic = '$SYS/+/messages/publish/sent'
const publisher = connect(setup())
publisher.subscribe(sysTopic, onSub)
function onSub () {
publisher.publish('publishing', 'hey there')
publisher.publish('publishing', 'hey there')
}
publisher.on('message', function (topic, message) {
t.ok(checkTopic(topic, sysTopic))
t.equal('2', message.toString(), 'number of published messages')
publisher.end()
})
})
test('Connect a client and and subscribe to get current heap usage', function (t) {
t.plan(2)
const sysTopic = '$SYS/+/memory/heap/current'
const subscriber = connect(setup())
subscriber.subscribe(sysTopic)
subscriber.on('message', function (topic, message) {
t.ok(checkTopic(topic, sysTopic))
t.pass(message.toString(), 'bytes of heap used currently')
subscriber.end()
})
})
test('Connect a client and subscribe to get maximum heap usage', function (t) {
t.plan(2)
const sysTopic = '$SYS/+/memory/heap/maximum'
const subscriber = connect(setup())
subscriber.subscribe(sysTopic)
subscriber.on('message', function (topic, message) {
t.ok(checkTopic(topic, sysTopic))
t.pass(message.toString(), 'max bytes of heap used till now')
subscriber.end()
})
})
test('Connect a client and subscribe to get cpu usage', function (t) {
t.plan(2)
const sysTopic = '$SYS/+/cpu/usage'
const subscriber = connect(setup())
subscriber.subscribe(sysTopic)
subscriber.on('message', function (topic, message) {
t.ok(checkTopic(topic, sysTopic))
t.pass(message.toString(), 'cpu usage')
subscriber.end()
})
})
test('Connect a client and subscribe to get cpu avg of last 1 min', function (t) {
t.plan(2)
const sysTopic = '$SYS/+/cpu/avg/last/1'
const subscriber = connect(setup())
subscriber.subscribe(sysTopic)
subscriber.on('message', function (topic, message) {
t.ok(checkTopic(topic, sysTopic))
t.pass(message.toString(), 'cpu avg of last 1 min')
subscriber.end()
})
})
test('Connect a client and subscribe to get cpu avg of last 5 min', function (t) {
t.plan(2)
const sysTopic = '$SYS/+/cpu/avg/last/5'
const subscriber = connect(setup())
subscriber.subscribe(sysTopic)
subscriber.on('message', function (topic, message) {
t.ok(checkTopic(topic, sysTopic))
t.pass(message.toString(), 'cpu avg of last 5 min')
subscriber.end()
})
})
test('Connect a client and subscribe to get cpu avg of last 15 min', function (t) {
t.plan(2)
const sysTopic = '$SYS/+/cpu/avg/last/15'
const subscriber = connect(setup())
subscriber.subscribe(sysTopic)
subscriber.on('message', function (topic, message) {
t.ok(checkTopic(topic, sysTopic))
t.pass(message.toString(), 'cpu avg of last 15 min')
subscriber.end()
})
})