summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-parser-freed-before-upgrade.js
blob: 4ba1de9501681ca8f2e89f5c7676fbc9e01193a2 (plain)
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
'use strict';

const common = require('../common');
const assert = require('assert');
const http = require('http');

const server = http.createServer();

server.on('upgrade', common.mustCall((request, socket) => {
  assert.strictEqual(socket.parser, null);
  socket.write([
    'HTTP/1.1 101 Switching Protocols',
    'Connection: Upgrade',
    'Upgrade: WebSocket',
    '\r\n'
  ].join('\r\n'));
}));

server.listen(common.mustCall(() => {
  const request = http.get({
    port: server.address().port,
    headers: {
      Connection: 'Upgrade',
      Upgrade: 'WebSocket'
    }
  });

  request.on('upgrade', common.mustCall((response, socket) => {
    assert.strictEqual(socket.parser, null);
    socket.destroy();
    server.close();
  }));
}));