2017-02-19 21:06:38 -03:00
|
|
|
const globalSetup = require("../global-setup");
|
|
|
|
const app = globalSetup.app;
|
2017-02-05 19:35:33 -03:00
|
|
|
const chai = require("chai");
|
2017-02-07 16:00:35 -03:00
|
|
|
const expect = chai.expect;
|
2017-02-05 19:35:33 -03:00
|
|
|
|
|
|
|
describe("Compliments module", function () {
|
2017-02-12 15:36:18 -03:00
|
|
|
this.timeout(20000);
|
2017-02-05 19:35:33 -03:00
|
|
|
|
2017-02-20 05:25:16 -03:00
|
|
|
|
|
|
|
beforeEach(function (done) {
|
|
|
|
app.start().then(function() { done(); } );
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(function (done) {
|
|
|
|
app.stop().then(function() { done(); });
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2017-02-05 19:35:33 -03:00
|
|
|
describe("parts of days", function() {
|
2017-02-20 05:25:16 -03:00
|
|
|
|
2017-02-05 19:35:33 -03:00
|
|
|
before(function() {
|
|
|
|
// Set config sample for use in test
|
|
|
|
process.env.MM_CONFIG_FILE = "tests/configs/modules/compliments/compliments_parts_day.js";
|
|
|
|
});
|
|
|
|
|
2017-02-07 16:00:35 -03:00
|
|
|
it("if Morning compliments for that part of day", function () {
|
|
|
|
var hour = new Date().getHours();
|
2017-02-05 19:35:33 -03:00
|
|
|
if (hour >= 3 && hour < 12) {
|
2017-02-07 16:00:35 -03:00
|
|
|
// if morning check
|
|
|
|
return app.client.waitUntilWindowLoaded()
|
|
|
|
.getText(".compliments").then(function (text) {
|
|
|
|
expect(text).to.be.oneOf(["Hi", "Good Morning", "Morning test"]);
|
|
|
|
})
|
2017-02-05 19:35:33 -03:00
|
|
|
}
|
2017-02-07 16:00:35 -03:00
|
|
|
});
|
|
|
|
|
|
|
|
it("if Afternoon show Compliments for that part of day", function () {
|
|
|
|
var hour = new Date().getHours();
|
|
|
|
if (hour >= 12 && hour < 17) {
|
|
|
|
// if morning check
|
|
|
|
return app.client.waitUntilWindowLoaded()
|
|
|
|
.getText(".compliments").then(function (text) {
|
|
|
|
expect(text).to.be.oneOf(["Hello", "Good Afternoon", "Afternoon test"]);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
});
|
2017-02-05 19:35:33 -03:00
|
|
|
|
2017-02-07 16:00:35 -03:00
|
|
|
it("if Evening show Compliments for that part of day", function () {
|
|
|
|
var hour = new Date().getHours();
|
|
|
|
if (!(hour >= 3 && hour < 12) && !(hour >= 12 && hour < 17)) {
|
|
|
|
// if evening check
|
|
|
|
return app.client.waitUntilWindowLoaded()
|
|
|
|
.getText(".compliments").then(function (text) {
|
|
|
|
expect(text).to.be.oneOf(["Hello There", "Good Evening", "Evening test"]);
|
|
|
|
})
|
|
|
|
}
|
2017-02-05 19:35:33 -03:00
|
|
|
});
|
2017-02-07 16:00:35 -03:00
|
|
|
|
2017-02-05 19:35:33 -03:00
|
|
|
});
|
|
|
|
|
2017-02-18 23:38:39 -03:00
|
|
|
|
2017-02-20 04:59:15 -03:00
|
|
|
describe("Feature anytime in compliments module", function() {
|
2017-02-18 23:38:39 -03:00
|
|
|
|
2017-02-20 04:59:15 -03:00
|
|
|
describe("Set anytime and empty compliments for morning, evening and afternoon ", function() {
|
|
|
|
before(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", function () {
|
|
|
|
return app.client.waitUntilWindowLoaded()
|
|
|
|
.getText(".compliments").then(function (text) {
|
|
|
|
expect(text).to.be.oneOf(["Anytime here"]);
|
|
|
|
})
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("Only anytime present in configuration compliments", function() {
|
|
|
|
before(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", function () {
|
|
|
|
return app.client.waitUntilWindowLoaded()
|
|
|
|
.getText(".compliments").then(function (text) {
|
|
|
|
expect(text).to.be.oneOf(["Anytime here"]);
|
|
|
|
})
|
|
|
|
});
|
2017-02-18 23:38:39 -03:00
|
|
|
});
|
2017-02-20 04:59:15 -03:00
|
|
|
|
|
|
|
|
2017-02-18 23:38:39 -03:00
|
|
|
});
|
|
|
|
|
2017-02-05 19:35:33 -03:00
|
|
|
});
|