aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-http-server-unconsume-consume.js
blob: 77baff19fe83d8f07fd480a7dbe94d610185742a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
'use strict';
const common = require('../common');
const http = require('http');

const testServer = http.createServer((req, res) => {
  common.fail('Should not be called');
  res.end();
});
testServer.on('connect', common.mustCall((req, socket, head) => {
  socket.write('HTTP/1.1 200 Connection Established' + '\r\n' +
      'Proxy-agent: Node-Proxy' + '\r\n' +
      '\r\n');
  // This shouldn't raise an assertion in StreamBase::Consume.
  testServer.emit('connection', socket);
  testServer.close();
}));
testServer.listen(0, common.mustCall(() => {
  http.request({
      port: testServer.address().port,
      method: 'CONNECT'
  }, (res) => {}).end();
}));