11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst common = require('../common'); 41cb0ef41Sopenharmony_ciconst assert = require('assert'); 51cb0ef41Sopenharmony_ciconst net = require('net'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciconst server = net.createServer(); 81cb0ef41Sopenharmony_ciserver.listen(0, common.mustCall(() => { 91cb0ef41Sopenharmony_ci const socket = new net.Socket(); 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_ci socket.on('connect', common.mustNotCall()); 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_ci socket.connect({ 141cb0ef41Sopenharmony_ci port: server.address().port, 151cb0ef41Sopenharmony_ci }); 161cb0ef41Sopenharmony_ci 171cb0ef41Sopenharmony_ci assert(socket.connecting); 181cb0ef41Sopenharmony_ci 191cb0ef41Sopenharmony_ci socket.write('foo', common.expectsError({ 201cb0ef41Sopenharmony_ci code: 'ERR_SOCKET_CLOSED_BEFORE_CONNECTION', 211cb0ef41Sopenharmony_ci name: 'Error' 221cb0ef41Sopenharmony_ci })); 231cb0ef41Sopenharmony_ci 241cb0ef41Sopenharmony_ci socket.destroy(); 251cb0ef41Sopenharmony_ci server.close(); 261cb0ef41Sopenharmony_ci})); 27