Files
node/test/parallel/test-zerolengthbufferbug.js
Rich Trott a68987c154 benchmark,lib,test: adjust for linting
Formatting changes for upcoming linter update.

PR-URL: https://github.com/nodejs/node/pull/10561
Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
2017-01-06 14:36:01 -08:00

25 lines
611 B
JavaScript

'use strict';
// Serving up a zero-length buffer should work.
const common = require('../common');
const http = require('http');
var server = http.createServer(function(req, res) {
var 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();
});
}));
}));