fune/toolkit/components/windowcreator/test/browser_bug1204626.js
Boris Zbarsky eb5f28a236 Bug 1452321. Remove nsIWebBrowserPersistable. r=mystor
MozReview-Commit-ID: CCw86gAtKn3
2018-04-09 16:30:33 -04:00

83 lines
2.6 KiB
JavaScript

/* eslint-disable mozilla/no-arbitrary-setTimeout */
"use strict"; // -*- js-indent-level: 2; indent-tabs-mode: nil -*-
const contentBase = "https://example.com/browser/toolkit/components/windowcreator/test/";
const chromeBase = "chrome://mochitests/content/browser/toolkit/components/windowcreator/test/";
const testPageURL = contentBase + "bug1204626_doc0.html";
function one_test(delay, continuation) {
let delayStr = delay === null ? "no delay" : "delay = " + delay + "ms";
let browser;
BrowserTestUtils.openNewForegroundTab(gBrowser, testPageURL).then((tab) => {
browser = tab.linkedBrowser;
let persistable = browser.QueryInterface(Ci.nsIFrameLoaderOwner)
.frameLoader;
persistable.startPersistence(/* outer window ID: */ 0, {
onDocumentReady,
onError(status) {
ok(false, new Components.Exception("startPersistence failed", status));
continuation();
}
});
});
function onDocumentReady(doc) {
const nameStem = "test_bug1204626_" + Date.now();
let wbp = Cc["@mozilla.org/embedding/browser/nsWebBrowserPersist;1"]
.createInstance(Ci.nsIWebBrowserPersist);
let tmp = Services.dirsvc.get("TmpD", Ci.nsIFile);
let tmpFile = tmp.clone();
tmpFile.append(nameStem + "_saved.html");
let tmpDir = tmp.clone();
tmpDir.append(nameStem + "_files");
registerCleanupFunction(function cleanUp() {
if (tmpFile.exists()) {
tmpFile.remove(/* recursive: */ false);
}
if (tmpDir.exists()) {
tmpDir.remove(/* recursive: */ true);
}
});
wbp.progressListener = {
onProgressChange() {},
onLocationChange() {},
onStatusChange() {},
onSecurityChange() {},
onStateChange(_wbp, _req, state, _status) {
if ((state & Ci.nsIWebProgressListener.STATE_STOP) == 0) {
return;
}
ok(true, "Finished save (" + delayStr + ") but might have crashed.");
continuation();
}
};
function doSave() {
wbp.saveDocument(doc, tmpFile, tmpDir, null, 0, 0);
}
if (delay === null) {
doSave();
} else {
setTimeout(doSave, delay);
}
browser.messageManager.loadFrameScript("data:,content.window.close()", true);
}
}
function test() {
waitForExplicitFinish();
// 0ms breaks having the actor under PBrowser, but not 10ms.
// 10ms provokes the double-__delete__, but not 0ms.
// And a few others, just in case.
const testRuns = [null, 0, 10, 0, 10, 20, 50, 100];
let i = 0;
(function next_test() {
if (i < testRuns.length) {
one_test(testRuns[i++], next_test);
} else {
finish();
}
})();
}