You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
823 B

'use strict';
const common = require('../common');
const http = require('http');
const body = 'hello world\n';
function test(headers) {
const server = http.createServer(function(req, res) {
console.error('req: %s headers: %j', req.method, headers);
res.writeHead(200, headers);
res.end();
server.close();
});
server.listen(0, common.mustCall(function() {
const request = http.request({
port: this.address().port,
method: 'HEAD',
path: '/'
}, common.mustCall(function(response) {
console.error('response start');
response.on('end', common.mustCall(function() {
console.error('response end');
}));
response.resume();
}));
request.end();
}));
}
test({
'Transfer-Encoding': 'chunked'
});
test({
'Content-Length': body.length
});