nodejs/test/parallel/test-zerolengthbufferbug.js

25 lines
604 B
JavaScript
Raw Normal View History

'use strict';
// Serving up a zero-length buffer should work.
const common = require('../common');
var http = require('http');
2010-12-03 04:03:18 +03:00
var server = http.createServer(function(req, res) {
var buffer = Buffer.alloc(0);
2010-12-03 04:03:18 +03:00
// FIXME: WTF gjslint want this?
res.writeHead(200, {'Content-Type': 'text/html',
2010-12-03 04:03:18 +03:00
'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);
2010-12-03 04:03:18 +03:00
res.on('end', function(d) {
server.close();
});
}));
}));