1// Copyright Joyent, Inc. and other Node contributors. 2// 3// Permission is hereby granted, free of charge, to any person obtaining a 4// copy of this software and associated documentation files (the 5// "Software"), to deal in the Software without restriction, including 6// without limitation the rights to use, copy, modify, merge, publish, 7// distribute, sublicense, and/or sell copies of the Software, and to permit 8// persons to whom the Software is furnished to do so, subject to the 9// following conditions: 10// 11// The above copyright notice and this permission notice shall be included 12// in all copies or substantial portions of the Software. 13// 14// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 15// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 17// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 18// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 19// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 20// USE OR OTHER DEALINGS IN THE SOFTWARE. 21 22'use strict'; 23const common = require('../common'); 24const assert = require('assert'); 25const http = require('http'); 26const Countdown = require('../common/countdown'); 27 28let name; 29const max = 3; 30 31const server = http.Server(common.mustCall((req, res) => { 32 if (req.url === '/0') { 33 setTimeout(common.mustCall(() => { 34 res.writeHead(200); 35 res.end('Hello, World!'); 36 }), 100); 37 } else { 38 res.writeHead(200); 39 res.end('Hello, World!'); 40 } 41}, max)); 42server.listen(0, common.mustCall(() => { 43 name = http.globalAgent.getName({ port: server.address().port }); 44 for (let i = 0; i < max; ++i) 45 request(i); 46})); 47 48const countdown = new Countdown(max, () => { 49 assert(!http.globalAgent.sockets.hasOwnProperty(name)); 50 assert(!http.globalAgent.requests.hasOwnProperty(name)); 51 server.close(); 52}); 53 54function request(i) { 55 const req = http.get({ 56 port: server.address().port, 57 path: `/${i}` 58 }, function(res) { 59 const socket = req.socket; 60 socket.on('close', common.mustCall(() => { 61 countdown.dec(); 62 if (countdown.remaining > 0) { 63 assert.strictEqual(http.globalAgent.sockets[name].includes(socket), 64 false); 65 } 66 })); 67 res.resume(); 68 }); 69} 70