nodejs/test/parallel/test-zerolengthbufferbug.js

25 lines
627 B
JavaScript
Raw Normal View History

'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);
2010-12-03 04:03:18 +03:00
// 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.mustNotCall());
2010-12-03 04:03:18 +03:00
res.on('end', function(d) {
server.close();
});
}));
}));