From abd94a7f5a50f43c797a11b53549ae48fff667c3 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 10 Oct 2016 03:43:44 +0200 Subject: add node_modules to address #4364 --- node_modules/gettext-parser/test/po-parser-test.js | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 node_modules/gettext-parser/test/po-parser-test.js (limited to 'node_modules/gettext-parser/test/po-parser-test.js') diff --git a/node_modules/gettext-parser/test/po-parser-test.js b/node_modules/gettext-parser/test/po-parser-test.js new file mode 100644 index 000000000..8e908fec9 --- /dev/null +++ b/node_modules/gettext-parser/test/po-parser-test.js @@ -0,0 +1,61 @@ +'use strict'; + +var chai = require('chai'); +var gettextParser = require('..'); +var fs = require('fs'); + +var expect = chai.expect; +chai.config.includeStack = true; + +describe('PO Parser', function() { + + describe('UTF-8', function() { + it('should parse', function() { + var po = fs.readFileSync(__dirname + '/fixtures/utf8.po'); + var json = JSON.parse(fs.readFileSync(__dirname + '/fixtures/utf8-po.json', 'utf-8')); + var parsed = gettextParser.po.parse(po); + expect(parsed).to.deep.equal(json); + }); + }); + + describe('UTF-8 as a string', function() { + it('should parse', function() { + var po = fs.readFileSync(__dirname + '/fixtures/utf8.po', 'utf-8'); + var json = JSON.parse(fs.readFileSync(__dirname + '/fixtures/utf8-po.json', 'utf-8')); + var parsed = gettextParser.po.parse(po); + expect(parsed).to.deep.equal(json); + }); + }); + + describe('Stream input', function() { + it('should parse', function(done) { + var po = fs.createReadStream(__dirname + '/fixtures/utf8.po', { + highWaterMark: 1 // ensure that any utf-8 sequences will be broken when streaming + }); + var json = JSON.parse(fs.readFileSync(__dirname + '/fixtures/utf8-po.json', 'utf-8')); + + var parsed; + var stream = po.pipe(gettextParser.po.createParseStream({ + initialTreshold: 800 // home many bytes to cache for parsing the header + })); + stream.on('data', function(data) { + parsed = data; + }); + stream.on('end', function() { + expect(parsed).to.deep.equal(json); + done(); + }); + + }); + }); + + describe('Latin-13', function() { + it('should parse', function() { + var po = fs.readFileSync(__dirname + '/fixtures/latin13.po'); + var json = JSON.parse(fs.readFileSync(__dirname + '/fixtures/latin13-po.json', 'utf-8')); + var parsed = gettextParser.po.parse(po); + expect(parsed).to.deep.equal(json); + }); + }); + +}); \ No newline at end of file -- cgit v1.2.3