From 1db1ec7b5ee414c358cb86138b01fbfa7af9251f Mon Sep 17 00:00:00 2001 From: Hiroyasu Nishiyama Date: Wed, 6 Feb 2019 21:53:23 +0900 Subject: [PATCH] fix encoding of file node from binary to utf8 --- nodes/core/storage/50-file.js | 4 ++-- test/nodes/core/storage/50-file_spec.js | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/nodes/core/storage/50-file.js b/nodes/core/storage/50-file.js index 936e2f84f..04805af06 100644 --- a/nodes/core/storage/50-file.js +++ b/nodes/core/storage/50-file.js @@ -76,7 +76,7 @@ module.exports = function(RED) { if (typeof data === "number") { data = data.toString(); } if ((node.appendNewline) && (!Buffer.isBuffer(data))) { data += os.EOL; } if (node.overwriteFile === "true") { - var wstream = fs.createWriteStream(filename, { encoding:'binary', flags:'w', autoClose:true }); + var wstream = fs.createWriteStream(filename, { encoding:'utf8', flags:'w', autoClose:true }); node.wstream = wstream; wstream.on("error", function(err) { node.error(RED._("file.errors.writefail",{error:err.toString()}),msg); @@ -117,7 +117,7 @@ module.exports = function(RED) { } } if (recreateStream) { - node.wstream = fs.createWriteStream(filename, { encoding:'binary', flags:'a', autoClose:true }); + node.wstream = fs.createWriteStream(filename, { encoding:'utf8', flags:'a', autoClose:true }); node.wstream.on("open", function(fd) { try { var stat = fs.statSync(filename); diff --git a/test/nodes/core/storage/50-file_spec.js b/test/nodes/core/storage/50-file_spec.js index b60933649..cf6491c42 100644 --- a/test/nodes/core/storage/50-file_spec.js +++ b/test/nodes/core/storage/50-file_spec.js @@ -79,6 +79,29 @@ describe('file Nodes', function() { }); }); + it('should write multi-byte string to a file', function(done) { + var flow = [{id:"fileNode1", type:"file", name: "fileNode", "filename":fileToTest, "appendNewline":false, "overwriteFile":true, wires: [["helperNode1"]]}, + {id:"helperNode1", type:"helper"}]; + helper.load(fileNode, flow, function() { + var n1 = helper.getNode("fileNode1"); + var n2 = helper.getNode("helperNode1"); + n2.on("input", function(msg) { + try { + var f = fs.readFileSync(fileToTest).toString(); + f.should.have.length(2); + f.should.equal("試験"); + fs.unlinkSync(fileToTest); + msg.should.have.property("payload", "試験"); + done(); + } + catch (e) { + done(e); + } + }); + n1.receive({payload:"試験"}); + }); + }); + it('should append to a file and add newline', function(done) { var flow = [{id:"fileNode1", type:"file", name: "fileNode", "filename":fileToTest, "appendNewline":true, "overwriteFile":false, wires: [["helperNode1"]]}, {id:"helperNode1", type:"helper"}];