11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../common'); 41cb0ef41Sopenharmony_ciconst net = require('net'); 51cb0ef41Sopenharmony_ciconst assert = require('assert'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciconst server = net.createServer(); 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_ciserver.on('connection', common.mustCall()); 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_ci// Ensure that the socket is not destroyed when the 'end' event is emitted. 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_ciserver.listen(common.mustCall(function() { 141cb0ef41Sopenharmony_ci const socket = net.createConnection({ 151cb0ef41Sopenharmony_ci port: server.address().port 161cb0ef41Sopenharmony_ci }); 171cb0ef41Sopenharmony_ci 181cb0ef41Sopenharmony_ci socket.on('connect', common.mustCall(function() { 191cb0ef41Sopenharmony_ci socket.on('end', common.mustCall(function() { 201cb0ef41Sopenharmony_ci assert.strictEqual(socket.destroyed, false); 211cb0ef41Sopenharmony_ci server.close(); 221cb0ef41Sopenharmony_ci })); 231cb0ef41Sopenharmony_ci 241cb0ef41Sopenharmony_ci socket.end(); 251cb0ef41Sopenharmony_ci })); 261cb0ef41Sopenharmony_ci})); 27