0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
nodejs/test/mjsunit/test-fs-write.js
Ryan Dahl 7a2e784ad7 Module refactor - almost CommonJS compatible now
API change summary:

  * require("/sys.js") becomes require("sys")

  * require("circle.js") becomes require("./circle")

  * process.path.join() becomes require("path").join()
2009-10-31 19:10:30 +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 () {
assertEquals(expected, found);
});