mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

The `test/common` module has the capability to identify if any variable is leaked to the global scope and fail the test. So that has to be imported at the beginning. PR-URL: https://github.com/nodejs/node/pull/7786 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
24 lines
560 B
JavaScript
24 lines
560 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
var fs = require('fs');
|
|
var assert = require('assert');
|
|
var path = require('path');
|
|
var file = path.join(common.tmpDir, '/read_stream_fd_test.txt');
|
|
var input = 'hello world';
|
|
var output = '';
|
|
var fd, stream;
|
|
|
|
common.refreshTmpDir();
|
|
fs.writeFileSync(file, input);
|
|
fd = fs.openSync(file, 'r');
|
|
|
|
stream = fs.createReadStream(null, { fd: fd, encoding: 'utf8' });
|
|
stream.on('data', function(data) {
|
|
output += data;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
fs.unlinkSync(file);
|
|
assert.equal(output, input);
|
|
});
|