mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +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.
93 lines
2.3 KiB
JavaScript
93 lines
2.3 KiB
JavaScript
const jsdom = require("jsdom");
|
|
|
|
exports.startApplication = async (configFilename, exec) => {
|
|
jest.resetModules();
|
|
if (global.app) {
|
|
await this.stopApplication();
|
|
}
|
|
// Set config sample for use in test
|
|
if (configFilename === "") {
|
|
process.env.MM_CONFIG_FILE = "config/config.js";
|
|
} else {
|
|
process.env.MM_CONFIG_FILE = configFilename;
|
|
}
|
|
if (exec) exec;
|
|
global.app = require("app.js");
|
|
|
|
return new Promise((resolve) => {
|
|
global.app.start(resolve);
|
|
});
|
|
};
|
|
|
|
exports.stopApplication = async () => {
|
|
if (global.app) {
|
|
return new Promise((resolve) => {
|
|
global.app.stop(resolve);
|
|
delete global.app;
|
|
});
|
|
}
|
|
return Promise.resolve();
|
|
};
|
|
|
|
exports.getDocument = () => {
|
|
return new Promise((resolve) => {
|
|
const url = "http://" + (config.address || "localhost") + ":" + (config.port || "8080");
|
|
jsdom.JSDOM.fromURL(url, { resources: "usable", runScripts: "dangerously" }).then((dom) => {
|
|
dom.window.name = "jsdom";
|
|
dom.window.onload = () => {
|
|
global.document = dom.window.document;
|
|
resolve();
|
|
};
|
|
});
|
|
});
|
|
};
|
|
|
|
exports.waitForElement = (selector, ignoreValue = "") => {
|
|
return new Promise((resolve) => {
|
|
let oldVal = "dummy12345";
|
|
const interval = setInterval(() => {
|
|
const element = document.querySelector(selector);
|
|
if (element) {
|
|
let newVal = element.textContent;
|
|
if (newVal === oldVal) {
|
|
clearInterval(interval);
|
|
resolve(element);
|
|
} else {
|
|
if (ignoreValue === "") {
|
|
oldVal = newVal;
|
|
} else {
|
|
if (!newVal.includes(ignoreValue)) oldVal = newVal;
|
|
}
|
|
}
|
|
}
|
|
}, 100);
|
|
});
|
|
};
|
|
|
|
exports.waitForAllElements = (selector) => {
|
|
return new Promise((resolve) => {
|
|
let oldVal = 999999;
|
|
const interval = setInterval(() => {
|
|
const element = document.querySelectorAll(selector);
|
|
if (element) {
|
|
let newVal = element.length;
|
|
if (newVal === oldVal) {
|
|
clearInterval(interval);
|
|
resolve(element);
|
|
} else {
|
|
if (newVal !== 0) oldVal = newVal;
|
|
}
|
|
}
|
|
}, 100);
|
|
});
|
|
};
|
|
|
|
// When native fetch is used keep-alive is set which causes issues with tests that should not share the connection, fall back to use the older one for now...
|
|
exports.fetch = require("node-fetch");
|
|
|
|
exports.testMatch = async (element, regex) => {
|
|
const elem = await this.waitForElement(element);
|
|
expect(elem).not.toBe(null);
|
|
expect(elem.textContent).toMatch(regex);
|
|
};
|