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>
59 lines
1.4 KiB
JavaScript
59 lines
1.4 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
console.log('1..0 # Skipped: missing crypto');
|
|
process.exit();
|
|
}
|
|
var https = require('https');
|
|
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
|
|
var resultFile = path.resolve(common.tmpDir, 'result');
|
|
|
|
var key = fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem');
|
|
var cert = fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem');
|
|
|
|
var PORT = common.PORT;
|
|
|
|
// number of bytes discovered empirically to trigger the bug
|
|
var data = new Buffer(1024 * 32 + 1);
|
|
|
|
httpsTest();
|
|
|
|
function httpsTest() {
|
|
var sopt = { key: key, cert: cert };
|
|
|
|
var server = https.createServer(sopt, function(req, res) {
|
|
res.setHeader('content-length', data.length);
|
|
res.end(data);
|
|
server.close();
|
|
});
|
|
|
|
server.listen(PORT, function() {
|
|
var opts = { port: PORT, rejectUnauthorized: false };
|
|
https.get(opts).on('response', function(res) {
|
|
test(res);
|
|
});
|
|
});
|
|
}
|
|
|
|
|
|
function test(res) {
|
|
res.on('end', function() {
|
|
assert.equal(res._readableState.length, 0);
|
|
assert.equal(bytes, data.length);
|
|
console.log('ok');
|
|
});
|
|
|
|
// Pause and then resume on each chunk, to ensure that there will be
|
|
// a lone byte hanging out at the very end.
|
|
var bytes = 0;
|
|
res.on('data', function(chunk) {
|
|
bytes += chunk.length;
|
|
this.pause();
|
|
setTimeout(this.resume.bind(this));
|
|
});
|
|
}
|