-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathmqtt.ts
268 lines (201 loc) · 8.36 KB
/
mqtt.ts
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
import fs from 'fs'
import path from 'path'
import mqtt, { IClientOptions } from '../src'
import { describe, it } from 'node:test'
import 'should'
describe('mqtt', () => {
describe('#connect', () => {
it('should return an MqttClient when connect is called with mqtt:/ url', function _test(t, done) {
const c = mqtt.connect('mqtt://localhost:1883')
c.should.be.instanceOf(mqtt.MqttClient)
c.end((err) => done(err))
})
it('should throw an error when called with no protocol specified', () => {
;(() => {
mqtt.connect('foo.bar.com')
}).should.throw('Missing protocol')
})
it('should throw an error when called with no protocol specified - with options', () => {
;(() => {
mqtt.connect('tcp://foo.bar.com', { protocol: null })
}).should.throw('Missing protocol')
})
it('should return an MqttClient with username option set', function _test(t, done) {
const c = mqtt.connect('mqtt://user:pass@localhost:1883')
c.should.be.instanceOf(mqtt.MqttClient)
c.options.should.have.property('username', 'user')
c.options.should.have.property('password', 'pass')
c.options.should.not.have.property('path')
c.end((err) => done(err))
})
it('should return an MqttClient with path set when protocol is ws/wss', function _test(t, done) {
const c = mqtt.connect('ws://localhost:1883/mqtt')
c.should.be.instanceOf(mqtt.MqttClient)
c.options.should.have.property('path', '/mqtt')
c.options.should.have.property('unixSocket', false)
c.end((err) => done(err))
})
it('should work with unix sockets', function _test(t, done) {
const c = mqtt.connect('mqtt+unix:///tmp/mqtt.sock')
c.should.be.instanceOf(mqtt.MqttClient)
c.options.should.have.property('path', '/tmp/mqtt.sock')
c.options.should.have.property('unixSocket', true)
c.end((err) => done(err))
})
it('should not set `path` when parsing url', function _test(t, done) {
const c = mqtt.connect('mqtt://[::1]')
c.should.be.instanceOf(mqtt.MqttClient)
c.options.should.not.have.property('path')
c.options.should.have.property('host', '[::1]')
c.end((err) => done(err))
})
it('should return an MqttClient with username and password options set', function _test(t, done) {
const c = mqtt.connect('mqtt://user@localhost:1883')
c.should.be.instanceOf(mqtt.MqttClient)
c.options.should.not.have.property('path')
c.options.should.have.property('username', 'user')
c.end((err) => done(err))
})
it('should return an MqttClient with the clientid with random value', function _test(t, done) {
const c = mqtt.connect('mqtt://user@localhost:1883')
c.should.be.instanceOf(mqtt.MqttClient)
c.options.should.have.property('clientId')
c.end((err) => done(err))
})
it('should return an MqttClient with the clientid with empty string', function _test(t, done) {
const c = mqtt.connect('mqtt://user@localhost:1883?clientId=')
c.should.be.instanceOf(mqtt.MqttClient)
c.options.should.have.property('clientId', '')
c.end((err) => done(err))
})
it('should return an MqttClient with the clientid option set', function _test(t, done) {
const c = mqtt.connect('mqtt://user@localhost:1883?clientId=123')
c.should.be.instanceOf(mqtt.MqttClient)
c.options.should.have.property('clientId', '123')
c.end((err) => done(err))
})
it('should return an MqttClient when connect is called with tcp:/ url', function _test(t, done) {
const c = mqtt.connect('tcp://localhost')
c.should.be.instanceOf(mqtt.MqttClient)
c.end((err) => done(err))
})
it('should return an MqttClient with correct host when called with a host and port', function _test(t, done) {
const c = mqtt.connect('tcp://user:pass@localhost:1883')
c.options.should.have.property('hostname', 'localhost')
c.options.should.have.property('port', 1883)
c.end((err) => done(err))
})
const sslOpts: IClientOptions = {
keyPath: path.join(__dirname, 'helpers', 'private-key.pem'),
certPath: path.join(__dirname, 'helpers', 'public-cert.pem'),
caPaths: [path.join(__dirname, 'helpers', 'public-cert.pem')],
}
it('should return an MqttClient when connect is called with mqtts:/ url', function _test(t, done) {
const c = mqtt.connect('mqtts://localhost', sslOpts)
c.options.should.have.property('protocol', 'mqtts')
c.on('error', () => {})
c.should.be.instanceOf(mqtt.MqttClient)
c.end((err) => done(err))
})
it('should return an MqttClient when connect is called with ssl:/ url', function _test(t, done) {
const c = mqtt.connect('ssl://localhost', sslOpts)
c.options.should.have.property('protocol', 'ssl')
c.on('error', () => {})
c.should.be.instanceOf(mqtt.MqttClient)
c.end((err) => done(err))
})
it('should return an MqttClient when connect is called with ws:/ url', function _test(t, done) {
const c = mqtt.connect('ws://localhost', sslOpts)
c.options.should.have.property('protocol', 'ws')
c.on('error', () => {})
c.should.be.instanceOf(mqtt.MqttClient)
c.end((err) => done(err))
})
it('should return an MqttClient when connect is called with wss:/ url', function _test(t, done) {
const c = mqtt.connect('wss://localhost', sslOpts)
c.options.should.have.property('protocol', 'wss')
c.on('error', () => {})
c.should.be.instanceOf(mqtt.MqttClient)
c.end((err) => done(err))
})
const sslOpts2: IClientOptions = {
key: fs.readFileSync(
path.join(__dirname, 'helpers', 'private-key.pem'),
),
cert: fs.readFileSync(
path.join(__dirname, 'helpers', 'public-cert.pem'),
),
ca: [
fs.readFileSync(
path.join(__dirname, 'helpers', 'public-cert.pem'),
),
],
}
it('should throw an error when it is called with cert and key set but no protocol specified', () => {
// to do rewrite wrap function
;(() => {
mqtt.connect(sslOpts2)
}).should.throw('Missing secure protocol key')
})
it('should throw an error when it is called with cert and key set and protocol other than allowed: mqtt,mqtts,ws,wss,wxs', () => {
;(() => {
;(sslOpts2 as any).protocol = 'UNKNOWNPROTOCOL'
mqtt.connect(sslOpts2)
}).should.throw()
})
it('should return a MqttClient with mqtts set when connect is called key and cert set and protocol mqtt', function _test(t, done) {
sslOpts2.protocol = 'mqtt'
const c = mqtt.connect(sslOpts2)
c.options.should.have.property('protocol', 'mqtts')
c.on('error', () => {})
c.should.be.instanceOf(mqtt.MqttClient)
c.end((err) => done(err))
})
it('should return a MqttClient with mqtts set when connect is called key and cert set and protocol mqtts', function _test(t, done) {
sslOpts2.protocol = 'mqtts'
const c = mqtt.connect(sslOpts2)
c.options.should.have.property('protocol', 'mqtts')
c.on('error', () => {})
c.should.be.instanceOf(mqtt.MqttClient)
c.end((err) => done(err))
})
it('should return a MqttClient with wss set when connect is called key and cert set and protocol ws', function _test(t, done) {
sslOpts2.protocol = 'ws'
const c = mqtt.connect(sslOpts2)
c.options.should.have.property('protocol', 'wss')
c.on('error', () => {})
c.should.be.instanceOf(mqtt.MqttClient)
c.end((err) => done(err))
})
it('should return a MqttClient with wss set when connect is called key and cert set and protocol wss', function _test(t, done) {
sslOpts2.protocol = 'wss'
const c = mqtt.connect(sslOpts2)
c.options.should.have.property('protocol', 'wss')
c.on('error', () => {})
c.should.be.instanceOf(mqtt.MqttClient)
c.end((err) => done(err))
})
it('should return an MqttClient with the clientid with option of clientId as empty string', function _test(t, done) {
const c = mqtt.connect('mqtt://localhost:1883', {
clientId: '',
})
c.should.be.instanceOf(mqtt.MqttClient)
c.options.should.have.property('clientId', '')
c.end((err) => done(err))
})
it('should return an MqttClient with the clientid with option of clientId empty', function _test(t, done) {
const c = mqtt.connect('mqtt://localhost:1883')
c.should.be.instanceOf(mqtt.MqttClient)
c.options.should.have.property('clientId')
c.end((err) => done(err))
})
it('should return an MqttClient with the clientid with option of with specific clientId', function _test(t, done) {
const c = mqtt.connect('mqtt://localhost:1883', {
clientId: '123',
})
c.should.be.instanceOf(mqtt.MqttClient)
c.options.should.have.property('clientId', '123')
c.end((err) => done(err))
})
})
})