unit tests

This commit is contained in:
Karsten Hassel
2021-06-06 23:13:09 +02:00
parent 32df76bdff
commit 66759a33fa
12 changed files with 78 additions and 50 deletions

View File

@@ -10,7 +10,7 @@ describe("Functions into modules/default/calendar/calendar.js", function () {
Module.definitions[name] = moduleDefinition;
};
before(function () {
beforeAll(function () {
// load calendar.js
require("../../../modules/default/calendar/calendar.js");
});

View File

@@ -5,7 +5,7 @@ const { JSDOM } = require("jsdom");
describe("Test function cmpVersions in js/module.js", function () {
let cmp;
before(function (done) {
beforeAll(function (done) {
const dom = new JSDOM(
`<script>var Class = {extend: function() { return {}; }};</script>\
<script src="file://${path.join(__dirname, "..", "..", "..", "js", "module.js")}">`,

View File

@@ -10,14 +10,14 @@ describe("Functions module currentweather", function () {
Module.definitions[name] = moduleDefinition;
};
before(function () {
beforeAll(function () {
require("../../../modules/default/currentweather/currentweather.js");
Module.definitions.currentweather.config = {};
});
describe("roundValue", function () {
describe("this.config.roundTemp is true", function () {
before(function () {
beforeAll(function () {
Module.definitions.currentweather.config.roundTemp = true;
});
@@ -41,7 +41,7 @@ describe("Functions module currentweather", function () {
});
describe("this.config.roundTemp is false", function () {
before(function () {
beforeAll(function () {
Module.definitions.currentweather.config.roundTemp = false;
});

View File

@@ -8,8 +8,10 @@ describe("Functions into modules/default/newsfeed/newsfeed.js", function () {
Module.definitions[name] = moduleDefinition;
};
before(function () {
beforeAll(function () {
// load newsfeed.js
require("../../../modules/default/newsfeed/newsfeed.js");
});
test.skip('skip', () => {});
});

View File

@@ -4,7 +4,7 @@ const moment = require("moment-timezone");
const data = require("../../configs/data/weatherforecast_data.json");
describe("Functions module weatherforecast", function () {
before(function () {
beforeAll(function () {
Module = {};
config = {};
Module.definitions = {};
@@ -17,7 +17,7 @@ describe("Functions module weatherforecast", function () {
describe("roundValue", function () {
describe("this.config.roundTemp is true", function () {
before(function () {
beforeAll(function () {
Module.definitions.weatherforecast.config.roundTemp = true;
});
@@ -41,7 +41,7 @@ describe("Functions module weatherforecast", function () {
});
describe("this.config.roundTemp is false", function () {
before(function () {
beforeAll(function () {
Module.definitions.weatherforecast.config.roundTemp = false;
});
@@ -73,7 +73,7 @@ describe("Functions module weatherforecast", function () {
let originalLocale;
let originalTimeZone;
before(function () {
beforeAll(function () {
originalLocale = moment.locale();
originalTimeZone = moment.tz.guess();
moment.locale("hi");
@@ -81,7 +81,7 @@ describe("Functions module weatherforecast", function () {
});
describe("forecastIcons sunset specified", function () {
before(function () {
beforeAll(function () {
Module.definitions.weatherforecast.Log = {};
Module.definitions.weatherforecast.forecast = [];
Module.definitions.weatherforecast.show = Module.definitions.weatherforecast.updateDom = function () {};
@@ -89,7 +89,7 @@ describe("Functions module weatherforecast", function () {
});
it(`returns correct icons with sunset time`, function () {
Module.definitions.weatherforecast.processWeather(data.withSunset);
Module.definitions.weatherforecast.processWeather(data.withSunset, moment);
let forecastData = Module.definitions.weatherforecast.forecast;
expect(forecastData.length).to.equal(4);
expect(forecastData[2].icon).to.equal("wi-rain");
@@ -97,19 +97,19 @@ describe("Functions module weatherforecast", function () {
});
describe("forecastIcons sunset not specified", function () {
before(function () {
beforeAll(function () {
Module.definitions.weatherforecast.forecast = [];
});
it(`returns correct icons with out sunset time`, function () {
Module.definitions.weatherforecast.processWeather(data.withoutSunset);
Module.definitions.weatherforecast.processWeather(data.withoutSunset, moment);
let forecastData = Module.definitions.weatherforecast.forecast;
expect(forecastData.length).to.equal(4);
expect(forecastData[2].icon).to.equal("wi-rain");
});
});
after(function () {
afterAll(function () {
moment.locale(originalLocale);
moment.tz.setDefault(originalTimeZone);
});