11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst { mustCall } = require('../common'); 31cb0ef41Sopenharmony_ci 41cb0ef41Sopenharmony_ciconst http = require('http'); 51cb0ef41Sopenharmony_ciconst { strictEqual } = require('assert'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciconst server = http.createServer(mustCall((req, res) => { 81cb0ef41Sopenharmony_ci res.flushHeaders(); 91cb0ef41Sopenharmony_ci})); 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_ciserver.listen(0, mustCall(() => { 121cb0ef41Sopenharmony_ci const req = http.get({ 131cb0ef41Sopenharmony_ci port: server.address().port 141cb0ef41Sopenharmony_ci }, mustCall(() => { 151cb0ef41Sopenharmony_ci const { socket } = req; 161cb0ef41Sopenharmony_ci socket.emit('agentRemove'); 171cb0ef41Sopenharmony_ci strictEqual(socket._httpMessage, req); 181cb0ef41Sopenharmony_ci socket.destroy(); 191cb0ef41Sopenharmony_ci server.close(); 201cb0ef41Sopenharmony_ci })); 211cb0ef41Sopenharmony_ci})); 22