Enable and apply ESLint Jest rules (#3270)

Jest was in the plugin array of the ESLint configuration, but no rules
were enabled. So ESLint hasn't checked any Jest rules yet.

So I activated the recommended Jest rules and added a few more. Then I
fixed the issues (mostly automatically). I have deactivated the rules
"jest/expect-expect" and "jest/no-done-callback" for the time being, as
they would have entailed major changes. I didn't want to make the PR too
big.

I'm not a Jest expert, but the changes so far look good to me. What do
you think of that @khassel? 🙂
This commit is contained in:
Kristjan ESPERANTO 2023-11-20 20:11:41 +01:00 committed by GitHub
parent 679a413788
commit 7098f1e41f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
32 changed files with 113 additions and 105 deletions

View File

@ -1,6 +1,6 @@
{ {
"extends": ["eslint:recommended", "plugin:import/recommended", "plugin:jsdoc/recommended", "plugin:prettier/recommended"], "extends": ["eslint:recommended", "plugin:import/recommended", "plugin:jest/recommended", "plugin:jsdoc/recommended", "plugin:prettier/recommended"],
"plugins": ["jest"], "plugins": [],
"env": { "env": {
"browser": true, "browser": true,
"es2022": true, "es2022": true,
@ -26,6 +26,13 @@
"import/order": "error", "import/order": "error",
"import/extensions": "error", "import/extensions": "error",
"import/newline-after-import": "error", "import/newline-after-import": "error",
"jest/consistent-test-it": "warn",
"jest/expect-expect": "off",
"jest/no-done-callback": "off",
"jest/prefer-expect-resolves": "warn",
"jest/prefer-mock-promise-shorthand": "warn",
"jest/prefer-to-be": "warn",
"jest/prefer-to-have-length": "warn",
"no-param-reassign": "error", "no-param-reassign": "error",
"no-prototype-builtins": "off", "no-prototype-builtins": "off",
"no-throw-literal": "error", "no-throw-literal": "error",

View File

@ -14,6 +14,7 @@ _This release is scheduled to be released on 2024-01-01._
- Added updatenotification Updater (for 3rd party modules) - Added updatenotification Updater (for 3rd party modules)
- Added node 21 to the test matrix - Added node 21 to the test matrix
- Added transform object to calendar:customEvents - Added transform object to calendar:customEvents
- Added ESLint rules for jest
### Removed ### Removed

View File

@ -25,22 +25,22 @@ describe("AnimateCSS integration Test", () => {
const doTest = async (animationIn, animationOut) => { const doTest = async (animationIn, animationOut) => {
await helpers.getDocument(); await helpers.getDocument();
let elem = await helpers.waitForElement(`.compliments`); let elem = await helpers.waitForElement(`.compliments`);
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
let styles = window.getComputedStyle(elem); let styles = window.getComputedStyle(elem);
if (animationIn && animationIn !== "") { if (animationIn && animationIn !== "") {
expect(styles._values["animation-name"]).toBe(animationIn); expect(styles._values["animation-name"]).toBe(animationIn);
} else { } else {
expect(styles._values["animation-name"]).toBe(undefined); expect(styles._values["animation-name"]).toBeUndefined();
} }
if (animationOut && animationOut !== "") { if (animationOut && animationOut !== "") {
elem = await helpers.waitForElement(`.compliments.animate__animated.animate__${animationOut}`); elem = await helpers.waitForElement(`.compliments.animate__animated.animate__${animationOut}`);
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
styles = window.getComputedStyle(elem); styles = window.getComputedStyle(elem);
expect(styles._values["animation-name"]).toBe(animationOut); expect(styles._values["animation-name"]).toBe(animationOut);
} else { } else {
expect(styles._values["animation-name"]).toBe(undefined); expect(styles._values["animation-name"]).toBeUndefined();
} }
}; };

View File

@ -21,7 +21,7 @@ describe("App environment", () => {
it("should show the title MagicMirror²", async () => { it("should show the title MagicMirror²", async () => {
const elem = await helpers.waitForElement("title"); const elem = await helpers.waitForElement("title");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toBe("MagicMirror²"); expect(elem.textContent).toBe("MagicMirror²");
}); });
}); });

View File

@ -20,7 +20,7 @@ describe("All font files from roboto.css should be downloadable", () => {
await helpers.stopApplication(); await helpers.stopApplication();
}); });
test.each(fontFiles)("should return 200 HTTP code for file '%s'", async (fontFile) => { it.each(fontFiles)("should return 200 HTTP code for file '%s'", async (fontFile) => {
const fontUrl = `http://localhost:8080/fonts/${fontFile}`; const fontUrl = `http://localhost:8080/fonts/${fontFile}`;
const res = await fetch(fontUrl); const res = await fetch(fontUrl);
expect(res.status).toBe(200); expect(res.status).toBe(200);

View File

@ -82,6 +82,6 @@ exports.waitForAllElements = (selector) => {
exports.testMatch = async (element, regex) => { exports.testMatch = async (element, regex) => {
const elem = await this.waitForElement(element); const elem = await this.waitForElement(element);
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toMatch(regex); expect(elem.textContent).toMatch(regex);
}; };

View File

@ -3,7 +3,7 @@ const helpers = require("./global-setup");
exports.getText = async (element, result) => { exports.getText = async (element, result) => {
const elem = await helpers.waitForElement(element); const elem = await helpers.waitForElement(element);
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect( expect(
elem.textContent elem.textContent
.trim() .trim()

View File

@ -11,7 +11,7 @@ describe("Alert module", () => {
it("should show the welcome message", async () => { it("should show the welcome message", async () => {
const elem = await helpers.waitForElement(".ns-box .ns-box-inner .light.bright.small"); const elem = await helpers.waitForElement(".ns-box .ns-box-inner .light.bright.small");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toContain("Welcome, start was successful!"); expect(elem.textContent).toContain("Welcome, start was successful!");
}); });
}); });

View File

@ -9,17 +9,17 @@ describe("Calendar module", () => {
*/ */
const testElementLength = async (element, result, not) => { const testElementLength = async (element, result, not) => {
const elem = await helpers.waitForAllElements(element); const elem = await helpers.waitForAllElements(element);
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
if (not === "not") { if (not === "not") {
expect(elem.length).not.toBe(result); expect(elem).not.toHaveLength(result);
} else { } else {
expect(elem.length).toBe(result); expect(elem).toHaveLength(result);
} }
}; };
const testTextContain = async (element, text) => { const testTextContain = async (element, text) => {
const elem = await helpers.waitForElement(element, "undefinedLoading"); const elem = await helpers.waitForElement(element, "undefinedLoading");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toContain(text); expect(elem.textContent).toContain(text);
}; };

View File

@ -72,7 +72,7 @@ describe("Clock module", () => {
it("should not show the time when digital clock is shown", async () => { it("should not show the time when digital clock is shown", async () => {
const elem = document.querySelector(".clock .digital .time"); const elem = document.querySelector(".clock .digital .time");
expect(elem).toBe(null); expect(elem).toBeNull();
}); });
}); });
@ -84,12 +84,12 @@ describe("Clock module", () => {
it("should show the sun times", async () => { it("should show the sun times", async () => {
const elem = await helpers.waitForElement(".clock .digital .sun"); const elem = await helpers.waitForElement(".clock .digital .sun");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
}); });
it("should show the moon times", async () => { it("should show the moon times", async () => {
const elem = await helpers.waitForElement(".clock .digital .moon"); const elem = await helpers.waitForElement(".clock .digital .moon");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
}); });
}); });
@ -108,7 +108,7 @@ describe("Clock module", () => {
const currentWeekNumber = moment().week(); const currentWeekNumber = moment().week();
const weekToShow = `Week ${currentWeekNumber}`; const weekToShow = `Week ${currentWeekNumber}`;
const elem = await helpers.waitForElement(".clock .week"); const elem = await helpers.waitForElement(".clock .week");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toBe(weekToShow); expect(elem.textContent).toBe(weekToShow);
}); });
}); });
@ -121,7 +121,7 @@ describe("Clock module", () => {
it("should show the analog clock face", async () => { it("should show the analog clock face", async () => {
const elem = helpers.waitForElement(".clock-circle"); const elem = helpers.waitForElement(".clock-circle");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
}); });
}); });
@ -133,9 +133,9 @@ describe("Clock module", () => {
it("should show the analog clock face and the date", async () => { it("should show the analog clock face and the date", async () => {
const elemClock = helpers.waitForElement(".clock-circle"); const elemClock = helpers.waitForElement(".clock-circle");
await expect(elemClock).not.toBe(null); await expect(elemClock).not.toBeNull();
const elemDate = helpers.waitForElement(".clock .date"); const elemDate = helpers.waitForElement(".clock .date");
await expect(elemDate).not.toBe(null); await expect(elemDate).not.toBeNull();
}); });
}); });
}); });

View File

@ -7,9 +7,9 @@ describe("Compliments module", () => {
*/ */
const doTest = async (complimentsArray) => { const doTest = async (complimentsArray) => {
let elem = await helpers.waitForElement(".compliments"); let elem = await helpers.waitForElement(".compliments");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
elem = await helpers.waitForElement(".module-content"); elem = await helpers.waitForElement(".module-content");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(complimentsArray).toContain(elem.textContent); expect(complimentsArray).toContain(elem.textContent);
}; };

View File

@ -13,7 +13,7 @@ describe("Test helloworld module", () => {
it("Test message helloworld module", async () => { it("Test message helloworld module", async () => {
const elem = await helpers.waitForElement(".helloworld"); const elem = await helpers.waitForElement(".helloworld");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toContain("Test HelloWorld Module"); expect(elem.textContent).toContain("Test HelloWorld Module");
}); });
}); });
@ -26,7 +26,7 @@ describe("Test helloworld module", () => {
it("Test message helloworld module", async () => { it("Test message helloworld module", async () => {
const elem = await helpers.waitForElement(".helloworld"); const elem = await helpers.waitForElement(".helloworld");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toContain("Hello World!"); expect(elem.textContent).toContain("Hello World!");
}); });
}); });

View File

@ -13,20 +13,20 @@ describe("Newsfeed module", () => {
it("should show the newsfeed title", async () => { it("should show the newsfeed title", async () => {
const elem = await helpers.waitForElement(".newsfeed .newsfeed-source"); const elem = await helpers.waitForElement(".newsfeed .newsfeed-source");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toContain("Rodrigo Ramirez Blog"); expect(elem.textContent).toContain("Rodrigo Ramirez Blog");
}); });
it("should show the newsfeed article", async () => { it("should show the newsfeed article", async () => {
const elem = await helpers.waitForElement(".newsfeed .newsfeed-title"); const elem = await helpers.waitForElement(".newsfeed .newsfeed-title");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toContain("QPanel"); expect(elem.textContent).toContain("QPanel");
}); });
it("should NOT show the newsfeed description", async () => { it("should NOT show the newsfeed description", async () => {
await helpers.waitForElement(".newsfeed"); await helpers.waitForElement(".newsfeed");
const elem = document.querySelector(".newsfeed .newsfeed-desc"); const elem = document.querySelector(".newsfeed .newsfeed-desc");
expect(elem).toBe(null); expect(elem).toBeNull();
}); });
}); });
@ -38,14 +38,14 @@ describe("Newsfeed module", () => {
it("should not show articles with prohibited words", async () => { it("should not show articles with prohibited words", async () => {
const elem = await helpers.waitForElement(".newsfeed .newsfeed-title"); const elem = await helpers.waitForElement(".newsfeed .newsfeed-title");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toContain("Problema VirtualBox"); expect(elem.textContent).toContain("Problema VirtualBox");
}); });
it("should show the newsfeed description", async () => { it("should show the newsfeed description", async () => {
const elem = await helpers.waitForElement(".newsfeed .newsfeed-desc"); const elem = await helpers.waitForElement(".newsfeed .newsfeed-desc");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent.length).not.toBe(0); expect(elem.textContent).not.toHaveLength(0);
}); });
}); });
@ -57,7 +57,7 @@ describe("Newsfeed module", () => {
it("should show malformed url warning", async () => { it("should show malformed url warning", async () => {
const elem = await helpers.waitForElement(".newsfeed .small", "No news at the moment."); const elem = await helpers.waitForElement(".newsfeed .small", "No news at the moment.");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toContain("Error in the Newsfeed module. Malformed url."); expect(elem.textContent).toContain("Error in the Newsfeed module. Malformed url.");
}); });
}); });
@ -70,7 +70,7 @@ describe("Newsfeed module", () => {
it("should show empty items info message", async () => { it("should show empty items info message", async () => {
const elem = await helpers.waitForElement(".newsfeed .small"); const elem = await helpers.waitForElement(".newsfeed .small");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toContain("No news at the moment."); expect(elem.textContent).toContain("No news at the moment.");
}); });
}); });

View File

@ -49,7 +49,7 @@ describe("Weather module", () => {
it("should render windDirection with an arrow", async () => { it("should render windDirection with an arrow", async () => {
const elem = await helpers.waitForElement(".weather .normal.medium sup i.fa-long-arrow-alt-down"); const elem = await helpers.waitForElement(".weather .normal.medium sup i.fa-long-arrow-alt-down");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.outerHTML).toContain("transform:rotate(250deg)"); expect(elem.outerHTML).toContain("transform:rotate(250deg)");
}); });

View File

@ -24,7 +24,7 @@ describe("Weather module: Weather Forecast", () => {
for (const [index, icon] of icons.entries()) { for (const [index, icon] of icons.entries()) {
it(`should render icon ${icon}`, async () => { it(`should render icon ${icon}`, async () => {
const elem = await helpers.waitForElement(`.weather table.small tr:nth-child(${index + 1}) td:nth-child(2) span.wi-${icon}`); const elem = await helpers.waitForElement(`.weather table.small tr:nth-child(${index + 1}) td:nth-child(2) span.wi-${icon}`);
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
}); });
} }
@ -46,7 +46,7 @@ describe("Weather module: Weather Forecast", () => {
for (const [index, opacity] of opacities.entries()) { for (const [index, opacity] of opacities.entries()) {
it(`should render fading of rows with opacity=${opacity}`, async () => { it(`should render fading of rows with opacity=${opacity}`, async () => {
const elem = await helpers.waitForElement(`.weather table.small tr:nth-child(${index + 1})`); const elem = await helpers.waitForElement(`.weather table.small tr:nth-child(${index + 1})`);
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.outerHTML).toContain(`<tr style="opacity: ${opacity};">`); expect(elem.outerHTML).toContain(`<tr style="opacity: ${opacity};">`);
}); });
} }
@ -72,14 +72,14 @@ describe("Weather module: Weather Forecast", () => {
it("should render custom table class", async () => { it("should render custom table class", async () => {
const elem = await helpers.waitForElement(".weather table.myTableClass"); const elem = await helpers.waitForElement(".weather table.myTableClass");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
}); });
it("should render colored rows", async () => { it("should render colored rows", async () => {
const table = await helpers.waitForElement(".weather table.myTableClass"); const table = await helpers.waitForElement(".weather table.myTableClass");
expect(table).not.toBe(null); expect(table).not.toBeNull();
expect(table.rows).not.toBe(null); expect(table.rows).not.toBeNull();
expect(table.rows.length).toBe(5); expect(table.rows).toHaveLength(5);
}); });
const precipitations = [undefined, "2.51 mm"]; const precipitations = [undefined, "2.51 mm"];

View File

@ -11,14 +11,14 @@ describe("Display of modules", () => {
it("should show the test header", async () => { it("should show the test header", async () => {
const elem = await helpers.waitForElement("#module_0_helloworld .module-header"); const elem = await helpers.waitForElement("#module_0_helloworld .module-header");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
// textContent gibt hier lowercase zurück, das uppercase wird durch css realisiert, was daher nicht in textContent landet // textContent gibt hier lowercase zurück, das uppercase wird durch css realisiert, was daher nicht in textContent landet
expect(elem.textContent).toBe("test_header"); expect(elem.textContent).toBe("test_header");
}); });
it("should show no header if no header text is specified", async () => { it("should show no header if no header text is specified", async () => {
const elem = await helpers.waitForElement("#module_1_helloworld .module-header"); const elem = await helpers.waitForElement("#module_1_helloworld .module-header");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toBe("undefined"); expect(elem.textContent).toBe("undefined");
}); });
}); });

View File

@ -11,13 +11,13 @@ describe("Check configuration without modules", () => {
it("shows the message MagicMirror² title", async () => { it("shows the message MagicMirror² title", async () => {
const elem = await helpers.waitForElement("#module_1_helloworld .module-content"); const elem = await helpers.waitForElement("#module_1_helloworld .module-content");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toContain("MagicMirror²"); expect(elem.textContent).toContain("MagicMirror²");
}); });
it("shows the url of michael's website", async () => { it("shows the url of michael's website", async () => {
const elem = await helpers.waitForElement("#module_5_helloworld .module-content"); const elem = await helpers.waitForElement("#module_5_helloworld .module-content");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toContain("www.michaelteeuw.nl"); expect(elem.textContent).toContain("www.michaelteeuw.nl");
}); });
}); });

View File

@ -15,7 +15,7 @@ describe("Position of modules", () => {
const className = position.replace("_", "."); const className = position.replace("_", ".");
it(`should show text in ${position}`, async () => { it(`should show text in ${position}`, async () => {
const elem = await helpers.waitForElement(`.${className}`); const elem = await helpers.waitForElement(`.${className}`);
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(elem.textContent).toContain(`Text in ${position}`); expect(elem.textContent).toContain(`Text in ${position}`);
}); });
} }

View File

@ -55,7 +55,7 @@ describe("Translations", () => {
await MMM.loadTranslations(); await MMM.loadTranslations();
expect(Translator.load.args.length).toBe(1); expect(Translator.load.args).toHaveLength(1);
expect(Translator.load.calledWith(MMM, "translations/en.json", false)).toBe(true); expect(Translator.load.calledWith(MMM, "translations/en.json", false)).toBe(true);
done(); done();
@ -72,7 +72,7 @@ describe("Translations", () => {
await MMM.loadTranslations(); await MMM.loadTranslations();
expect(Translator.load.args.length).toBe(2); expect(Translator.load.args).toHaveLength(2);
expect(Translator.load.calledWith(MMM, "translations/de.json", false)).toBe(true); expect(Translator.load.calledWith(MMM, "translations/de.json", false)).toBe(true);
expect(Translator.load.calledWith(MMM, "translations/en.json", true)).toBe(true); expect(Translator.load.calledWith(MMM, "translations/en.json", true)).toBe(true);
@ -91,7 +91,7 @@ describe("Translations", () => {
await MMM.loadTranslations(); await MMM.loadTranslations();
expect(Translator.load.args.length).toBe(1); expect(Translator.load.args).toHaveLength(1);
expect(Translator.load.calledWith(MMM, "translations/en.json", true)).toBe(true); expect(Translator.load.calledWith(MMM, "translations/en.json", true)).toBe(true);
done(); done();

View File

@ -12,8 +12,8 @@ describe("Electron app environment", () => {
it("should open browserwindow", async () => { it("should open browserwindow", async () => {
const module = await helpers.getElement("#module_0_helloworld"); const module = await helpers.getElement("#module_0_helloworld");
expect(await module.textContent()).toContain("Test Display Header"); await expect(module.textContent()).resolves.toContain("Test Display Header");
expect(global.electronApp.windows().length).toBe(1); expect(global.electronApp.windows()).toHaveLength(1);
}); });
}); });
@ -29,7 +29,7 @@ describe("Development console tests", () => {
it("should open browserwindow and dev console", async () => { it("should open browserwindow and dev console", async () => {
while (global.electronApp.windows().length < 2) await events.once(global.electronApp, "window"); while (global.electronApp.windows().length < 2) await events.once(global.electronApp, "window");
const pageArray = await global.electronApp.windows(); const pageArray = await global.electronApp.windows();
expect(pageArray.length).toBe(2); expect(pageArray).toHaveLength(2);
for (const page of pageArray) { for (const page of pageArray) {
expect(["MagicMirror²", "DevTools"]).toContain(await page.title()); expect(["MagicMirror²", "DevTools"]).toContain(await page.title());
} }

View File

@ -37,9 +37,9 @@ exports.stopApplication = async () => {
}; };
exports.getElement = async (selector) => { exports.getElement = async (selector) => {
expect(global.page); expect(global.page).not.toBeNull();
let elem = global.page.locator(selector); let elem = global.page.locator(selector);
await elem.waitFor(); await elem.waitFor();
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
return elem; return elem;
}; };

View File

@ -3,7 +3,7 @@ const helpers = require("./global-setup");
exports.getText = async (element, result) => { exports.getText = async (element, result) => {
const elem = await helpers.getElement(element); const elem = await helpers.getElement(element);
await expect(elem).not.toBe(null); await expect(elem).not.toBeNull();
const text = await elem.textContent(); const text = await elem.textContent();
await expect( await expect(
text text

View File

@ -7,7 +7,7 @@ describe("Calendar module", () => {
*/ */
const doTest = async (cssClass) => { const doTest = async (cssClass) => {
let elem = await helpers.getElement(`.calendar .module-content .event${cssClass}`); let elem = await helpers.getElement(`.calendar .module-content .event${cssClass}`);
expect(await elem.isVisible()).toBe(true); await expect(elem.isVisible()).resolves.toBe(true);
}; };
afterEach(async () => { afterEach(async () => {

View File

@ -8,7 +8,7 @@ describe("Compliments module", () => {
const doTest = async (complimentsArray) => { const doTest = async (complimentsArray) => {
await helpers.getElement(".compliments"); await helpers.getElement(".compliments");
const elem = await helpers.getElement(".module-content"); const elem = await helpers.getElement(".module-content");
expect(elem).not.toBe(null); expect(elem).not.toBeNull();
expect(complimentsArray).toContain(await elem.textContent()); expect(complimentsArray).toContain(await elem.textContent());
}; };

View File

@ -197,7 +197,7 @@ describe("Translator", () => {
}; };
await Translator.load(mmm, file, false); await Translator.load(mmm, file, false);
expect(Translator.translations[mmm.name]).toBe(undefined); expect(Translator.translations[mmm.name]).toBeUndefined();
expect(Translator.translationsFallback[mmm.name]).toEqual({ expect(Translator.translationsFallback[mmm.name]).toEqual({
Hello: "Hallo" Hello: "Hallo"
}); });

View File

@ -35,43 +35,43 @@ describe("server_functions tests", () => {
}; };
}); });
test("Calls correct URL once", async () => { it("Calls correct URL once", async () => {
const urlToCall = "http://www.test.com/path?param1=value1"; const urlToCall = "http://www.test.com/path?param1=value1";
request.url = `/cors?url=${urlToCall}`; request.url = `/cors?url=${urlToCall}`;
await cors(request, corsResponse); await cors(request, corsResponse);
expect(fetchMock.mock.calls.length).toBe(1); expect(fetchMock.mock.calls).toHaveLength(1);
expect(fetchMock.mock.calls[0][0]).toBe(urlToCall); expect(fetchMock.mock.calls[0][0]).toBe(urlToCall);
}); });
test("Forewards Content-Type if json", async () => { it("Forewards Content-Type if json", async () => {
fetchResponseHeadersGet.mockImplementation(() => "json"); fetchResponseHeadersGet.mockImplementation(() => "json");
await cors(request, corsResponse); await cors(request, corsResponse);
expect(fetchResponseHeadersGet.mock.calls.length).toBe(1); expect(fetchResponseHeadersGet.mock.calls).toHaveLength(1);
expect(fetchResponseHeadersGet.mock.calls[0][0]).toBe("Content-Type"); expect(fetchResponseHeadersGet.mock.calls[0][0]).toBe("Content-Type");
expect(corsResponse.set.mock.calls.length).toBe(1); expect(corsResponse.set.mock.calls).toHaveLength(1);
expect(corsResponse.set.mock.calls[0][0]).toBe("Content-Type"); expect(corsResponse.set.mock.calls[0][0]).toBe("Content-Type");
expect(corsResponse.set.mock.calls[0][1]).toBe("json"); expect(corsResponse.set.mock.calls[0][1]).toBe("json");
}); });
test("Forewards Content-Type if xml", async () => { it("Forewards Content-Type if xml", async () => {
fetchResponseHeadersGet.mockImplementation(() => "xml"); fetchResponseHeadersGet.mockImplementation(() => "xml");
await cors(request, corsResponse); await cors(request, corsResponse);
expect(fetchResponseHeadersGet.mock.calls.length).toBe(1); expect(fetchResponseHeadersGet.mock.calls).toHaveLength(1);
expect(fetchResponseHeadersGet.mock.calls[0][0]).toBe("Content-Type"); expect(fetchResponseHeadersGet.mock.calls[0][0]).toBe("Content-Type");
expect(corsResponse.set.mock.calls.length).toBe(1); expect(corsResponse.set.mock.calls).toHaveLength(1);
expect(corsResponse.set.mock.calls[0][0]).toBe("Content-Type"); expect(corsResponse.set.mock.calls[0][0]).toBe("Content-Type");
expect(corsResponse.set.mock.calls[0][1]).toBe("xml"); expect(corsResponse.set.mock.calls[0][1]).toBe("xml");
}); });
test("Sends correct data from response", async () => { it("Sends correct data from response", async () => {
const responseData = "some data"; const responseData = "some data";
fetchResponseHeadersText.mockImplementation(() => responseData); fetchResponseHeadersText.mockImplementation(() => responseData);
@ -82,11 +82,11 @@ describe("server_functions tests", () => {
await cors(request, corsResponse); await cors(request, corsResponse);
expect(fetchResponseHeadersText.mock.calls.length).toBe(1); expect(fetchResponseHeadersText.mock.calls).toHaveLength(1);
expect(sentData).toBe(responseData); expect(sentData).toBe(responseData);
}); });
test("Sends error data from response", async () => { it("Sends error data from response", async () => {
const error = new Error("error data"); const error = new Error("error data");
fetchResponseHeadersText.mockImplementation(() => { fetchResponseHeadersText.mockImplementation(() => {
throw error; throw error;
@ -99,32 +99,32 @@ describe("server_functions tests", () => {
await cors(request, corsResponse); await cors(request, corsResponse);
expect(fetchResponseHeadersText.mock.calls.length).toBe(1); expect(fetchResponseHeadersText.mock.calls).toHaveLength(1);
expect(sentData).toBe(error); expect(sentData).toBe(error);
}); });
test("Fetches with user agent by default", async () => { it("Fetches with user agent by default", async () => {
await cors(request, corsResponse); await cors(request, corsResponse);
expect(fetchMock.mock.calls.length).toBe(1); expect(fetchMock.mock.calls).toHaveLength(1);
expect(fetchMock.mock.calls[0][1]).toHaveProperty("headers"); expect(fetchMock.mock.calls[0][1]).toHaveProperty("headers");
expect(fetchMock.mock.calls[0][1].headers).toHaveProperty("User-Agent"); expect(fetchMock.mock.calls[0][1].headers).toHaveProperty("User-Agent");
}); });
test("Fetches with specified headers", async () => { it("Fetches with specified headers", async () => {
const headersParam = "sendheaders=header1:value1,header2:value2"; const headersParam = "sendheaders=header1:value1,header2:value2";
const urlParam = "http://www.test.com/path?param1=value1"; const urlParam = "http://www.test.com/path?param1=value1";
request.url = `/cors?${headersParam}&url=${urlParam}`; request.url = `/cors?${headersParam}&url=${urlParam}`;
await cors(request, corsResponse); await cors(request, corsResponse);
expect(fetchMock.mock.calls.length).toBe(1); expect(fetchMock.mock.calls).toHaveLength(1);
expect(fetchMock.mock.calls[0][1]).toHaveProperty("headers"); expect(fetchMock.mock.calls[0][1]).toHaveProperty("headers");
expect(fetchMock.mock.calls[0][1].headers).toHaveProperty("header1", "value1"); expect(fetchMock.mock.calls[0][1].headers).toHaveProperty("header1", "value1");
expect(fetchMock.mock.calls[0][1].headers).toHaveProperty("header2", "value2"); expect(fetchMock.mock.calls[0][1].headers).toHaveProperty("header2", "value2");
}); });
test("Sends specified headers", async () => { it("Sends specified headers", async () => {
fetchResponseHeadersGet.mockImplementation((input) => input.replace("header", "value")); fetchResponseHeadersGet.mockImplementation((input) => input.replace("header", "value"));
const expectedheaders = "expectedheaders=header1,header2"; const expectedheaders = "expectedheaders=header1,header2";
@ -133,9 +133,9 @@ describe("server_functions tests", () => {
await cors(request, corsResponse); await cors(request, corsResponse);
expect(fetchMock.mock.calls.length).toBe(1); expect(fetchMock.mock.calls).toHaveLength(1);
expect(fetchMock.mock.calls[0][1]).toHaveProperty("headers"); expect(fetchMock.mock.calls[0][1]).toHaveProperty("headers");
expect(corsResponse.set.mock.calls.length).toBe(3); expect(corsResponse.set.mock.calls).toHaveLength(3);
expect(corsResponse.set.mock.calls[0][0]).toBe("Content-Type"); expect(corsResponse.set.mock.calls[0][0]).toBe("Content-Type");
expect(corsResponse.set.mock.calls[1][0]).toBe("header1"); expect(corsResponse.set.mock.calls[1][0]).toBe("header1");
expect(corsResponse.set.mock.calls[1][1]).toBe("value1"); expect(corsResponse.set.mock.calls[1][1]).toBe("value1");

View File

@ -103,7 +103,7 @@ describe("Updatenotification", () => {
execMock.mockRejectedValueOnce(errorMessage); execMock.mockRejectedValueOnce(errorMessage);
const repos = await gitHelper.getRepos(); const repos = await gitHelper.getRepos();
expect(repos.length).toBe(0); expect(repos).toHaveLength(0);
const { error } = require("logger"); const { error } = require("logger");
expect(error).toHaveBeenCalledWith(`Failed to retrieve repo info for ${moduleName}: Failed to retrieve status`); expect(error).toHaveBeenCalledWith(`Failed to retrieve repo info for ${moduleName}: Failed to retrieve status`);
@ -142,7 +142,7 @@ describe("Updatenotification", () => {
execMock.mockRejectedValueOnce(errorMessage); execMock.mockRejectedValueOnce(errorMessage);
const repos = await gitHelper.getRepos(); const repos = await gitHelper.getRepos();
expect(repos.length).toBe(0); expect(repos).toHaveLength(0);
const { error } = require("logger"); const { error } = require("logger");
expect(error).toHaveBeenCalledWith(`Failed to retrieve repo info for ${moduleName}: Failed to retrieve status`); expect(error).toHaveBeenCalledWith(`Failed to retrieve repo info for ${moduleName}: Failed to retrieve status`);
@ -183,7 +183,7 @@ describe("Updatenotification", () => {
execMock.mockRejectedValueOnce(errorMessage); execMock.mockRejectedValueOnce(errorMessage);
const repos = await gitHelper.getRepos(); const repos = await gitHelper.getRepos();
expect(repos.length).toBe(0); expect(repos).toHaveLength(0);
const { error } = require("logger"); const { error } = require("logger");
expect(error).toHaveBeenCalledWith(`Failed to retrieve repo info for ${moduleName}: Failed to retrieve status`); expect(error).toHaveBeenCalledWith(`Failed to retrieve repo info for ${moduleName}: Failed to retrieve status`);
@ -224,7 +224,7 @@ describe("Updatenotification", () => {
execMock.mockRejectedValueOnce(errorMessage); execMock.mockRejectedValueOnce(errorMessage);
const repos = await gitHelper.getRepos(); const repos = await gitHelper.getRepos();
expect(repos.length).toBe(0); expect(repos).toHaveLength(0);
const { error } = require("logger"); const { error } = require("logger");
expect(error).toHaveBeenCalledWith(`Failed to retrieve repo info for ${moduleName}: Failed to retrieve status`); expect(error).toHaveBeenCalledWith(`Failed to retrieve repo info for ${moduleName}: Failed to retrieve status`);

View File

@ -14,11 +14,11 @@ describe("'global.root_path' set in js/app.js", () => {
}); });
it("should not modify global.root_path for testing", () => { it("should not modify global.root_path for testing", () => {
expect(global.root_path).toBe(undefined); expect(global.root_path).toBeUndefined();
}); });
it("should not modify global.version for testing", () => { it("should not modify global.version for testing", () => {
expect(global.version).toBe(undefined); expect(global.version).toBeUndefined();
}); });
it("should expect the global.version equals package.json file", () => { it("should expect the global.version equals package.json file", () => {

View File

@ -23,7 +23,7 @@ describe("Calendar fetcher utils test", () => {
defaultConfig defaultConfig
); );
expect(filteredEvents.length).toEqual(0); expect(filteredEvents).toHaveLength(0);
}); });
}); });
}); });

View File

@ -26,7 +26,7 @@ describe("Calendar fetcher utils test", () => {
defaultConfig defaultConfig
); );
expect(filteredEvents.length).toEqual(2); expect(filteredEvents).toHaveLength(2);
expect(filteredEvents[0].title).toBe("ongoingEvent"); expect(filteredEvents[0].title).toBe("ongoingEvent");
expect(filteredEvents[1].title).toBe("upcomingEvent"); expect(filteredEvents[1].title).toBe("upcomingEvent");
}); });
@ -45,7 +45,7 @@ describe("Calendar fetcher utils test", () => {
defaultConfig defaultConfig
); );
expect(filteredEvents.length).toEqual(2); expect(filteredEvents).toHaveLength(2);
expect(filteredEvents[0].title).toBe("ongoingEvent"); expect(filteredEvents[0].title).toBe("ongoingEvent");
expect(filteredEvents[1].title).toBe("upcomingEvent"); expect(filteredEvents[1].title).toBe("upcomingEvent");
}); });

View File

@ -24,16 +24,16 @@ describe("Default modules utils tests", () => {
} }
}); });
test("Calls correct URL once", async () => { it("Calls correct URL once", async () => {
urlToCall = "http://www.test.com/path?param1=value1"; urlToCall = "http://www.test.com/path?param1=value1";
await performWebRequest(urlToCall, "json", true); await performWebRequest(urlToCall, "json", true);
expect(fetchMock.mock.calls.length).toBe(1); expect(fetchMock.mock.calls).toHaveLength(1);
expect(fetchMock.mock.calls[0][0]).toBe(`${locationProtocol}//${locationHost}/cors?url=${urlToCall}`); expect(fetchMock.mock.calls[0][0]).toBe(`${locationProtocol}//${locationHost}/cors?url=${urlToCall}`);
}); });
test("Sends correct headers", async () => { it("Sends correct headers", async () => {
urlToCall = "http://www.test.com/path?param1=value1"; urlToCall = "http://www.test.com/path?param1=value1";
const headers = [ const headers = [
@ -43,22 +43,22 @@ describe("Default modules utils tests", () => {
await performWebRequest(urlToCall, "json", true, headers); await performWebRequest(urlToCall, "json", true, headers);
expect(fetchMock.mock.calls.length).toBe(1); expect(fetchMock.mock.calls).toHaveLength(1);
expect(fetchMock.mock.calls[0][0]).toBe(`${locationProtocol}//${locationHost}/cors?sendheaders=header1:value1,header2:value2&url=${urlToCall}`); expect(fetchMock.mock.calls[0][0]).toBe(`${locationProtocol}//${locationHost}/cors?sendheaders=header1:value1,header2:value2&url=${urlToCall}`);
}); });
}); });
describe("When not using cors proxy", () => { describe("When not using cors proxy", () => {
test("Calls correct URL once", async () => { it("Calls correct URL once", async () => {
urlToCall = "http://www.test.com/path?param1=value1"; urlToCall = "http://www.test.com/path?param1=value1";
await performWebRequest(urlToCall); await performWebRequest(urlToCall);
expect(fetchMock.mock.calls.length).toBe(1); expect(fetchMock.mock.calls).toHaveLength(1);
expect(fetchMock.mock.calls[0][0]).toBe(urlToCall); expect(fetchMock.mock.calls[0][0]).toBe(urlToCall);
}); });
test("Sends correct headers", async () => { it("Sends correct headers", async () => {
urlToCall = "http://www.test.com/path?param1=value1"; urlToCall = "http://www.test.com/path?param1=value1";
const headers = [ const headers = [
{ name: "header1", value: "value1" }, { name: "header1", value: "value1" },
@ -68,21 +68,21 @@ describe("Default modules utils tests", () => {
await performWebRequest(urlToCall, "json", false, headers); await performWebRequest(urlToCall, "json", false, headers);
const expectedHeaders = { headers: { header1: "value1", header2: "value2" } }; const expectedHeaders = { headers: { header1: "value1", header2: "value2" } };
expect(fetchMock.mock.calls.length).toBe(1); expect(fetchMock.mock.calls).toHaveLength(1);
expect(fetchMock.mock.calls[0][1]).toStrictEqual(expectedHeaders); expect(fetchMock.mock.calls[0][1]).toStrictEqual(expectedHeaders);
}); });
}); });
describe("When receiving json format", () => { describe("When receiving json format", () => {
test("Returns undefined when no data is received", async () => { it("Returns undefined when no data is received", async () => {
urlToCall = "www.test.com"; urlToCall = "www.test.com";
const response = await performWebRequest(urlToCall); const response = await performWebRequest(urlToCall);
expect(response).toBe(undefined); expect(response).toBeUndefined();
}); });
test("Returns object when data is received", async () => { it("Returns object when data is received", async () => {
urlToCall = "www.test.com"; urlToCall = "www.test.com";
fetchResponse = new Response('{"body": "some content"}'); fetchResponse = new Response('{"body": "some content"}');
@ -91,13 +91,13 @@ describe("Default modules utils tests", () => {
expect(response.body).toBe("some content"); expect(response.body).toBe("some content");
}); });
test("Returns expected headers when data is received", async () => { it("Returns expected headers when data is received", async () => {
urlToCall = "www.test.com"; urlToCall = "www.test.com";
fetchResponse = new Response('{"body": "some content"}', { headers: { header1: "value1", header2: "value2" } }); fetchResponse = new Response('{"body": "some content"}', { headers: { header1: "value1", header2: "value2" } });
const response = await performWebRequest(urlToCall, "json", false, undefined, ["header1"]); const response = await performWebRequest(urlToCall, "json", false, undefined, ["header1"]);
expect(response.headers.length).toBe(1); expect(response.headers).toHaveLength(1);
expect(response.headers[0].name).toBe("header1"); expect(response.headers[0].name).toBe("header1");
expect(response.headers[0].value).toBe("value1"); expect(response.headers[0].value).toBe("value1");
}); });

View File

@ -2,13 +2,13 @@ const weather = require("../../../../../modules/default/weather/weatherutils");
const WeatherUtils = require("../../../../../modules/default/weather/weatherutils"); const WeatherUtils = require("../../../../../modules/default/weather/weatherutils");
describe("Weather utils tests", () => { describe("Weather utils tests", () => {
describe("windspeed conversion", () => { describe("windspeed conversion to imperial", () => {
it("should convert temp correctly from Celsius to Fahrenheit", () => { it("should convert temp correctly from Celsius to Fahrenheit", () => {
expect(Math.round(WeatherUtils.convertTemp(10, "imperial"))).toBe(50); expect(Math.round(WeatherUtils.convertTemp(10, "imperial"))).toBe(50);
}); });
}); });
describe("windspeed conversion", () => { describe("windspeed conversion to beaufort", () => {
it("should convert windspeed correctly from mps to beaufort", () => { it("should convert windspeed correctly from mps to beaufort", () => {
expect(Math.round(WeatherUtils.convertWind(5, "beaufort"))).toBe(3); expect(Math.round(WeatherUtils.convertWind(5, "beaufort"))).toBe(3);
expect(Math.round(WeatherUtils.convertWind(300, "beaufort"))).toBe(12); expect(Math.round(WeatherUtils.convertWind(300, "beaufort"))).toBe(12);
@ -38,16 +38,16 @@ describe("Weather utils tests", () => {
describe("wind direction conversion", () => { describe("wind direction conversion", () => {
it("should convert wind direction correctly from cardinal to value", () => { it("should convert wind direction correctly from cardinal to value", () => {
expect(WeatherUtils.convertWindDirection("SSE")).toBe(157); expect(WeatherUtils.convertWindDirection("SSE")).toBe(157);
expect(WeatherUtils.convertWindDirection("XXX")).toBe(null); expect(WeatherUtils.convertWindDirection("XXX")).toBeNull();
}); });
}); });
describe("feelsLike calculation", () => { describe("feelsLike calculation", () => {
it("should return a calculated feelsLike info", () => { it("should return a calculated feelsLike info (negative value)", () => {
expect(WeatherUtils.calculateFeelsLike(0, 20, 40)).toBe(-9.444444444444445); expect(WeatherUtils.calculateFeelsLike(0, 20, 40)).toBe(-9.444444444444445);
}); });
it("should return a calculated feelsLike info", () => { it("should return a calculated feelsLike info (positiv value)", () => {
expect(WeatherUtils.calculateFeelsLike(30, 0, 60)).toBe(32.8320322777777); expect(WeatherUtils.calculateFeelsLike(30, 0, 60)).toBe(32.8320322777777);
}); });
}); });