summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-server-destroy-socket-on-client-error.js
blob: 75f795603d598a28a7159fe809324efe520677e1 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
'use strict';

const { expectsError, mustCall } = require('../common');

// Test that the request socket is destroyed if the `'clientError'` event is
// emitted and there is no listener for it.

const assert = require('assert');
const { createServer } = require('http');
const { createConnection } = require('net');

const server = createServer();

server.on('connection', mustCall((socket) => {
  socket.on('error', expectsError({
    type: Error,
    message: 'Parse Error: Invalid method encountered',
    code: 'HPE_INVALID_METHOD',
    bytesParsed: 0,
    rawPacket: Buffer.from('FOO /\r\n')
  }));
}));

server.listen(0, () => {
  const chunks = [];
  const socket = createConnection({
    allowHalfOpen: true,
    port: server.address().port
  });

  socket.on('connect', mustCall(() => {
    socket.write('FOO /\r\n');
  }));

  socket.on('data', (chunk) => {
    chunks.push(chunk);
  });

  socket.on('end', mustCall(() => {
    const expected = Buffer.from(
      'HTTP/1.1 400 Bad Request\r\nConnection: close\r\n\r\n'
    );
    assert(Buffer.concat(chunks).equals(expected));

    server.close();
  }));
});