function start_sending_garbage() { netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); var prefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch); prefs.setCharPref("geo.wifi.uri", "http://mochi.test:8888/tests/dom/tests/mochitest/geolocation/network_geolocation.sjs?action=respond-garbage"); } function stop_sending_garbage() { netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); var prefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch); prefs.setCharPref("geo.wifi.uri", "http://mochi.test:8888/tests/dom/tests/mochitest/geolocation/network_geolocation.sjs"); } function stop_geolocationProvider() { netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); var prefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch); prefs.setCharPref("geo.wifi.uri", "http://mochi.test:8888/tests/dom/tests/mochitest/geolocation/network_geolocation.sjs?action=stop-responding"); } function resume_geolocationProvider() { netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); var prefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch); prefs.setCharPref("geo.wifi.uri", "http://mochi.test:8888/tests/dom/tests/mochitest/geolocation/network_geolocation.sjs"); } function check_geolocation(location) { ok(location, "Check to see if this location is non-null"); ok("timestamp" in location, "Check to see if there is a timestamp"); // eventually, coords may be optional (eg, when civic addresses are supported) ok("coords" in location, "Check to see if this location has a coords"); var coords = location.coords; ok("latitude" in coords, "Check to see if there is a latitude"); ok("longitude" in coords, "Check to see if there is a longitude"); ok("altitude" in coords, "Check to see if there is a altitude"); ok("accuracy" in coords, "Check to see if there is a accuracy"); ok("altitudeAccuracy" in coords, "Check to see if there is a alt accuracy"); // optional ok("heading" in coords, "Check to see if there is a heading"); // optional ok("speed" in coords, "Check to see if there is a speed"); ok (location.coords.latitude == 37.41857, "lat matches known value"); ok (location.coords.longitude == -122.08769, "lon matches known value"); ok(location.coords.altitude == 42, "alt matches known value"); ok(location.coords.altitudeAccuracy == 42, "alt acc matches known value"); } function getChromeWindow() { const Ci = Components.interfaces; var chromeWin = window.top .QueryInterface(Ci.nsIInterfaceRequestor) .getInterface(Ci.nsIWebNavigation) .QueryInterface(Ci.nsIDocShellTreeItem) .rootTreeItem .QueryInterface(Ci.nsIInterfaceRequestor) .getInterface(Ci.nsIDOMWindow) .QueryInterface(Ci.nsIDOMChromeWindow); return chromeWin; } function getNotificationBox() { var chromeWin = getChromeWindow(); var notifyBox = chromeWin.getNotificationBox(window.top); return notifyBox; } function clickNotificationButton(aButtonIndex) { netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect'); // First, check for new-style Firefox notifications var chromeWin = getChromeWindow(); if (chromeWin.PopupNotifications) { var panel = chromeWin.PopupNotifications.panel; var notificationEl = panel.getElementsByAttribute("id", "geolocation")[0]; if (aButtonIndex == kAcceptButton) notificationEl.button.doCommand(); else if (aButtonIndex == kDenyButton) throw "clickNotificationButton(kDenyButton) isn't supported in Firefox"; return; } // Otherwise, fall back to looking for a notificationbox // This is a bit of a hack. The notification doesn't have an API to // trigger buttons, so we dive down into the implementation and twiddle // the buttons directly. var box = getNotificationBox(); ok(box, "Got notification box"); var bar = box.getNotificationWithValue("geolocation"); ok(bar, "Got geolocation notification"); var button = bar.getElementsByTagName("button").item(aButtonIndex); ok(button, "Got button"); button.doCommand(); } const kAcceptButton = 0; const kDenyButton = 1;