mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
618 B
26 lines
618 B
'use strict';
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
|
|
const assert = require('assert');
|
|
const net = require('net');
|
|
const tls = require('tls');
|
|
|
|
const server = net.createServer(common.mustCall((c) => {
|
|
c.destroy();
|
|
})).listen(0, common.mustCall(() => {
|
|
const c = tls.connect({ port: server.address().port });
|
|
c.on('error', () => {
|
|
// Otherwise `.write()` callback won't be invoked.
|
|
c.destroyed = false;
|
|
});
|
|
|
|
c.write('hello', common.mustCall((err) => {
|
|
assert.strictEqual(err.code, 'ECANCELED');
|
|
server.close();
|
|
}));
|
|
}));
|
|
|