mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
560 B
23 lines
560 B
'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);
|
|
});
|
|
|