aboutsummaryrefslogtreecommitdiff
path: root/node_modules/gettext-parser/test/po-parser-test.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-10-10 03:43:44 +0200
commitabd94a7f5a50f43c797a11b53549ae48fff667c3 (patch)
treeab8ed457f65cdd72e13e0571d2975729428f1551 /node_modules/gettext-parser/test/po-parser-test.js
parenta0247c6a3fd6a09a41a7e35a3441324c4dcb58be (diff)
add node_modules to address #4364
Diffstat (limited to 'node_modules/gettext-parser/test/po-parser-test.js')
-rw-r--r--node_modules/gettext-parser/test/po-parser-test.js61
1 files changed, 61 insertions, 0 deletions
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