Skip to content

Commit 2453e5e

Browse files
committed
Fix unhandled exception when lookup returns invalid IP early
Fixes #1737
1 parent 846e298 commit 2453e5e

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

source/core/index.ts

+12-2
Original file line numberDiff line numberDiff line change
@@ -1101,11 +1101,21 @@ export default class Request extends Duplex implements RequestEvents<Request> {
11011101
const fn = options.cache ? this._createCacheableRequest : request;
11021102

11031103
try {
1104-
let requestOrResponse = await fn(url, this._requestOptions);
1104+
// We can't do `await fn(...)`,
1105+
// because stream `error` event can be emitted before `Promise.resolve()`.
1106+
let requestOrResponse = fn(url, this._requestOptions);
1107+
1108+
if (is.promise(requestOrResponse)) {
1109+
requestOrResponse = await requestOrResponse;
1110+
}
11051111

11061112
// Fallback
11071113
if (is.undefined(requestOrResponse)) {
1108-
requestOrResponse = await options.getFallbackRequestFunction()(url, this._requestOptions);
1114+
requestOrResponse = options.getFallbackRequestFunction()(url, this._requestOptions);
1115+
1116+
if (is.promise(requestOrResponse)) {
1117+
requestOrResponse = await requestOrResponse;
1118+
}
11091119
}
11101120

11111121
if (isClientRequest(requestOrResponse!)) {

test/http.ts

+12
Original file line numberDiff line numberDiff line change
@@ -357,3 +357,15 @@ test('JSON request custom stringifier', withServer, async (t, server, got) => {
357357
json: payload,
358358
})).body, customStringify(payload));
359359
});
360+
361+
test('ClientRequest can throw before promise resolves', async t => {
362+
await t.throwsAsync(got('http://example.com', {
363+
dnsLookup: ((_hostname: string, _options: unknown, callback: Function) => {
364+
queueMicrotask(() => {
365+
callback(null, 'fe80::0000:0000:0000:0000', 6);
366+
});
367+
}) as any
368+
}), {
369+
code: 'EINVAL'
370+
});
371+
});

0 commit comments

Comments
 (0)