-
Notifications
You must be signed in to change notification settings - Fork 30.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: fix flaky test-tls-wrap-timeout
Competing timers were causing a race condition and thus the test was flaky. Instead, we check an object property on process exit. Fixes: #7650 Backport-PR-URL: #12567 PR-URL: #7857 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: jasnell - James M Snell <jasnell@gmail.com>
- Loading branch information
1 parent
b5b78b1
commit 6040efd
Showing
1 changed file
with
31 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,54 @@ | ||
'use strict'; | ||
var common = require('../common'); | ||
var assert = require('assert'); | ||
const common = require('../common'); | ||
|
||
if (!common.hasCrypto) { | ||
common.skip('missing crypto'); | ||
return; | ||
} | ||
var tls = require('tls'); | ||
const assert = require('assert'); | ||
const tls = require('tls'); | ||
|
||
var net = require('net'); | ||
var fs = require('fs'); | ||
const net = require('net'); | ||
const fs = require('fs'); | ||
|
||
var options = { | ||
const 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); | ||
}); | ||
const server = tls.createServer(options, common.mustCall((c) => { | ||
setImmediate(() => { | ||
c.write('hello', () => { | ||
setImmediate(() => { | ||
c.destroy(); | ||
server.close(); | ||
}); | ||
}); | ||
}); | ||
})); | ||
|
||
var socket; | ||
var lastIdleStart; | ||
|
||
server.listen(0, function() { | ||
var socket = net.connect(this.address().port, function() { | ||
var s = socket.setTimeout(common.platformTimeout(240), function() { | ||
server.listen(0, () => { | ||
socket = net.connect(server.address().port, function() { | ||
const s = socket.setTimeout(Number.MAX_VALUE, function() { | ||
throw new Error('timeout'); | ||
}); | ||
assert.ok(s instanceof net.Socket); | ||
|
||
var tsocket = tls.connect({ | ||
assert.notStrictEqual(socket._idleTimeout, -1); | ||
lastIdleStart = socket._idleStart; | ||
|
||
const tsocket = tls.connect({ | ||
socket: socket, | ||
rejectUnauthorized: false | ||
}); | ||
tsocket.resume(); | ||
}); | ||
}); | ||
|
||
process.on('exit', () => { | ||
assert.strictEqual(socket._idleTimeout, -1); | ||
assert(lastIdleStart < socket._idleStart); | ||
}); |