forked from openlp/openlp
Added a few tests and fixed failing JS tests
This commit is contained in:
parent
72980b5365
commit
93a6a6a75b
@ -80,6 +80,7 @@ var AlertLocation = {
|
|||||||
|
|
||||||
var AlertState = {
|
var AlertState = {
|
||||||
Displaying: "displaying",
|
Displaying: "displaying",
|
||||||
|
DisplayingFromQueue: "displayingFrom Queue",
|
||||||
NotDisplaying: "notDisplaying"
|
NotDisplaying: "notDisplaying"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -406,39 +407,18 @@ var Display = {
|
|||||||
Display._slides['0'] = 0;
|
Display._slides['0'] = 0;
|
||||||
Display.reinit();
|
Display.reinit();
|
||||||
},
|
},
|
||||||
/**
|
|
||||||
* Display the next alert in the queue
|
|
||||||
*/
|
|
||||||
getNextAlert: function () {
|
|
||||||
|
|
||||||
console.debug("Checking queue for alerts");
|
|
||||||
if (Display._alerts.length > 0) {
|
|
||||||
var alertObject = JSON.parse(this._alerts.shift());
|
|
||||||
setTimeout(function() {
|
|
||||||
Display.alert(alertObject.text, alertObject.settings);
|
|
||||||
},1000);
|
|
||||||
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
console.debug("No alerts found");
|
|
||||||
}
|
|
||||||
},
|
|
||||||
/**
|
/**
|
||||||
* Display an alert
|
* Display an alert
|
||||||
* @param {string} text - The alert text
|
* @param {string} text - The alert text
|
||||||
* @param {int} location - The location of the text (top, middle or bottom)
|
* @param {int} location - The location of the text (top, middle or bottom)
|
||||||
*/
|
*/
|
||||||
alert: function (text, alert_settings) {
|
alert: function (text, alert_settings) {
|
||||||
console.debug(" alert text: " + text + ", alert settings: " + alert_settings);
|
|
||||||
|
|
||||||
if (text == "") {
|
if (text == "") {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (this._alertState === AlertState.Displaying) {
|
if (this._alertState === AlertState.Displaying) {
|
||||||
var alertObject = {};
|
var alertObject = {text: text, settings: alert_settings};
|
||||||
alertObject.text = text;
|
|
||||||
alertObject.settings = alert_settings;
|
|
||||||
this._alerts.push(JSON.stringify(alertObject));
|
this._alerts.push(JSON.stringify(alertObject));
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@ -447,12 +427,14 @@ var Display = {
|
|||||||
var alertBackground = $("#alert-background")[0];
|
var alertBackground = $("#alert-background")[0];
|
||||||
var alertText = $("#alert")[0];
|
var alertText = $("#alert")[0];
|
||||||
alertText.innerHTML = text;
|
alertText.innerHTML = text;
|
||||||
|
/* Check if the alert is a queued alert */
|
||||||
/* Start the entrance transition */
|
if (this._alertState !== AlertState.DisplayingFromQueue) {
|
||||||
this._alertState = AlertState.Displaying;
|
this._alertState = AlertState.Displaying;
|
||||||
this._transitionState = Display.doEntranceTransition(settings);
|
}
|
||||||
|
|
||||||
// TODO: Add functionality for no scroll and queue if not all alerts have been displayed
|
Display.doEntranceTransition(settings);
|
||||||
|
|
||||||
|
// TODO: Add functionality for no scroll
|
||||||
alertBackground.addEventListener('transitionend', function (e) {
|
alertBackground.addEventListener('transitionend', function (e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
if (Display._transitionState === TransitionState.EntranceTransition) {
|
if (Display._transitionState === TransitionState.EntranceTransition) {
|
||||||
@ -462,12 +444,10 @@ var Display = {
|
|||||||
Display._transitionState = TransitionState.NoTransition
|
Display._transitionState = TransitionState.NoTransition
|
||||||
}
|
}
|
||||||
else if (Display._transitionState === TransitionState.ExitTransition) {
|
else if (Display._transitionState === TransitionState.ExitTransition) {
|
||||||
Display._transitionState = TransitionState.NoTransition;
|
Display._transitionState = TransitionState.NoTransition;
|
||||||
Display._alertState = AlertState.NotDisplaying;
|
|
||||||
alertText.style.visibility = "hidden";
|
alertText.style.visibility = "hidden";
|
||||||
alertBackground.classList = "";
|
alertBackground.classList = "";
|
||||||
alertBackground.classList.add("normal");
|
alertBackground.classList.add("normal");
|
||||||
Display.getNextAlert();
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -476,19 +456,18 @@ var Display = {
|
|||||||
if (Display._animationState === AnimationState.ScrollingAnimation) {
|
if (Display._animationState === AnimationState.ScrollingAnimation) {
|
||||||
alertText.classList.remove("horizontal-scroll-animation");
|
alertText.classList.remove("horizontal-scroll-animation");
|
||||||
alertText.style.visibility = "hidden";
|
alertText.style.visibility = "hidden";
|
||||||
Display._animationState = AnimationState.NoAnimation;
|
Display._animationState = AnimationState.NoAnimation;
|
||||||
Display.doExitTransition();
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Start background entrance transition for display of alert
|
* Start background entrance transition for display of alert
|
||||||
* @param {number} location - Number showing the location of the alert on screen
|
* @param {object} settings - Settings for styling the alert
|
||||||
*/
|
*/
|
||||||
doEntranceTransition: function (settings) {
|
doEntranceTransition: function (settings) {
|
||||||
var alertBackground = $("#alert-background")[0];
|
var alertBackground = $("#alert-background")[0];
|
||||||
var alertText = $("#alert")[0];
|
var alertText = $("#alert")[0];
|
||||||
|
var transitionSetting;
|
||||||
switch (settings.location) {
|
switch (settings.location) {
|
||||||
case AlertLocation.Top:
|
case AlertLocation.Top:
|
||||||
alertBackground.classList.add("top");
|
alertBackground.classList.add("top");
|
||||||
@ -505,15 +484,21 @@ var Display = {
|
|||||||
alertText.style.fontFamily = settings.font_face;
|
alertText.style.fontFamily = settings.font_face;
|
||||||
alertText.style.fontSize = settings.font_size + "pt";
|
alertText.style.fontSize = settings.font_size + "pt";
|
||||||
alertBackground.style.backgroundColor = settings.background_color;
|
alertBackground.style.backgroundColor = settings.background_color;
|
||||||
// Wait for styles to be set first before starting transitions
|
|
||||||
|
if (this._alertState === AlertState.DisplayingFromQueue) {
|
||||||
|
transitionSetting = "1s linear 1s";
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
transitionSetting = "1s linear";
|
||||||
|
}
|
||||||
|
// Wait for styles to be set first before starting transition
|
||||||
setTimeout( function() {
|
setTimeout( function() {
|
||||||
alertBackground.style.height = "25%";
|
alertBackground.style.height = "25%";
|
||||||
alertBackground.style.transition = "1s linear";
|
alertBackground.style.transition = transitionSetting;
|
||||||
alertBackground.style.visibility = "visible";
|
alertBackground.style.visibility = "visible";
|
||||||
}, 50);
|
}, 50);
|
||||||
return TransitionState.EntranceTransition;
|
this._transitionState = TransitionState.EntranceTransition;
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Start background exit transition once alert has been displayed
|
* Start background exit transition once alert has been displayed
|
||||||
* @param {string} location - Integer showing the location of the alert on screen
|
* @param {string} location - Integer showing the location of the alert on screen
|
||||||
@ -522,7 +507,22 @@ var Display = {
|
|||||||
var alertBackground = $("#alert-background")[0];
|
var alertBackground = $("#alert-background")[0];
|
||||||
alertBackground.style.height = "0%";
|
alertBackground.style.height = "0%";
|
||||||
alertBackground.style.transition = "1s linear";
|
alertBackground.style.transition = "1s linear";
|
||||||
this._transitionState = TransitionState.ExitTransition;
|
this._transitionState = TransitionState.ExitTransition;
|
||||||
|
this._alertState = AlertState.NotDisplaying;
|
||||||
|
Display.getNextAlert();
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Display the next alert in the queue
|
||||||
|
*/
|
||||||
|
getNextAlert: function () {
|
||||||
|
if (Display._alerts.length > 0) {
|
||||||
|
var alertObject = JSON.parse(this._alerts.shift());
|
||||||
|
this._alertState = AlertState.DisplayingFromQueue;
|
||||||
|
Display.alert(alertObject.text, alertObject.settings);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
* Add a slides. If the slide exists but the HTML is different, update the slide.
|
* Add a slides. If the slide exists but the HTML is different, update the slide.
|
||||||
|
@ -154,8 +154,7 @@ describe("The Display object", function () {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe("Display.alert", function () {
|
describe("Display.alert", function () {
|
||||||
var alertBackground, alert, settings;
|
var alertBackground, alert, settings,_alertState;
|
||||||
var alerts = [];
|
|
||||||
|
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
document.body.innerHTML = "";
|
document.body.innerHTML = "";
|
||||||
@ -180,21 +179,22 @@ describe("Display.alert", function () {
|
|||||||
expect(alert.innerHTML).toEqual("OPEN-LP-3.0 Alert Test");
|
expect(alert.innerHTML).toEqual("OPEN-LP-3.0 Alert Test");
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should set the correct alert position", function () {
|
it("should add alerts to the queue correctly if it called when an alert is displaying", function () {
|
||||||
expect(Display.alert("Alert Location Test", settings)).toEqual(1);
|
Display._alerts = [];
|
||||||
});
|
Display._alertState = AlertState.Displaying;
|
||||||
|
var alertObject = {text: "Testing alert queue", settings: settings};
|
||||||
|
var queuedAlert = JSON.stringify(alertObject);
|
||||||
|
Display.alert("Testing alert queue", settings);
|
||||||
|
|
||||||
it("should add the alert to the alert queue", function() {
|
expect(Display._alerts.length).toEqual(1);
|
||||||
//Uses the alerts array
|
expect(Display._alerts[0]).toEqual(queuedAlert);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("The doEntranceTransition", function () {
|
describe("Display.doEntranceTransition", function () {
|
||||||
|
|
||||||
var alertBackground, alertText, css, settings, style;
|
var alertBackground, alertText, css, settings, style;
|
||||||
// TODO: Fix tests to accommodate new behaviour with CSS classes and settings modification
|
beforeEach(function () {
|
||||||
|
|
||||||
beforeEach(function() {
|
|
||||||
document.body.innerHTML = "";
|
document.body.innerHTML = "";
|
||||||
style = document.createElement("style");
|
style = document.createElement("style");
|
||||||
style.type = "text/css";
|
style.type = "text/css";
|
||||||
@ -214,51 +214,52 @@ describe("The doEntranceTransition", function () {
|
|||||||
alertText = document.createElement("p");
|
alertText = document.createElement("p");
|
||||||
alertText.setAttribute("id","alert");
|
alertText.setAttribute("id","alert");
|
||||||
alertBackground.appendChild(alertText);
|
alertBackground.appendChild(alertText);
|
||||||
|
Display._alertState = AlertState.NotDisplaying;
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should apply the styles correctly when doEntranceTransition is called", function(done) {
|
it("should set the correct transition state", function () {
|
||||||
Display.doEntranceTransition(settings);
|
Display.doEntranceTransition(settings);
|
||||||
expect(alertBackground.classList.contains("bottom")).toBe(true);
|
expect(Display._transitionState).toEqual(TransitionState.EntranceTransition);
|
||||||
|
})
|
||||||
|
|
||||||
setTimeout(function() {
|
it("should apply the styles correctly when doEntranceTransition is called", function (done) {
|
||||||
|
Display.doEntranceTransition(settings);
|
||||||
|
expect(alertBackground.className).toBe("normal bottom");
|
||||||
|
|
||||||
|
setTimeout(function () {
|
||||||
expect(alertText.style.fontFamily).toEqual(settings.font_face);
|
expect(alertText.style.fontFamily).toEqual(settings.font_face);
|
||||||
expect(alertText.style.color).toEqual(settings.font_color);
|
expect(alertText.style.color).toEqual(settings.font_color);
|
||||||
expect(alertText.style.fontSize).toEqual(settings.font_size + "pt");
|
expect(alertText.style.fontSize).toEqual(settings.font_size + "pt");
|
||||||
expect(alertBackground.style.backgroundColor).toEqual(settings.background_color);
|
expect(alertBackground.style.backgroundColor).toEqual(settings.background_color);
|
||||||
expect(alertBackground.classList.contains("bottom")).toBe(true);
|
|
||||||
expect(alertBackground.style.height).toEqual("25%");
|
expect(alertBackground.style.height).toEqual("25%");
|
||||||
expect(alertBackground.style.transition).toEqual("1s linear");
|
expect(alertBackground.style.transition).toEqual("1s linear");
|
||||||
expect(alertBackground.style.visibility).toEqual("visible");
|
expect(alertBackground.style.visibility).toEqual("visible");
|
||||||
done();
|
done();
|
||||||
}, 60);
|
}, 50);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should set the correct class for the alert when location is top of the page", function () {
|
it("should set the correct class for the alert when location is top of the page", function () {
|
||||||
settings.location = 0;
|
settings.location = 0;
|
||||||
Display.doEntranceTransition(settings);
|
Display.doEntranceTransition(settings);
|
||||||
|
|
||||||
expect(alertBackground.classList.contains("normal")).toBe(true);
|
expect(alertBackground.className).toEqual("normal top");
|
||||||
expect(alertBackground.classList.contains("top")).toBe(true);
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should set the correct class for the alert when location is middle of the page", function () {
|
it("should set the correct class for the alert when location is middle of the page", function () {
|
||||||
settings.location = 1;
|
settings.location = 1;
|
||||||
Display.doEntranceTransition(settings);
|
Display.doEntranceTransition(settings);
|
||||||
|
|
||||||
expect(alertBackground.classList.contains("normal")).toBe(true);
|
expect(alertBackground.className).toEqual("normal middle");
|
||||||
expect(alertBackground.classList.contains("middle")).toBe(true);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should set the correct class for the alert when location is bottom of the page", function () {
|
it("should set the correct class for the alert when location is bottom of the page", function () {
|
||||||
Display.doEntranceTransition(settings);
|
Display.doEntranceTransition(settings);
|
||||||
|
|
||||||
expect(alertBackground.classList.contains("normal")).toBe(true);
|
expect(alertBackground.className).toEqual("normal bottom");
|
||||||
expect(alertBackground.classList.contains("bottom")).toBe(true);
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("The doExitTransition", function () {
|
describe("Display.doExitTransition", function () {
|
||||||
var alertBackground;
|
var alertBackground;
|
||||||
|
|
||||||
beforeEach(function () {
|
beforeEach(function () {
|
||||||
@ -266,16 +267,55 @@ describe("The doExitTransition", function () {
|
|||||||
alertBackground = document.createElement("div");
|
alertBackground = document.createElement("div");
|
||||||
alertBackground.setAttribute("id", "alert-background");
|
alertBackground.setAttribute("id", "alert-background");
|
||||||
document.body.appendChild(alertBackground);
|
document.body.appendChild(alertBackground);
|
||||||
|
Display._alerts = [];
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should transition correctly when the doExitTransition method is called", function () {
|
it("should set the styles correctly when the doExitTransition method is called", function () {
|
||||||
Display.doExitTransition();
|
Display.doExitTransition();
|
||||||
|
|
||||||
expect(alertBackground.style.height).toEqual('0%');
|
expect(alertBackground.style.height).toEqual('0%');
|
||||||
expect(alertBackground.style.transition).toEqual("1s linear");
|
expect(alertBackground.style.transition).toEqual("1s linear");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("should set the correct states when doExitTransition is called", function () {
|
||||||
|
Display.doExitTransition();
|
||||||
|
|
||||||
|
expect(Display._alertState).toEqual(AlertState.NotDisplaying);
|
||||||
|
expect(Display._transitionState).toEqual(TransitionState.ExitTransition);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should call the getNextAlert method to get the next alert on the queue", function () {
|
||||||
|
spyOn(Display,"getNextAlert");
|
||||||
|
Display.doExitTransition();
|
||||||
|
|
||||||
|
expect(Display.getNextAlert).toHaveBeenCalled();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("Display.getNextAlert", function () {
|
||||||
|
Display.getNextAlert();
|
||||||
|
|
||||||
|
it("should return null if there are no alerts in the queue", function () {
|
||||||
|
Display._alerts = [];
|
||||||
|
Display.getNextAlert();
|
||||||
|
|
||||||
|
expect(Display.getNextAlert()).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should call the alert function correctly if there is an alert in the queue", function () {
|
||||||
|
var settings = {
|
||||||
|
"location": 2, "font_face": "Tahoma", "font_size": 40,
|
||||||
|
"font_color": "rgb(255, 255, 255)", "background_color": "rgb(102, 0, 0)"
|
||||||
|
};
|
||||||
|
var alertObject = {text: "Queued Alert", settings: settings};
|
||||||
|
Display._alerts.push(JSON.stringify(alertObject));
|
||||||
|
spyOn(Display,"alert");
|
||||||
|
Display.getNextAlert();
|
||||||
|
|
||||||
|
expect(Display.alert).toHaveBeenCalled();
|
||||||
|
expect(Display.alert).toHaveBeenCalledWith("Queued Alert",alertObject.settings);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
describe("Display.addTextSlide", function () {
|
describe("Display.addTextSlide", function () {
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
@ -386,6 +426,7 @@ describe("Display.setTextSlides", function () {
|
|||||||
};
|
};
|
||||||
|
|
||||||
spyOn(Display, "reinit");
|
spyOn(Display, "reinit");
|
||||||
|
spyOn(Reveal, "slide");
|
||||||
|
|
||||||
Display.setTextSlides(slides);
|
Display.setTextSlides(slides);
|
||||||
Display.setTheme(theme);
|
Display.setTheme(theme);
|
||||||
|
Loading…
Reference in New Issue
Block a user