Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
42 lines
986 B
JavaScript
42 lines
986 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
console.log('1..0 # Skipped: missing crypto');
|
|
process.exit();
|
|
}
|
|
var tls = require('tls');
|
|
|
|
var net = require('net');
|
|
var fs = require('fs');
|
|
|
|
var options = {
|
|
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
|
|
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
|
|
};
|
|
|
|
var server = tls.createServer(options, function(c) {
|
|
setTimeout(function() {
|
|
c.write('hello');
|
|
setTimeout(function() {
|
|
c.destroy();
|
|
server.close();
|
|
}, 150);
|
|
}, 150);
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
var socket = net.connect(common.PORT, function() {
|
|
var s = socket.setTimeout(common.platformTimeout(240), function() {
|
|
throw new Error('timeout');
|
|
});
|
|
assert.ok(s instanceof net.Socket);
|
|
|
|
var tsocket = tls.connect({
|
|
socket: socket,
|
|
rejectUnauthorized: false
|
|
});
|
|
tsocket.resume();
|
|
});
|
|
});
|