11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ci 41cb0ef41Sopenharmony_ciif (!common.hasCrypto) 51cb0ef41Sopenharmony_ci common.skip('missing crypto'); 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_ciconst tls = require('tls'); 81cb0ef41Sopenharmony_ciconst stream = require('stream'); 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_ciconst delay = new stream.Duplex({ 111cb0ef41Sopenharmony_ci read: function read() { 121cb0ef41Sopenharmony_ci }, 131cb0ef41Sopenharmony_ci write: function write(data, enc, cb) { 141cb0ef41Sopenharmony_ci console.log('pending'); 151cb0ef41Sopenharmony_ci setImmediate(function() { 161cb0ef41Sopenharmony_ci console.log('done'); 171cb0ef41Sopenharmony_ci cb(); 181cb0ef41Sopenharmony_ci }); 191cb0ef41Sopenharmony_ci } 201cb0ef41Sopenharmony_ci}); 211cb0ef41Sopenharmony_ci 221cb0ef41Sopenharmony_ciconst secure = tls.connect({ 231cb0ef41Sopenharmony_ci socket: delay 241cb0ef41Sopenharmony_ci}); 251cb0ef41Sopenharmony_cisetImmediate(function() { 261cb0ef41Sopenharmony_ci secure.destroy(); 271cb0ef41Sopenharmony_ci}); 28