mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
131 lines
3.8 KiB
JavaScript
131 lines
3.8 KiB
JavaScript
const helpers = require("../global-setup");
|
|
const serverBasicAuth = require("../../servers/basic-auth.js");
|
|
const expect = require("chai").expect;
|
|
|
|
const describe = global.describe;
|
|
const it = global.it;
|
|
const beforeEach = global.beforeEach;
|
|
const afterEach = global.afterEach;
|
|
|
|
describe("Calendar module", function () {
|
|
helpers.setupTimeout(this);
|
|
|
|
var app = null;
|
|
|
|
beforeEach(function () {
|
|
return helpers
|
|
.startApplication({
|
|
args: ["js/electron.js"]
|
|
})
|
|
.then(function (startedApp) {
|
|
app = startedApp;
|
|
});
|
|
});
|
|
|
|
afterEach(function () {
|
|
return helpers.stopApplication(app);
|
|
});
|
|
|
|
describe("Default configuration", function () {
|
|
before(function () {
|
|
// Set config sample for use in test
|
|
process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/default.js";
|
|
});
|
|
|
|
it("should show the default maximumEntries of 10", async () => {
|
|
await app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
|
|
const events = await app.client.$$(".calendar .event");
|
|
return expect(events.length).equals(10);
|
|
});
|
|
|
|
it("should show the default calendar symbol in each event", async () => {
|
|
await app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
|
|
const icons = await app.client.$$(".calendar .event .fa-calendar");
|
|
return expect(icons.length).not.equals(0);
|
|
});
|
|
});
|
|
|
|
describe("Custom configuration", function () {
|
|
before(function () {
|
|
// Set config sample for use in test
|
|
process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/custom.js";
|
|
});
|
|
|
|
it("should show the custom maximumEntries of 3", async () => {
|
|
await app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
|
|
const events = await app.client.$$(".calendar .event");
|
|
return expect(events.length).equals(3);
|
|
});
|
|
|
|
it("should show the custom calendar symbol in each event", async () => {
|
|
await app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
|
|
const icons = await app.client.$$(".calendar .event .fa-birthday-cake");
|
|
return expect(icons.length).not.equals(0);
|
|
});
|
|
});
|
|
|
|
describe("Basic auth", function () {
|
|
before(function () {
|
|
serverBasicAuth.listen(8010);
|
|
// Set config sample for use in test
|
|
process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/basic-auth.js";
|
|
});
|
|
|
|
after(function (done) {
|
|
serverBasicAuth.close(done());
|
|
});
|
|
|
|
it("should return TestEvents", function () {
|
|
return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
|
|
});
|
|
});
|
|
|
|
describe("Basic auth by default", function () {
|
|
before(function () {
|
|
serverBasicAuth.listen(8011);
|
|
// Set config sample for use in test
|
|
process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/auth-default.js";
|
|
});
|
|
|
|
after(function (done) {
|
|
serverBasicAuth.close(done());
|
|
});
|
|
|
|
it("should return TestEvents", function () {
|
|
return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
|
|
});
|
|
});
|
|
|
|
describe("Basic auth backward compatibility configuration: DEPRECATED", function () {
|
|
before(function () {
|
|
serverBasicAuth.listen(8012);
|
|
// Set config sample for use in test
|
|
process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/old-basic-auth.js";
|
|
});
|
|
|
|
after(function (done) {
|
|
serverBasicAuth.close(done());
|
|
});
|
|
|
|
it("should return TestEvents", function () {
|
|
return app.client.waitUntilTextExists(".calendar", "TestEvent", 10000);
|
|
});
|
|
});
|
|
|
|
describe("Fail Basic auth", function () {
|
|
before(function () {
|
|
serverBasicAuth.listen(8020);
|
|
// Set config sample for use in test
|
|
process.env.MM_CONFIG_FILE = "tests/configs/modules/calendar/fail-basic-auth.js";
|
|
});
|
|
|
|
after(function (done) {
|
|
serverBasicAuth.close(done());
|
|
});
|
|
|
|
it("should return No upcoming events", function () {
|
|
return app.client.waitUntilTextExists(".calendar", "No upcoming events.", 10000);
|
|
});
|
|
});
|
|
});
|