heyujie
2021-05-20 6ebdefb4a5b2be82a8c452c0bb4624f3d85a17b7
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
'use strict'
 
var fs = require('fs')
var path = require('path')
var mqtt = require('../')
 
describe('mqtt', function () {
  describe('#connect', function () {
    var sslOpts, sslOpts2
    it('should return an MqttClient when connect is called with mqtt:/ url', function () {
      var c = mqtt.connect('mqtt://localhost:1883')
 
      c.should.be.instanceOf(mqtt.MqttClient)
      c.end()
    })
 
    it('should throw an error when called with no protocol specified', function () {
      (function () {
        var c = mqtt.connect('foo.bar.com')
        c.end()
      }).should.throw('Missing protocol')
    })
 
    it('should throw an error when called with no protocol specified - with options', function () {
      (function () {
        var c = mqtt.connect('tcp://foo.bar.com', { protocol: null })
        c.end()
      }).should.throw('Missing protocol')
    })
 
    it('should return an MqttClient with username option set', function () {
      var 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.end()
    })
 
    it('should return an MqttClient with username and password options set', function () {
      var c = mqtt.connect('mqtt://user@localhost:1883')
 
      c.should.be.instanceOf(mqtt.MqttClient)
      c.options.should.have.property('username', 'user')
      c.end()
    })
 
    it('should return an MqttClient with the clientid with random value', function () {
      var c = mqtt.connect('mqtt://user@localhost:1883')
 
      c.should.be.instanceOf(mqtt.MqttClient)
      c.options.should.have.property('clientId')
      c.end()
    })
 
    it('should return an MqttClient with the clientid with empty string', function () {
      var c = mqtt.connect('mqtt://user@localhost:1883?clientId=')
 
      c.should.be.instanceOf(mqtt.MqttClient)
      c.options.should.have.property('clientId', '')
      c.end()
    })
 
    it('should return an MqttClient with the clientid option set', function () {
      var c = mqtt.connect('mqtt://user@localhost:1883?clientId=123')
 
      c.should.be.instanceOf(mqtt.MqttClient)
      c.options.should.have.property('clientId', '123')
      c.end()
    })
 
    it('should return an MqttClient when connect is called with tcp:/ url', function () {
      var c = mqtt.connect('tcp://localhost')
 
      c.should.be.instanceOf(mqtt.MqttClient)
      c.end()
    })
 
    it('should return an MqttClient with correct host when called with a host and port', function () {
      var c = mqtt.connect('tcp://user:pass@localhost:1883')
 
      c.options.should.have.property('hostname', 'localhost')
      c.options.should.have.property('port', 1883)
      c.end()
    })
 
    sslOpts = {
      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 () {
      var c = mqtt.connect('mqtts://localhost', sslOpts)
 
      c.options.should.have.property('protocol', 'mqtts')
 
      c.on('error', function () {})
 
      c.should.be.instanceOf(mqtt.MqttClient)
      c.end()
    })
 
    it('should return an MqttClient when connect is called with ssl:/ url', function () {
      var c = mqtt.connect('ssl://localhost', sslOpts)
 
      c.options.should.have.property('protocol', 'ssl')
 
      c.on('error', function () {})
 
      c.should.be.instanceOf(mqtt.MqttClient)
      c.end()
    })
 
    it('should return an MqttClient when connect is called with ws:/ url', function () {
      var c = mqtt.connect('ws://localhost', sslOpts)
 
      c.options.should.have.property('protocol', 'ws')
 
      c.on('error', function () {})
 
      c.should.be.instanceOf(mqtt.MqttClient)
      c.end()
    })
 
    it('should return an MqttClient when connect is called with wss:/ url', function () {
      var c = mqtt.connect('wss://localhost', sslOpts)
 
      c.options.should.have.property('protocol', 'wss')
 
      c.on('error', function () {})
 
      c.should.be.instanceOf(mqtt.MqttClient)
      c.end()
    })
 
    sslOpts2 = {
      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', function () {
      // to do rewrite wrap function
      (function () {
        var c = mqtt.connect(sslOpts2)
        c.end()
      }).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', function () {
      (function () {
        sslOpts2.protocol = 'UNKNOWNPROTOCOL'
        var c = mqtt.connect(sslOpts2)
        c.end()
      }).should.throw()
    })
 
    it('should return a MqttClient with mqtts set when connect is called key and cert set and protocol mqtt', function () {
      sslOpts2.protocol = 'mqtt'
      var c = mqtt.connect(sslOpts2)
 
      c.options.should.have.property('protocol', 'mqtts')
 
      c.on('error', function () {})
 
      c.should.be.instanceOf(mqtt.MqttClient)
    })
 
    it('should return a MqttClient with mqtts set when connect is called key and cert set and protocol mqtts', function () {
      sslOpts2.protocol = 'mqtts'
      var c = mqtt.connect(sslOpts2)
 
      c.options.should.have.property('protocol', 'mqtts')
 
      c.on('error', function () {})
 
      c.should.be.instanceOf(mqtt.MqttClient)
    })
 
    it('should return a MqttClient with wss set when connect is called key and cert set and protocol ws', function () {
      sslOpts2.protocol = 'ws'
      var c = mqtt.connect(sslOpts2)
 
      c.options.should.have.property('protocol', 'wss')
 
      c.on('error', function () {})
 
      c.should.be.instanceOf(mqtt.MqttClient)
    })
 
    it('should return a MqttClient with wss set when connect is called key and cert set and protocol wss', function () {
      sslOpts2.protocol = 'wss'
      var c = mqtt.connect(sslOpts2)
 
      c.options.should.have.property('protocol', 'wss')
 
      c.on('error', function () {})
 
      c.should.be.instanceOf(mqtt.MqttClient)
    })
 
    it('should return an MqttClient with the clientid with option of clientId as empty string', function () {
      var c = mqtt.connect('mqtt://localhost:1883', {
        clientId: ''
      })
 
      c.should.be.instanceOf(mqtt.MqttClient)
      c.options.should.have.property('clientId', '')
    })
 
    it('should return an MqttClient with the clientid with option of clientId empty', function () {
      var c = mqtt.connect('mqtt://localhost:1883')
 
      c.should.be.instanceOf(mqtt.MqttClient)
      c.options.should.have.property('clientId')
      c.end()
    })
 
    it('should return an MqttClient with the clientid with option of with specific clientId', function () {
      var c = mqtt.connect('mqtt://localhost:1883', {
        clientId: '123'
      })
 
      c.should.be.instanceOf(mqtt.MqttClient)
      c.options.should.have.property('clientId', '123')
      c.end()
    })
  })
})