11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../common'); 41cb0ef41Sopenharmony_ciconst { createServer, get } = require('http'); 51cb0ef41Sopenharmony_ciconst assert = require('assert'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciconst server = createServer(common.mustCall((req, res) => { 81cb0ef41Sopenharmony_ci req.destroy(new Error('Destroy test')); 91cb0ef41Sopenharmony_ci})); 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_cifunction onUncaught(error) {} 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_ciprocess.on('uncaughtException', common.mustNotCall(onUncaught)); 141cb0ef41Sopenharmony_ci 151cb0ef41Sopenharmony_ciserver.listen(0, common.mustCall(() => { 161cb0ef41Sopenharmony_ci get({ 171cb0ef41Sopenharmony_ci port: server.address().port 181cb0ef41Sopenharmony_ci }, (res) => { 191cb0ef41Sopenharmony_ci res.resume(); 201cb0ef41Sopenharmony_ci }).on('error', (error) => { 211cb0ef41Sopenharmony_ci assert.strictEqual(error.message, 'socket hang up'); 221cb0ef41Sopenharmony_ci assert.strictEqual(error.code, 'ECONNRESET'); 231cb0ef41Sopenharmony_ci server.close(); 241cb0ef41Sopenharmony_ci }); 251cb0ef41Sopenharmony_ci})); 26