11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst { createServer } = require('http'); 41cb0ef41Sopenharmony_ciconst { connect } = require('net'); 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ci// Make sure that calling the semi-private close() handlers manually doesn't 71cb0ef41Sopenharmony_ci// cause an error. 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_ciconst server = createServer(common.mustCall((req, res) => { 101cb0ef41Sopenharmony_ci req.client._events.close.forEach((fn) => { fn.bind(req)(); }); 111cb0ef41Sopenharmony_ci})); 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_ciserver.unref(); 141cb0ef41Sopenharmony_ci 151cb0ef41Sopenharmony_ciserver.listen(0, common.mustCall(() => { 161cb0ef41Sopenharmony_ci const client = connect(server.address().port); 171cb0ef41Sopenharmony_ci 181cb0ef41Sopenharmony_ci const req = [ 191cb0ef41Sopenharmony_ci 'POST / HTTP/1.1', 201cb0ef41Sopenharmony_ci 'Content-Length: 11', 211cb0ef41Sopenharmony_ci '', 221cb0ef41Sopenharmony_ci 'hello world', 231cb0ef41Sopenharmony_ci ].join('\r\n'); 241cb0ef41Sopenharmony_ci 251cb0ef41Sopenharmony_ci client.end(req); 261cb0ef41Sopenharmony_ci})); 27