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.
27 lines
710 B
27 lines
710 B
require("../common");
|
|
var path = require('path');
|
|
var Buffer = require('buffer').Buffer;
|
|
var fs = require('fs');
|
|
var fn = path.join(fixturesDir, "write.txt");
|
|
var expected = "ümlaut.";
|
|
var found;
|
|
|
|
fs.open(fn, 'w', 0644, function (err, fd) {
|
|
if (err) throw err;
|
|
puts('open done');
|
|
fs.write(fd, expected, 0, "utf8", function (err, written) {
|
|
puts('write done');
|
|
if (err) throw err;
|
|
assert.equal(Buffer.byteLength(expected), written);
|
|
fs.closeSync(fd);
|
|
found = fs.readFileSync(fn, 'utf8');
|
|
puts('expected: ' + expected.toJSON());
|
|
puts('found: ' + found.toJSON());
|
|
fs.unlinkSync(fn);
|
|
});
|
|
});
|
|
|
|
process.addListener("exit", function () {
|
|
assert.equal(expected, found);
|
|
});
|
|
|
|
|