summaryrefslogtreecommitdiff
path: root/test/parallel/test-zerolengthbufferbug.js
blob: 42e6994e1b6389b73dd8bc9aef0a40b37a3ddbe7 (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
'use strict';
// Serving up a zero-length buffer should work.

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

const server = http.createServer(function(req, res) {
  const buffer = Buffer.alloc(0);
  // FIXME: WTF gjslint want this?
  res.writeHead(200, {'Content-Type': 'text/html',
                      'Content-Length': buffer.length});
  res.end(buffer);
});

server.listen(0, common.mustCall(function() {
  http.get({ port: this.address().port }, common.mustCall(function(res) {

    res.on('data', common.fail);

    res.on('end', function(d) {
      server.close();
    });
  }));
}));