mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
143 lines
6.0 KiB
JavaScript
143 lines
6.0 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
let gTestTab;
|
|
let gContentAPI;
|
|
let gContentWindow;
|
|
|
|
Components.utils.import("resource:///modules/UITour.jsm");
|
|
|
|
function test() {
|
|
UITourTest();
|
|
}
|
|
|
|
let tests = [
|
|
function test_info_icon(done) {
|
|
let popup = document.getElementById("UITourTooltip");
|
|
let title = document.getElementById("UITourTooltipTitle");
|
|
let desc = document.getElementById("UITourTooltipDescription");
|
|
let icon = document.getElementById("UITourTooltipIcon");
|
|
let buttons = document.getElementById("UITourTooltipButtons");
|
|
|
|
popup.addEventListener("popupshown", function onPopupShown() {
|
|
popup.removeEventListener("popupshown", onPopupShown);
|
|
|
|
is(title.textContent, "a title", "Popup should have correct title");
|
|
is(desc.textContent, "some text", "Popup should have correct description text");
|
|
|
|
let imageURL = getRootDirectory(gTestPath) + "image.png";
|
|
imageURL = imageURL.replace("chrome://mochitests/content/", "https://example.com/");
|
|
is(icon.src, imageURL, "Popup should have correct icon shown");
|
|
|
|
is(buttons.hasChildNodes(), false, "Popup should have no buttons");
|
|
|
|
done();
|
|
});
|
|
|
|
gContentAPI.showInfo("urlbar", "a title", "some text", "image.png");
|
|
},
|
|
function test_info_buttons_1(done) {
|
|
let popup = document.getElementById("UITourTooltip");
|
|
let title = document.getElementById("UITourTooltipTitle");
|
|
let desc = document.getElementById("UITourTooltipDescription");
|
|
let icon = document.getElementById("UITourTooltipIcon");
|
|
|
|
popup.addEventListener("popupshown", function onPopupShown() {
|
|
popup.removeEventListener("popupshown", onPopupShown);
|
|
|
|
is(title.textContent, "another title", "Popup should have correct title");
|
|
is(desc.textContent, "moar text", "Popup should have correct description text");
|
|
|
|
let imageURL = getRootDirectory(gTestPath) + "image.png";
|
|
imageURL = imageURL.replace("chrome://mochitests/content/", "https://example.com/");
|
|
is(icon.src, imageURL, "Popup should have correct icon shown");
|
|
|
|
let buttons = document.getElementById("UITourTooltipButtons");
|
|
is(buttons.childElementCount, 2, "Popup should have two buttons");
|
|
|
|
is(buttons.childNodes[0].getAttribute("label"), "Button 1", "First button should have correct label");
|
|
is(buttons.childNodes[0].getAttribute("image"), "", "First button should have no image");
|
|
|
|
is(buttons.childNodes[1].getAttribute("label"), "Button 2", "Second button should have correct label");
|
|
is(buttons.childNodes[1].getAttribute("image"), imageURL, "Second button should have correct image");
|
|
|
|
popup.addEventListener("popuphidden", function onPopupHidden() {
|
|
popup.removeEventListener("popuphidden", onPopupHidden);
|
|
ok(true, "Popup should close automatically");
|
|
|
|
executeSoon(function() {
|
|
is(gContentWindow.callbackResult, "button1", "Correct callback should have been called");
|
|
|
|
done();
|
|
});
|
|
});
|
|
|
|
EventUtils.synthesizeMouseAtCenter(buttons.childNodes[0], {}, window);
|
|
});
|
|
|
|
let buttons = gContentWindow.makeButtons();
|
|
gContentAPI.showInfo("urlbar", "another title", "moar text", "./image.png", buttons);
|
|
},
|
|
function test_info_buttons_2(done) {
|
|
let popup = document.getElementById("UITourTooltip");
|
|
let title = document.getElementById("UITourTooltipTitle");
|
|
let desc = document.getElementById("UITourTooltipDescription");
|
|
let icon = document.getElementById("UITourTooltipIcon");
|
|
|
|
popup.addEventListener("popupshown", function onPopupShown() {
|
|
popup.removeEventListener("popupshown", onPopupShown);
|
|
|
|
is(title.textContent, "another title", "Popup should have correct title");
|
|
is(desc.textContent, "moar text", "Popup should have correct description text");
|
|
|
|
let imageURL = getRootDirectory(gTestPath) + "image.png";
|
|
imageURL = imageURL.replace("chrome://mochitests/content/", "https://example.com/");
|
|
is(icon.src, imageURL, "Popup should have correct icon shown");
|
|
|
|
let buttons = document.getElementById("UITourTooltipButtons");
|
|
is(buttons.childElementCount, 2, "Popup should have two buttons");
|
|
|
|
is(buttons.childNodes[0].getAttribute("label"), "Button 1", "First button should have correct label");
|
|
is(buttons.childNodes[0].getAttribute("image"), "", "First button should have no image");
|
|
|
|
is(buttons.childNodes[1].getAttribute("label"), "Button 2", "Second button should have correct label");
|
|
is(buttons.childNodes[1].getAttribute("image"), imageURL, "Second button should have correct image");
|
|
|
|
popup.addEventListener("popuphidden", function onPopupHidden() {
|
|
popup.removeEventListener("popuphidden", onPopupHidden);
|
|
ok(true, "Popup should close automatically");
|
|
|
|
executeSoon(function() {
|
|
is(gContentWindow.callbackResult, "button2", "Correct callback should have been called");
|
|
|
|
done();
|
|
});
|
|
});
|
|
|
|
EventUtils.synthesizeMouseAtCenter(buttons.childNodes[1], {}, window);
|
|
});
|
|
|
|
let buttons = gContentWindow.makeButtons();
|
|
gContentAPI.showInfo("urlbar", "another title", "moar text", "./image.png", buttons);
|
|
},
|
|
|
|
function test_info_close_button(done) {
|
|
let popup = document.getElementById("UITourTooltip");
|
|
let closeButton = document.getElementById("UITourTooltipClose");
|
|
|
|
popup.addEventListener("popupshown", function onPopupShown() {
|
|
popup.removeEventListener("popupshown", onPopupShown);
|
|
EventUtils.synthesizeMouseAtCenter(closeButton, {}, window);
|
|
executeSoon(function() {
|
|
is(gContentWindow.callbackResult, "closeButton", "Close button callback called");
|
|
done();
|
|
});
|
|
});
|
|
|
|
let infoOptions = gContentWindow.makeInfoOptions();
|
|
gContentAPI.showInfo("urlbar", "Close me", "X marks the spot", null, null, infoOptions);
|
|
}
|
|
];
|