Bug 806724 - Port browser_ConsoleStoragePBTest.js to the new per-tab PB APIs; r=ehsan

DONTBUILD since this is NPOTB in global PB builds

--HG--
rename : dom/tests/browser/browser_ConsoleStoragePBTest.js => dom/tests/browser/browser_ConsoleStoragePBTest_perwindowpb.js
This commit is contained in:
Mario Alvarado [:marioalv] 2012-12-10 19:19:25 -06:00
Родитель f59bb94d2a
Коммит 9edffc61f2
2 изменённых файлов: 98 добавлений и 0 удалений

Просмотреть файл

@ -45,6 +45,16 @@ MOCHITEST_BROWSER_FILES += \
$(NULL)
endif
ifdef MOZ_PER_WINDOW_PRIVATE_BROWSING
MOCHITEST_BROWSER_FILES += \
browser_ConsoleStoragePBTest_perwindowpb.js \
$(NULL)
else
MOCHITEST_BROWSER_FILES += \
browser_ConsoleStoragePBTest.js \
$(NULL)
endif
# TODO: Re-enable permissions tests on Mac and Windows, bug 795334
# TODO: disabled test browser_webapps_perms_reinstall.js, re-enable when bug 794920 is fixed

Просмотреть файл

@ -0,0 +1,88 @@
/* 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() {
// initialization
waitForExplicitFinish();
let windowsToClose = [];
let innerID;
let beforeEvents;
let afterEvents;
let storageShouldOccur;
let consoleObserver;
let testURI =
"http://example.com/browser/dom/tests/browser/test-console-api.html";
let CSS = {};
Cu.import("resource://gre/modules/ConsoleAPIStorage.jsm", CSS);
function getInnerWindowId(aWindow) {
return aWindow.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIDOMWindowUtils)
.currentInnerWindowID;
}
function whenNewWindowLoaded(aOptions, aCallback) {
let win = OpenBrowserWindow(aOptions);
win.addEventListener("load", function onLoad() {
win.removeEventListener("load", onLoad, false);
aCallback(win);
}, false);
}
function doTest(aIsPrivateMode, aWindow, aCallback) {
aWindow.gBrowser.selectedBrowser.addEventListener("load", function onLoad() {
aWindow.gBrowser.selectedBrowser.removeEventListener("load", onLoad, true);
consoleObserver = {
observe: function(aSubject, aTopic, aData) {
if (aTopic == "console-api-log-event") {
afterEvents = CSS.ConsoleAPIStorage.getEvents(innerID);
is(beforeEvents.length == afterEvents.length - 1, storageShouldOccur,
"storage should" + (storageShouldOccur ? "" : " not") + " occur");
executeSoon(function() {
Services.obs.removeObserver(consoleObserver, "console-api-log-event");
aCallback();
});
}
}
};
aWindow.Services.obs.addObserver(
consoleObserver, "console-api-log-event", false);
aWindow.console.log("foo bar baz (private: " + aIsPrivateMode + ")");
}, true);
storageShouldOccur = !aIsPrivateMode;
innerID = getInnerWindowId(aWindow);
beforeEvents = CSS.ConsoleAPIStorage.getEvents(innerID);
aWindow.gBrowser.selectedBrowser.loadURI(testURI);
}
function testOnWindow(aOptions, aCallback) {
whenNewWindowLoaded(aOptions, function(aWin) {
windowsToClose.push(aWin);
// execute should only be called when need, like when you are opening
// web pages on the test. If calling executeSoon() is not necesary, then
// call whenNewWindowLoaded() instead of testOnWindow() on your test.
executeSoon(function() aCallback(aWin));
});
};
// this function is called after calling finish() on the test.
registerCleanupFunction(function() {
windowsToClose.forEach(function(aWin) {
aWin.close();
});
});
// test first when not on private mode
testOnWindow({}, function(aWin) {
doTest(false, aWin, function() {
// then test when on private mode
testOnWindow({private: true}, function(aWin) {
doTest(true, aWin, finish);
});
});
});
}