MagicMirror/tests/e2e/translations_spec.js

223 lines
6.6 KiB
JavaScript
Raw Normal View History

2018-02-15 23:22:52 +01:00
const fs = require("fs");
const path = require("path");
const translations = require("../../translations/translations.js");
const helmet = require("helmet");
const { JSDOM } = require("jsdom");
2018-02-15 23:22:52 +01:00
const express = require("express");
const sinon = require("sinon");
2018-02-15 23:22:52 +01:00
describe("Translations", function () {
2018-02-16 00:08:11 +01:00
let server;
2018-02-15 23:22:52 +01:00
2021-06-08 00:47:40 +02:00
beforeAll(function () {
2018-02-16 00:08:11 +01:00
const app = express();
app.use(helmet());
app.use(function (req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
next();
});
app.use("/translations", express.static(path.join(__dirname, "..", "..", "translations")));
2018-02-15 23:22:52 +01:00
2018-02-16 00:08:11 +01:00
server = app.listen(3000);
});
2018-02-15 23:22:52 +01:00
2021-06-08 00:47:40 +02:00
afterAll(function () {
2018-02-16 00:08:11 +01:00
server.close();
});
2018-02-15 23:22:52 +01:00
it("should have a translation file in the specified path", function () {
for (let language in translations) {
2018-02-15 23:22:52 +01:00
const file = fs.statSync(translations[language]);
2021-06-09 00:19:43 +02:00
expect(file.isFile()).toBe(true);
2018-02-15 23:22:52 +01:00
}
2018-02-16 00:08:11 +01:00
});
describe("loadTranslations", () => {
let dom;
beforeEach(() => {
dom = new JSDOM(
`<script>var Translator = {}; var Log = {log: function(){}}; var config = {language: 'de'};</script>\
<script src="file://${path.join(__dirname, "..", "..", "js", "class.js")}"></script>\
<script src="file://${path.join(__dirname, "..", "..", "js", "module.js")}"></script>`,
{ runScripts: "dangerously", resources: "usable" }
);
});
it("should load translation file", (done) => {
dom.window.onload = async function () {
const { Translator, Module, config } = dom.window;
config.language = "en";
Translator.load = sinon.stub().callsFake((_m, _f, _fb, callback) => callback());
Module.register("name", { getTranslations: () => translations });
const MMM = Module.create("name");
const loaded = sinon.stub();
MMM.loadTranslations(loaded);
2021-06-09 00:19:43 +02:00
expect(loaded.callCount).toBe(1);
expect(Translator.load.args.length).toBe(1);
expect(Translator.load.calledWith(MMM, "translations/en.json", false, sinon.match.func)).toBe(true);
done();
};
});
it("should load translation + fallback file", (done) => {
dom.window.onload = async function () {
const { Translator, Module } = dom.window;
Translator.load = sinon.stub().callsFake((_m, _f, _fb, callback) => callback());
Module.register("name", { getTranslations: () => translations });
const MMM = Module.create("name");
const loaded = sinon.stub();
MMM.loadTranslations(loaded);
2021-06-09 00:19:43 +02:00
expect(loaded.callCount).toBe(1);
expect(Translator.load.args.length).toBe(2);
expect(Translator.load.calledWith(MMM, "translations/de.json", false, sinon.match.func)).toBe(true);
expect(Translator.load.calledWith(MMM, "translations/en.json", true, sinon.match.func)).toBe(true);
done();
};
});
it("should load translation fallback file", (done) => {
dom.window.onload = async function () {
const { Translator, Module, config } = dom.window;
config.language = "--";
Translator.load = sinon.stub().callsFake((_m, _f, _fb, callback) => callback());
Module.register("name", { getTranslations: () => translations });
const MMM = Module.create("name");
const loaded = sinon.stub();
MMM.loadTranslations(loaded);
2021-06-09 00:19:43 +02:00
expect(loaded.callCount).toBe(1);
expect(Translator.load.args.length).toBe(1);
expect(Translator.load.calledWith(MMM, "translations/en.json", true, sinon.match.func)).toBe(true);
done();
};
});
it("should load no file", (done) => {
dom.window.onload = async function () {
const { Translator, Module } = dom.window;
Translator.load = sinon.stub();
Module.register("name", {});
const MMM = Module.create("name");
const loaded = sinon.stub();
MMM.loadTranslations(loaded);
2021-06-09 00:19:43 +02:00
expect(loaded.callCount).toBe(1);
expect(Translator.load.callCount).toBe(0);
done();
};
});
});
2018-02-16 00:08:11 +01:00
const mmm = {
name: "TranslationTest",
file(file) {
return `http://localhost:3000/${file}`;
}
};
describe("Parsing language files through the Translator class", function () {
for (let language in translations) {
it(`should parse ${language}`, function (done) {
const dom = new JSDOM(
`<script>var translations = ${JSON.stringify(translations)}; var Log = {log: function(){}};</script>\
<script src="file://${path.join(__dirname, "..", "..", "js", "translator.js")}">`,
{ runScripts: "dangerously", resources: "usable" }
);
dom.window.onload = function () {
const { Translator } = dom.window;
Translator.load(mmm, translations[language], false, function () {
2021-06-09 00:19:43 +02:00
expect(typeof Translator.translations[mmm.name]).toBe("object");
expect(Object.keys(Translator.translations[mmm.name]).length).toBeGreaterThanOrEqual(1);
2018-02-16 00:08:11 +01:00
done();
});
};
});
}
});
describe("Same keys", function () {
2018-02-16 00:08:11 +01:00
let base;
2021-06-08 00:47:40 +02:00
beforeAll(function (done) {
const dom = new JSDOM(
`<script>var translations = ${JSON.stringify(translations)}; var Log = {log: function(){}};</script>\
<script src="file://${path.join(__dirname, "..", "..", "js", "translator.js")}">`,
{ runScripts: "dangerously", resources: "usable" }
);
dom.window.onload = function () {
const { Translator } = dom.window;
2018-02-16 00:08:11 +01:00
Translator.load(mmm, translations.en, false, function () {
2018-02-16 00:08:11 +01:00
base = Object.keys(Translator.translations[mmm.name]).sort();
done();
});
};
});
for (let language in translations) {
if (language === "en") {
continue;
}
describe(`Translation keys of ${language}`, function () {
2018-02-16 00:08:11 +01:00
let keys;
2021-06-08 00:47:40 +02:00
beforeAll(function (done) {
const dom = new JSDOM(
`<script>var translations = ${JSON.stringify(translations)}; var Log = {log: function(){}};</script>\
<script src="file://${path.join(__dirname, "..", "..", "js", "translator.js")}">`,
{ runScripts: "dangerously", resources: "usable" }
);
dom.window.onload = function () {
const { Translator } = dom.window;
2018-02-16 00:08:11 +01:00
Translator.load(mmm, translations[language], false, function () {
2018-02-16 00:08:11 +01:00
keys = Object.keys(Translator.translations[mmm.name]).sort();
done();
});
};
});
it(`${language} keys should be in base`, function () {
keys.forEach(function (key) {
2021-06-09 00:19:43 +02:00
expect(base.indexOf(key)).toBeGreaterThanOrEqual(0);
2018-02-16 00:08:11 +01:00
});
});
it(`${language} should contain all base keys`, function () {
2018-02-16 00:08:11 +01:00
// TODO: when all translations are fixed, use
2021-06-09 00:19:43 +02:00
// expect(keys).toEqual(base);
2018-02-16 00:08:11 +01:00
// instead of the try-catch-block
try {
2021-06-09 00:19:43 +02:00
expect(keys).toEqual(base);
} catch (e) {
2021-06-09 00:19:43 +02:00
if (e.message.match(/expect.*toEqual/)) {
2021-06-11 23:31:37 +02:00
const diff = base.filter((key) => !keys.includes(key));
console.log(`Missing Translations for language ${language}: ${diff}`);
2018-02-16 00:08:11 +01:00
} else {
throw e;
}
}
2019-06-05 10:23:58 +02:00
});
2018-02-16 00:08:11 +01:00
});
}
});
2018-02-15 23:22:52 +01:00
});