0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-http-client-immediate-error.js
Brian White fcd82e7601
test: improve http test reliability
Fake the socket handle to ensure an immediate error is returned
uniformly across all platforms.

PR-URL: https://github.com/nodejs/node/pull/13693
Reviewed-By: James M Snell <jasnell@gmail.com>
2017-06-17 10:43:57 -04:00

41 lines
983 B
JavaScript

'use strict';
// Make sure http.request() can catch immediate errors in
// net.createConnection().
const common = require('../common');
const assert = require('assert');
const net = require('net');
const http = require('http');
const uv = process.binding('uv');
const { async_id_symbol } = process.binding('async_wrap');
const { newUid } = require('async_hooks');
const agent = new http.Agent();
agent.createConnection = common.mustCall((cfg) => {
const sock = new net.Socket();
// Fake the handle so we can enforce returning an immediate error
sock._handle = {
connect: common.mustCall((req, addr, port) => {
return uv.UV_ENETUNREACH;
}),
readStart() {},
close() {}
};
// Simulate just enough socket handle initialization
sock[async_id_symbol] = newUid();
sock.connect(cfg);
return sock;
});
http.get({
host: '127.0.0.1',
port: 1,
agent
}).on('error', common.mustCall((err) => {
assert.strictEqual(err.code, 'ENETUNREACH');
}));