mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
82 lines
2.8 KiB
JavaScript
82 lines
2.8 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
let manifest = { // normal provider
|
|
name: "provider 1",
|
|
origin: "https://example.com",
|
|
sidebarURL: "https://example.com/browser/browser/base/content/test/social_sidebar.html",
|
|
workerURL: "https://example.com/browser/browser/base/content/test/social_worker.js",
|
|
iconURL: "https://example.com/browser/browser/base/content/test/moz.png"
|
|
};
|
|
runSocialTestWithProvider(manifest, function (finishcb) {
|
|
runSocialTests(tests, undefined, undefined, finishcb);
|
|
});
|
|
}
|
|
|
|
var tests = {
|
|
testStatusIcons: function(next) {
|
|
let iconsReady = false;
|
|
let gotSidebarMessage = false;
|
|
|
|
function checkNext() {
|
|
if (iconsReady && gotSidebarMessage)
|
|
triggerIconPanel();
|
|
}
|
|
|
|
function triggerIconPanel() {
|
|
let statusIcon = document.querySelector("#social-toolbar-item > box");
|
|
info("status icon is " + statusIcon);
|
|
waitForCondition(function() {
|
|
statusIcon = document.querySelector("#social-toolbar-item > box");
|
|
info("status icon is " + statusIcon);
|
|
return !!statusIcon;
|
|
}, function() {
|
|
// Click the button to trigger its contentPanel
|
|
let panel = document.getElementById("social-notification-panel");
|
|
EventUtils.synthesizeMouseAtCenter(statusIcon, {});
|
|
}, "Status icon didn't become non-hidden");
|
|
}
|
|
|
|
let port = Social.provider.getWorkerPort();
|
|
ok(port, "provider has a port");
|
|
port.onmessage = function (e) {
|
|
let topic = e.data.topic;
|
|
switch (topic) {
|
|
case "test-init-done":
|
|
iconsReady = true;
|
|
checkNext();
|
|
break;
|
|
case "got-panel-message":
|
|
ok(true, "got panel message");
|
|
// Check the panel isn't in our history.
|
|
ensureSocialUrlNotRemembered(e.data.location);
|
|
break;
|
|
case "got-social-panel-visibility":
|
|
if (e.data.result == "shown") {
|
|
ok(true, "panel shown");
|
|
let panel = document.getElementById("social-notification-panel");
|
|
panel.hidePopup();
|
|
} else if (e.data.result == "hidden") {
|
|
ok(true, "panel hidden");
|
|
port.close();
|
|
next();
|
|
}
|
|
break;
|
|
case "got-sidebar-message":
|
|
// The sidebar message will always come first, since it loads by default
|
|
ok(true, "got sidebar message");
|
|
gotSidebarMessage = true;
|
|
// load a status panel
|
|
port.postMessage({topic: "test-ambient-notification"});
|
|
checkNext();
|
|
break;
|
|
}
|
|
}
|
|
port.postMessage({topic: "test-init"});
|
|
}
|
|
}
|