xref: /third_party/node/test/parallel/test-http-client-agent-end-close-event.js
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/node/test/parallel/
11cb0ef41Sopenharmony_ci'use strict';
21cb0ef41Sopenharmony_ciconst common = require('../common');
31cb0ef41Sopenharmony_ciconst assert = require('assert');
41cb0ef41Sopenharmony_ciconst http = require('http');
51cb0ef41Sopenharmony_ci
61cb0ef41Sopenharmony_ciconst server = http.createServer(common.mustCall((req, res) => {
71cb0ef41Sopenharmony_ci  res.end('hello');
81cb0ef41Sopenharmony_ci}));
91cb0ef41Sopenharmony_ci
101cb0ef41Sopenharmony_ciconst keepAliveAgent = new http.Agent({ keepAlive: true });
111cb0ef41Sopenharmony_ci
121cb0ef41Sopenharmony_ciserver.listen(0, common.mustCall(() => {
131cb0ef41Sopenharmony_ci  const req = http.get({
141cb0ef41Sopenharmony_ci    port: server.address().port,
151cb0ef41Sopenharmony_ci    agent: keepAliveAgent
161cb0ef41Sopenharmony_ci  });
171cb0ef41Sopenharmony_ci
181cb0ef41Sopenharmony_ci  req
191cb0ef41Sopenharmony_ci    .on('response', common.mustCall((res) => {
201cb0ef41Sopenharmony_ci      res
211cb0ef41Sopenharmony_ci        .on('close', common.mustCall(() => {
221cb0ef41Sopenharmony_ci          assert.strictEqual(req.destroyed, true);
231cb0ef41Sopenharmony_ci          server.close();
241cb0ef41Sopenharmony_ci          keepAliveAgent.destroy();
251cb0ef41Sopenharmony_ci        }))
261cb0ef41Sopenharmony_ci        .on('data', common.mustCall());
271cb0ef41Sopenharmony_ci    }))
281cb0ef41Sopenharmony_ci    .end();
291cb0ef41Sopenharmony_ci}));
30

Indexes created Thu Nov 07 10:32:03 CST 2024