11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../common'); 41cb0ef41Sopenharmony_ciconst net = require('net'); 51cb0ef41Sopenharmony_ciconst { strictEqual } = require('assert'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciconst server = net.createServer(); 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_ciserver.listen(common.mustCall(function() { 101cb0ef41Sopenharmony_ci const socket = net.connect({ port: server.address().port }); 111cb0ef41Sopenharmony_ci 121cb0ef41Sopenharmony_ci strictEqual(socket.connecting, true); 131cb0ef41Sopenharmony_ci strictEqual(socket.remoteAddress, undefined); 141cb0ef41Sopenharmony_ci 151cb0ef41Sopenharmony_ci socket.on('connect', common.mustCall(function() { 161cb0ef41Sopenharmony_ci strictEqual(socket.remoteAddress !== undefined, true); 171cb0ef41Sopenharmony_ci socket.end(); 181cb0ef41Sopenharmony_ci })); 191cb0ef41Sopenharmony_ci 201cb0ef41Sopenharmony_ci socket.on('end', common.mustCall(function() { 211cb0ef41Sopenharmony_ci server.close(); 221cb0ef41Sopenharmony_ci })); 231cb0ef41Sopenharmony_ci})); 24