mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
c93e0aaf06
This patch makes buffers the preferred output for fs.read() and fs.readSync(). The old string interface is still supported by converting buffers to strings dynamically. This allows to remove the C++ code for string handling which is also part of this patch.
23 lines
590 B
JavaScript
23 lines
590 B
JavaScript
require('../common');
|
|
var path = require('path'),
|
|
fs = require('fs'),
|
|
filepath = path.join(fixturesDir, 'x.txt'),
|
|
fd = fs.openSync(filepath, 'r'),
|
|
expected = 'xyz\n',
|
|
readCalled = 0;
|
|
|
|
fs.read(fd, expected.length, 0, 'utf-8', function(err, str, bytesRead) {
|
|
readCalled++;
|
|
|
|
assert.ok(!err);
|
|
assert.equal(str, expected);
|
|
assert.equal(bytesRead, expected.length);
|
|
});
|
|
|
|
var r = fs.readSync(fd, expected.length, 0, 'utf-8');
|
|
assert.equal(r[0], expected);
|
|
assert.equal(r[1], expected.length);
|
|
|
|
process.addListener('exit', function() {
|
|
assert.equal(readCalled, 1);
|
|
}); |