aboutsummaryrefslogtreecommitdiff
path: root/node_modules/gettext-parser/test/mo-compiler-test.js
blob: 77b820f8173f759e182681b4963bc562573ca3e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
'use strict';

var chai = require('chai');
var gettextParser = require('..');
var fs = require('fs');

var expect = chai.expect;
chai.config.includeStack = true;

describe('MO Compiler', function() {

    describe('UTF-8', function() {
        it('should compile', function() {
            var json = JSON.parse(fs.readFileSync(__dirname + '/fixtures/utf8-mo.json', 'utf-8'));
            var mo = fs.readFileSync(__dirname + '/fixtures/utf8.mo');

            var compiled = gettextParser.mo.compile(json);
            expect(compiled).to.deep.equal(mo);
        });
    });

    describe('Latin-13', function() {
        it('should compile', function() {
            var json = JSON.parse(fs.readFileSync(__dirname + '/fixtures/latin13-mo.json', 'utf-8'));
            var mo = fs.readFileSync(__dirname + '/fixtures/latin13.mo');
            var compiled = gettextParser.mo.compile(json);
            expect(compiled).to.deep.equal(mo);
        });
    });
});