0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 15:30:56 +01:00
nodejs/test/mjsunit/test-fs-write.js
Felix Geisendörfer 530328f12b CommonJS testing for node.js
Refactored test suite to use the assert module for testing rather than
mjsunit.
2009-12-05 01:05:16 +01:00

22 lines
572 B
JavaScript

process.mixin(require("./common"));
var fn = path.join(fixturesDir, "write.txt");
var expected = "hello";
var found;
posix.open(fn, process.O_WRONLY | process.O_TRUNC | process.O_CREAT, 0644).addCallback(function (file) {
posix.write(file, expected, 0, "utf8").addCallback(function() {
posix.close(file).addCallback(function() {
posix.cat(fn, process.UTF8).addCallback(function(contents) {
found = contents;
posix.unlink(fn).wait();
});
});
});
});
process.addListener("exit", function () {
assert.equal(expected, found);
});