11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst http = require('http'); 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_ciconst server = http.createServer(common.mustNotCall()); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciclass Agent extends http.Agent { 81cb0ef41Sopenharmony_ci createConnection(options, oncreate) { 91cb0ef41Sopenharmony_ci const socket = super.createConnection(options, oncreate); 101cb0ef41Sopenharmony_ci socket.once('close', () => server.close()); 111cb0ef41Sopenharmony_ci return socket; 121cb0ef41Sopenharmony_ci } 131cb0ef41Sopenharmony_ci} 141cb0ef41Sopenharmony_ci 151cb0ef41Sopenharmony_ciconst tmpdir = require('../common/tmpdir'); 161cb0ef41Sopenharmony_citmpdir.refresh(); 171cb0ef41Sopenharmony_ci 181cb0ef41Sopenharmony_ciserver.listen(common.PIPE, common.mustCall(() => { 191cb0ef41Sopenharmony_ci const req = http.get({ 201cb0ef41Sopenharmony_ci agent: new Agent(), 211cb0ef41Sopenharmony_ci socketPath: common.PIPE 221cb0ef41Sopenharmony_ci }); 231cb0ef41Sopenharmony_ci 241cb0ef41Sopenharmony_ci req.abort(); 251cb0ef41Sopenharmony_ci})); 26