mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
108 lines
3.4 KiB
JavaScript
108 lines
3.4 KiB
JavaScript
const helpers = require("../global-setup");
|
|
|
|
describe("Compliments module", function () {
|
|
helpers.setupTimeout(this);
|
|
|
|
let app = null;
|
|
|
|
beforeEach(function () {
|
|
return helpers
|
|
.startApplication({
|
|
args: ["js/electron.js"]
|
|
})
|
|
.then(function (startedApp) {
|
|
app = startedApp;
|
|
});
|
|
});
|
|
|
|
afterEach(function () {
|
|
return helpers.stopApplication(app);
|
|
});
|
|
|
|
describe("parts of days", function () {
|
|
beforeAll(function () {
|
|
// Set config sample for use in test
|
|
process.env.MM_CONFIG_FILE = "tests/configs/modules/compliments/compliments_parts_day.js";
|
|
});
|
|
|
|
it("if Morning compliments for that part of day", async function () {
|
|
const hour = new Date().getHours();
|
|
if (hour >= 3 && hour < 12) {
|
|
// if morning check
|
|
const elem = await app.client.$(".compliments");
|
|
return elem.getText(".compliments").then(function (text) {
|
|
expect(["Hi", "Good Morning", "Morning test"]).toContain(text);
|
|
});
|
|
}
|
|
});
|
|
|
|
it("if Afternoon show Compliments for that part of day", async function () {
|
|
const hour = new Date().getHours();
|
|
if (hour >= 12 && hour < 17) {
|
|
// if afternoon check
|
|
const elem = await app.client.$(".compliments");
|
|
return elem.getText(".compliments").then(function (text) {
|
|
expect(["Hello", "Good Afternoon", "Afternoon test"]).toContain(text);
|
|
});
|
|
}
|
|
});
|
|
|
|
it("if Evening show Compliments for that part of day", async function () {
|
|
const hour = new Date().getHours();
|
|
if (!(hour >= 3 && hour < 12) && !(hour >= 12 && hour < 17)) {
|
|
// if evening check
|
|
const elem = await app.client.$(".compliments");
|
|
return elem.getText(".compliments").then(function (text) {
|
|
expect(["Hello There", "Good Evening", "Evening test"]).toContain(text);
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
describe("Feature anytime in compliments module", function () {
|
|
describe("Set anytime and empty compliments for morning, evening and afternoon ", function () {
|
|
beforeAll(function () {
|
|
// Set config sample for use in test
|
|
process.env.MM_CONFIG_FILE = "tests/configs/modules/compliments/compliments_anytime.js";
|
|
});
|
|
|
|
it("Show anytime because if configure empty parts of day compliments and set anytime compliments", async function () {
|
|
const elem = await app.client.$(".compliments");
|
|
return elem.getText(".compliments").then(function (text) {
|
|
expect(["Anytime here"]).toContain(text);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("Only anytime present in configuration compliments", function () {
|
|
beforeAll(function () {
|
|
// Set config sample for use in test
|
|
process.env.MM_CONFIG_FILE = "tests/configs/modules/compliments/compliments_only_anytime.js";
|
|
});
|
|
|
|
it("Show anytime compliments", async function () {
|
|
const elem = await app.client.$(".compliments");
|
|
return elem.getText(".compliments").then(function (text) {
|
|
expect(["Anytime here"]).toContain(text);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("Feature date in compliments module", function () {
|
|
describe("Set date and empty compliments for anytime, morning, evening and afternoon", function () {
|
|
beforeAll(function () {
|
|
// Set config sample for use in test
|
|
process.env.MM_CONFIG_FILE = "tests/configs/modules/compliments/compliments_date.js";
|
|
});
|
|
|
|
it("Show happy new year compliment on new years day", async function () {
|
|
const elem = await app.client.$(".compliments");
|
|
return elem.getText(".compliments").then(function (text) {
|
|
expect(["Happy new year!"]).toContain(text);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|