Add failing spec for node.fs.write
authorJon Crosby <jon@joncrosby.me>
Thu, 17 Sep 2009 06:28:31 +0000 (23:28 -0700)
committerRyan Dahl <ry@tinyclouds.org>
Thu, 17 Sep 2009 12:58:01 +0000 (14:58 +0200)
test/mjsunit/test-fs-write.js [new file with mode: 0644]

diff --git a/test/mjsunit/test-fs-write.js b/test/mjsunit/test-fs-write.js
new file mode 100644 (file)
index 0000000..38a72de
--- /dev/null
@@ -0,0 +1,23 @@
+include("mjsunit.js");
+
+var dirname = node.path.dirname(__filename);
+var fixtures = node.path.join(dirname, "fixtures");
+var path = node.path.join(fixtures, "write.txt");
+var expected = "hello";
+var found;
+
+node.fs.open(path, node.O_WRONLY | node.O_TRUNC | node.O_CREAT, 0644).addCallback(function (file) {
+  node.fs.write(file, expected, 0, "utf8").addCallback(function() {
+    node.fs.close(file).addCallback(function() {
+      node.fs.cat(path, node.UTF8).addCallback(function(contents) {
+        found = contents;
+        node.fs.unlink(path).wait();
+      });
+    });
+  });
+});
+
+process.addListener("exit", function () {
+  assertEquals(expected, found);
+});
+