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
'use strict'
 
var http = require('http')
var websocket = require('websocket-stream')
var WebSocketServer = require('ws').Server
var Connection = require('mqtt-connection')
var abstractClientTests = require('./abstract_client')
var mqtt = require('../')
var xtend = require('xtend')
var assert = require('assert')
var port = 9999
var server = http.createServer()
 
function attachWebsocketServer (wsServer) {
  var wss = new WebSocketServer({server: wsServer, perMessageDeflate: false})
 
  wss.on('connection', function (ws) {
    var stream = websocket(ws)
    var connection = new Connection(stream)
 
    wsServer.emit('client', connection)
    stream.on('error', function () {})
    connection.on('error', function () {})
  })
 
  return wsServer
}
 
attachWebsocketServer(server)
 
server.on('client', function (client) {
  client.on('connect', function (packet) {
    if (packet.clientId === 'invalid') {
      client.connack({ returnCode: 2 })
    } else {
      server.emit('connect', client)
      client.connack({returnCode: 0})
    }
  })
 
  client.on('publish', function (packet) {
    setImmediate(function () {
      switch (packet.qos) {
        case 0:
          break
        case 1:
          client.puback(packet)
          break
        case 2:
          client.pubrec(packet)
          break
      }
    })
  })
 
  client.on('pubrel', function (packet) {
    client.pubcomp(packet)
  })
 
  client.on('pubrec', function (packet) {
    client.pubrel(packet)
  })
 
  client.on('pubcomp', function () {
    // Nothing to be done
  })
 
  client.on('subscribe', function (packet) {
    client.suback({
      messageId: packet.messageId,
      granted: packet.subscriptions.map(function (e) {
        return e.qos
      })
    })
  })
 
  client.on('unsubscribe', function (packet) {
    client.unsuback(packet)
  })
 
  client.on('pingreq', function () {
    client.pingresp()
  })
}).listen(port)
 
describe('Websocket Client', function () {
  var baseConfig = { protocol: 'ws', port: port }
 
  function makeOptions (custom) {
    // xtend returns a new object. Does not mutate arguments
    return xtend(baseConfig, custom || {})
  }
 
  it('should use mqtt as the protocol by default', function (done) {
    server.once('client', function (client) {
      client.stream.socket.protocol.should.equal('mqtt')
    })
    mqtt.connect(makeOptions()).on('connect', function () {
      this.end(true, done)
    })
  })
 
  it('should be able transform the url (for e.g. to sign it)', function (done) {
    var baseUrl = 'ws://localhost:9999/mqtt'
    var sig = '?AUTH=token'
    var expected = baseUrl + sig
    var actual
    var opts = makeOptions({
      path: '/mqtt',
      transformWsUrl: function (url, opt, client) {
        assert.equal(url, baseUrl)
        assert.strictEqual(opt, opts)
        assert.strictEqual(client.options, opts)
        assert.strictEqual(typeof opt.transformWsUrl, 'function')
        assert(client instanceof mqtt.MqttClient)
        url += sig
        actual = url
        return url
      }})
    mqtt.connect(opts)
      .on('connect', function () {
        assert.equal(this.stream.socket.url, expected)
        assert.equal(actual, expected)
        this.end(true, done)
      })
  })
 
  it('should use mqttv3.1 as the protocol if using v3.1', function (done) {
    server.once('client', function (client) {
      client.stream.socket.protocol.should.equal('mqttv3.1')
    })
 
    var opts = makeOptions({
      protocolId: 'MQIsdp',
      protocolVersion: 3
    })
 
    mqtt.connect(opts).on('connect', function () {
      this.end(true, done)
    })
  })
 
  abstractClientTests(server, makeOptions())
})