summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-stream-double-close.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-fs-stream-double-close.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-fs-stream-double-close.js')
-rw-r--r--test/parallel/test-fs-stream-double-close.js19
1 files changed, 4 insertions, 15 deletions
diff --git a/test/parallel/test-fs-stream-double-close.js b/test/parallel/test-fs-stream-double-close.js
index 6fb37d1ad2..df50102937 100644
--- a/test/parallel/test-fs-stream-double-close.js
+++ b/test/parallel/test-fs-stream-double-close.js
@@ -1,6 +1,5 @@
'use strict';
var common = require('../common');
-var assert = require('assert');
var fs = require('fs');
common.refreshTmpDir();
@@ -20,24 +19,14 @@ function test1(stream) {
function test2(stream) {
stream.destroy();
- stream.on('open', function(fd) {
+ stream.on('open', common.mustCall(function(fd) {
stream.destroy();
- open_cb_called++;
- });
- process.on('exit', function() {
- assert.equal(open_cb_called, 1);
- });
- var open_cb_called = 0;
+ }));
}
function test3(stream) {
- stream.on('open', function(fd) {
+ stream.on('open', common.mustCall(function(fd) {
stream.destroy();
stream.destroy();
- open_cb_called++;
- });
- process.on('exit', function() {
- assert.equal(open_cb_called, 1);
- });
- var open_cb_called = 0;
+ }));
}