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.
22 lines
540 B
22 lines
540 B
'use strict';
|
|
const common = require('../common');
|
|
const fs = require('fs');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const file = path.join(common.tmpDir, '/read_stream_fd_test.txt');
|
|
const input = 'hello world';
|
|
|
|
let output = '';
|
|
common.refreshTmpDir();
|
|
fs.writeFileSync(file, input);
|
|
|
|
const fd = fs.openSync(file, 'r');
|
|
const stream = fs.createReadStream(null, { fd: fd, encoding: 'utf8' });
|
|
|
|
stream.on('data', (data) => {
|
|
output += data;
|
|
});
|
|
|
|
process.on('exit', () => {
|
|
assert.strictEqual(output, input);
|
|
});
|
|
|