-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: refactor test-http-agent-timeout-option
There is no need to establish a TCP connection. It is sufficient to test that the listener that forwards the `'timeout'` event from the socket to the `ClientRequest` instance is added to the socket. PR-URL: #25886 Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
- Loading branch information
Showing
1 changed file
with
16 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,23 @@ | ||
'use strict'; | ||
|
||
const { expectsError, mustCall } = require('../common'); | ||
const { Agent, get, createServer } = require('http'); | ||
const { mustCall } = require('../common'); | ||
const { strictEqual } = require('assert'); | ||
const { Agent, get } = require('http'); | ||
|
||
// Test that the `'timeout'` event is emitted on the `ClientRequest` instance | ||
// when the socket timeout set via the `timeout` option of the `Agent` expires. | ||
// Test that the listener that forwards the `'timeout'` event from the socket to | ||
// the `ClientRequest` instance is added to the socket when the `timeout` option | ||
// of the `Agent` is set. | ||
|
||
const server = createServer(mustCall(() => { | ||
// Never respond. | ||
})); | ||
const request = get({ | ||
agent: new Agent({ timeout: 50 }), | ||
lookup: () => {} | ||
}); | ||
|
||
server.listen(() => { | ||
const request = get({ | ||
agent: new Agent({ timeout: 500 }), | ||
port: server.address().port | ||
}); | ||
request.on('socket', mustCall((socket) => { | ||
strictEqual(socket.timeout, 50); | ||
|
||
request.on('error', expectsError({ | ||
type: Error, | ||
code: 'ECONNRESET', | ||
message: 'socket hang up' | ||
})); | ||
const listeners = socket.listeners('timeout'); | ||
|
||
request.on('timeout', mustCall(() => { | ||
request.abort(); | ||
server.close(); | ||
})); | ||
}); | ||
strictEqual(listeners.length, 1); | ||
strictEqual(listeners[0], request.timeoutCb); | ||
})); |