mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
ff5a1cf5a8
Refs: https://github.com/nodejs/node/pull/29061 PR-URL: https://github.com/nodejs/node/pull/29969 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
35 lines
852 B
JavaScript
35 lines
852 B
JavaScript
'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', 'DEP0135');
|
|
const s = fs.createWriteStream(`${tmpdir.path}/out`);
|
|
s.open();
|
|
|
|
// Allow overriding open().
|
|
fs.WriteStream.prototype.open = common.mustCall();
|
|
fs.createWriteStream('asd');
|