summaryrefslogtreecommitdiff
path: root/test/parallel/test-https-req-split.js
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2016-07-15 15:43:24 -0400
committercjihrig <cjihrig@gmail.com>2016-07-18 17:14:16 -0400
commit04b4d15b396a7befea31dbfec89f69ff71dc71ca (patch)
tree7819010b9b687fb20328c04645e9ec64c25b9328 /test/parallel/test-https-req-split.js
parent59741a9beeb0ccaac6fc3247605bf090d36ad50e (diff)
downloadnode-new-04b4d15b396a7befea31dbfec89f69ff71dc71ca.tar.gz
test: use mustCall() for simple flow tracking
Many of the tests use variables to track when callback functions are invoked or events are emitted. These variables are then asserted on process exit. This commit replaces this pattern in straightforward cases with common.mustCall(). This makes the tests easier to reason about, leads to a net reduction in lines of code, and uncovered a few bugs in tests. This commit also replaces some callbacks that should never be called with common.fail(). PR-URL: https://github.com/nodejs/node/pull/7753 Reviewed-By: Wyatt Preul <wpreul@gmail.com> Reviewed-By: Minwoo Jung <jmwsoft@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'test/parallel/test-https-req-split.js')
-rw-r--r--test/parallel/test-https-req-split.js13
1 files changed, 2 insertions, 11 deletions
diff --git a/test/parallel/test-https-req-split.js b/test/parallel/test-https-req-split.js
index c9707ab439..6dc6097dc2 100644
--- a/test/parallel/test-https-req-split.js
+++ b/test/parallel/test-https-req-split.js
@@ -3,7 +3,6 @@
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
var common = require('../common');
-var assert = require('assert');
if (!common.hasCrypto) {
common.skip('missing crypto');
@@ -14,8 +13,6 @@ var https = require('https');
var tls = require('tls');
var fs = require('fs');
-var seen_req = false;
-
var options = {
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
@@ -25,13 +22,12 @@ var options = {
tls.SLAB_BUFFER_SIZE = 1;
var server = https.createServer(options);
-server.on('upgrade', function(req, socket, upgrade) {
+server.on('upgrade', common.mustCall(function(req, socket, upgrade) {
socket.on('data', function(data) {
throw new Error('Unexpected data: ' + data);
});
socket.end('HTTP/1.1 200 Ok\r\n\r\n');
- seen_req = true;
-});
+}));
server.listen(0, function() {
var req = https.request({
@@ -49,8 +45,3 @@ server.listen(0, function() {
req.end();
});
-
-process.on('exit', function() {
- assert(seen_req);
- console.log('ok');
-});