summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-write-stream-patch-open.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-fs-write-stream-patch-open.js')
-rw-r--r--test/parallel/test-fs-write-stream-patch-open.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/parallel/test-fs-write-stream-patch-open.js b/test/parallel/test-fs-write-stream-patch-open.js
new file mode 100644
index 0000000000..1c82e80213
--- /dev/null
+++ b/test/parallel/test-fs-write-stream-patch-open.js
@@ -0,0 +1,34 @@
+'use strict';
+const common = require('../common');
+const fs = require('fs');
+
+const tmpdir = require('../common/tmpdir');
+
+// Run in a child process because 'out' is opened twice, blocking the tmpdir
+// and preventing cleanup.
+if (process.argv[2] !== 'child') {
+ // Parent
+ const assert = require('assert');
+ const { fork } = require('child_process');
+ tmpdir.refresh();
+
+ // Run test
+ const child = fork(__filename, ['child'], { stdio: 'inherit' });
+ child.on('exit', common.mustCall(function(code) {
+ assert.strictEqual(code, 0);
+ }));
+
+ return;
+}
+
+// Child
+
+common.expectWarning(
+ 'DeprecationWarning',
+ 'WriteStream.prototype.open() is deprecated', 'DEP0XXX');
+const s = fs.createWriteStream(`${tmpdir.path}/out`);
+s.open();
+
+// Allow overriding open().
+fs.WriteStream.prototype.open = common.mustCall();
+fs.createWriteStream('asd');