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, { 'Content-Length': body.length }); 111cb0ef41Sopenharmony_ci res.write(body); 121cb0ef41Sopenharmony_ci res.end(); 131cb0ef41Sopenharmony_ci})); 141cb0ef41Sopenharmony_ciserver.keepAliveTimeout = 12010; 151cb0ef41Sopenharmony_ci 161cb0ef41Sopenharmony_ciconst agent = new http.Agent({ maxSockets: 1, keepAlive: true }); 171cb0ef41Sopenharmony_ci 181cb0ef41Sopenharmony_ciserver.listen(0, common.mustCall(function() { 191cb0ef41Sopenharmony_ci http.get({ 201cb0ef41Sopenharmony_ci path: '/', port: this.address().port, agent: agent 211cb0ef41Sopenharmony_ci }, common.mustCall((response) => { 221cb0ef41Sopenharmony_ci response.resume(); 231cb0ef41Sopenharmony_ci assert.strictEqual( 241cb0ef41Sopenharmony_ci response.headers['keep-alive'], 'timeout=12'); 251cb0ef41Sopenharmony_ci server.close(); 261cb0ef41Sopenharmony_ci agent.destroy(); 271cb0ef41Sopenharmony_ci })); 281cb0ef41Sopenharmony_ci})); 29