test: add http agent to executionAsyncResource

Refs: https://github.com/nodejs/node/blob/HEAD/test/async-hooks/test-async-exec-resource-http.js
Signed-off-by: psj-tar-gz <lyricalllmagical@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/34966
Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
This commit is contained in:
psj-tar-gz 2020-08-29 18:04:11 +09:00 committed by Antoine du Hamel
parent c70fa2c6dc
commit 491855c82b
No known key found for this signature in database
GPG Key ID: 21D900FFDB233756

View File

@ -0,0 +1,36 @@
'use strict';
const common = require('../common');
const assert = require('node:assert');
const {
executionAsyncResource,
executionAsyncId,
createHook,
} = require('node:async_hooks');
const http = require('node:http');
const hooked = {};
createHook({
init(asyncId, type, triggerAsyncId, resource) {
hooked[asyncId] = resource;
},
}).enable();
const agent = new http.Agent({
maxSockets: 1,
});
const server = http.createServer((req, res) => {
res.end('ok');
});
server.listen(0, common.mustCall(() => {
assert.strictEqual(executionAsyncResource(), hooked[executionAsyncId()]);
http.get({ agent, port: server.address().port }, common.mustCall(() => {
assert.strictEqual(executionAsyncResource(), hooked[executionAsyncId()]);
server.close();
agent.destroy();
}));
}));