xref: /third_party/node/test/parallel/test-http-keep-alive-timeout-custom.js
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/node/test/parallel/
11cb0ef41Sopenharmony_ci'use strict';
21cb0ef41Sopenharmony_ci
31cb0ef41Sopenharmony_ciconst common = require('../common');
41cb0ef41Sopenharmony_ciconst http = require('http');
51cb0ef41Sopenharmony_ciconst assert = require('assert');
61cb0ef41Sopenharmony_ci
71cb0ef41Sopenharmony_ciconst server = http.createServer(common.mustCall((req, res) => {
81cb0ef41Sopenharmony_ci  const body = 'hello world\n';
91cb0ef41Sopenharmony_ci
101cb0ef41Sopenharmony_ci  res.writeHead(200, {
111cb0ef41Sopenharmony_ci    'Content-Length': body.length,
121cb0ef41Sopenharmony_ci    'Keep-Alive': 'timeout=50'
131cb0ef41Sopenharmony_ci  });
141cb0ef41Sopenharmony_ci  res.write(body);
151cb0ef41Sopenharmony_ci  res.end();
161cb0ef41Sopenharmony_ci}));
171cb0ef41Sopenharmony_ciserver.keepAliveTimeout = 12010;
181cb0ef41Sopenharmony_ci
191cb0ef41Sopenharmony_ciconst agent = new http.Agent({ maxSockets: 1, keepAlive: true });
201cb0ef41Sopenharmony_ci
211cb0ef41Sopenharmony_ciserver.listen(0, common.mustCall(function() {
221cb0ef41Sopenharmony_ci  http.get({
231cb0ef41Sopenharmony_ci    path: '/', port: this.address().port, agent: agent
241cb0ef41Sopenharmony_ci  }, common.mustCall((response) => {
251cb0ef41Sopenharmony_ci    response.resume();
261cb0ef41Sopenharmony_ci    assert.strictEqual(
271cb0ef41Sopenharmony_ci      response.headers['keep-alive'], 'timeout=50');
281cb0ef41Sopenharmony_ci    server.close();
291cb0ef41Sopenharmony_ci    agent.destroy();
301cb0ef41Sopenharmony_ci  }));
311cb0ef41Sopenharmony_ci}));
32

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