mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
When trying to debug why the tests broke for https://github.com/MichMich/MagicMirror/pull/2946 I found that the tests does not wait for the app to start and close. So if the startup isn't blocking that would fail. So I added a callback for `close()` too and converted them to promises for the `startApplication()` and `stopApplication()` and updated all the e2e tests to await both. Will try to refactor all these callbacks to promises in a later PR.
78 lines
2.5 KiB
JavaScript
78 lines
2.5 KiB
JavaScript
const helpers = require("../helpers/global-setup");
|
|
|
|
describe("Newsfeed module", () => {
|
|
afterAll(async () => {
|
|
await helpers.stopApplication();
|
|
});
|
|
|
|
describe("Default configuration", () => {
|
|
beforeAll(async () => {
|
|
await helpers.startApplication("tests/configs/modules/newsfeed/default.js");
|
|
await helpers.getDocument();
|
|
});
|
|
|
|
it("should show the newsfeed title", async () => {
|
|
const elem = await helpers.waitForElement(".newsfeed .newsfeed-source");
|
|
expect(elem).not.toBe(null);
|
|
expect(elem.textContent).toContain("Rodrigo Ramirez Blog");
|
|
});
|
|
|
|
it("should show the newsfeed article", async () => {
|
|
const elem = await helpers.waitForElement(".newsfeed .newsfeed-title");
|
|
expect(elem).not.toBe(null);
|
|
expect(elem.textContent).toContain("QPanel");
|
|
});
|
|
|
|
it("should NOT show the newsfeed description", async () => {
|
|
await helpers.waitForElement(".newsfeed");
|
|
const element = document.querySelector(".newsfeed .newsfeed-desc");
|
|
expect(element).toBe(null);
|
|
});
|
|
});
|
|
|
|
describe("Custom configuration", () => {
|
|
beforeAll(async () => {
|
|
await helpers.startApplication("tests/configs/modules/newsfeed/prohibited_words.js");
|
|
await helpers.getDocument();
|
|
});
|
|
|
|
it("should not show articles with prohibited words", async () => {
|
|
const elem = await helpers.waitForElement(".newsfeed .newsfeed-title");
|
|
expect(elem).not.toBe(null);
|
|
expect(elem.textContent).toContain("Problema VirtualBox");
|
|
});
|
|
|
|
it("should show the newsfeed description", async () => {
|
|
const elem = await helpers.waitForElement(".newsfeed .newsfeed-desc");
|
|
expect(elem).not.toBe(null);
|
|
expect(elem.textContent.length).not.toBe(0);
|
|
});
|
|
});
|
|
|
|
describe("Invalid configuration", () => {
|
|
beforeAll(async () => {
|
|
await helpers.startApplication("tests/configs/modules/newsfeed/incorrect_url.js");
|
|
await helpers.getDocument();
|
|
});
|
|
|
|
it("should show malformed url warning", async () => {
|
|
const elem = await helpers.waitForElement(".newsfeed .small", "No news at the moment.");
|
|
expect(elem).not.toBe(null);
|
|
expect(elem.textContent).toContain("Error in the Newsfeed module. Malformed url.");
|
|
});
|
|
});
|
|
|
|
describe("Ignore items", () => {
|
|
beforeAll(async () => {
|
|
await helpers.startApplication("tests/configs/modules/newsfeed/ignore_items.js");
|
|
await helpers.getDocument();
|
|
});
|
|
|
|
it("should show empty items info message", async () => {
|
|
const elem = await helpers.waitForElement(".newsfeed .small");
|
|
expect(elem).not.toBe(null);
|
|
expect(elem.textContent).toContain("No news at the moment.");
|
|
});
|
|
});
|
|
});
|