summaryrefslogtreecommitdiff
path: root/test/parallel/test-net-large-string.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-net-large-string.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-net-large-string.js')
-rw-r--r--test/parallel/test-net-large-string.js18
1 files changed, 8 insertions, 10 deletions
diff --git a/test/parallel/test-net-large-string.js b/test/parallel/test-net-large-string.js
index 8feb35c067..b469b02895 100644
--- a/test/parallel/test-net-large-string.js
+++ b/test/parallel/test-net-large-string.js
@@ -1,22 +1,24 @@
'use strict';
-require('../common');
+const common = require('../common');
var assert = require('assert');
var net = require('net');
var kPoolSize = 40 * 1024;
var data = 'あ'.repeat(kPoolSize);
-var receivedSize = 0;
var encoding = 'UTF-8';
-var server = net.createServer(function(socket) {
+var server = net.createServer(common.mustCall(function(socket) {
+ var receivedSize = 0;
+
socket.setEncoding(encoding);
socket.on('data', function(data) {
receivedSize += data.length;
});
- socket.on('end', function() {
+ socket.on('end', common.mustCall(function() {
+ assert.strictEqual(receivedSize, kPoolSize);
socket.end();
- });
-});
+ }));
+}));
server.listen(0, function() {
var client = net.createConnection(this.address().port);
@@ -26,7 +28,3 @@ server.listen(0, function() {
client.write(data, encoding);
client.end();
});
-
-process.on('exit', function() {
- assert.equal(receivedSize, kPoolSize);
-});