node/test/parallel/test-https-byteswritten.js
Brian White 2bc7841d0f
test: use random ports where possible
This helps to prevent issues where a failed test can keep a bound
socket open long enough to cause other tests to fail with EADDRINUSE
because the same port number is used.

PR-URL: https://github.com/nodejs/node/pull/7045
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2016-06-10 22:30:55 -04:00

36 lines
852 B
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
var fs = require('fs');
if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
var https = require('https');
var options = {
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
};
var body = 'hello world\n';
var httpsServer = https.createServer(options, function(req, res) {
res.on('finish', function() {
assert(typeof req.connection.bytesWritten === 'number');
assert(req.connection.bytesWritten > 0);
httpsServer.close();
console.log('ok');
});
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end(body);
});
httpsServer.listen(0, function() {
https.get({
port: this.address().port,
rejectUnauthorized: false
});
});