Compare commits

...

1 Commits

Author SHA1 Message Date
Ashcon Partovi
0bcb76b189 fix: test-http-response-no-headers.js 2025-03-21 14:40:17 -07:00

View File

@@ -0,0 +1,48 @@
'use strict';
const common = require('../common');
const assert = require('assert');
const http = require('http');
const net = require('net');
const expected = {
'1.0': 'I AM THE WALRUS',
'1.1': ''
};
function test(httpVersion, callback) {
const server = net.createServer(function(conn) {
const reply = `HTTP/${httpVersion} 200 OK\r\n\r\n${expected[httpVersion]}`;
conn.end(reply);
});
server.listen(0, '127.0.0.1', common.mustCall(function() {
const options = {
host: '127.0.0.1',
port: this.address().port
};
const req = http.get(options, common.mustCall(function(res) {
let body = '';
res.on('data', function(data) {
body += data;
});
res.on('aborted', common.mustNotCall());
res.on('end', common.mustCall(function() {
assert.strictEqual(body, expected[httpVersion]);
server.close();
if (callback) process.nextTick(callback);
}));
}));
req.on('error', function(err) {
throw err;
});
}));
}
test('1.0', function() {
test('1.1');
});