mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
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:
parent
c70fa2c6dc
commit
491855c82b
36
test/async-hooks/test-async-exec-resource-http-agent.js
Normal file
36
test/async-hooks/test-async-exec-resource-http-agent.js
Normal 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();
|
||||
}));
|
||||
}));
|
Loading…
Reference in New Issue
Block a user