mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-05 22:22:47 +00:00

MozReview-Commit-ID: CiIsUjQzp4D --HG-- extra : rebase_source : 1b98e88673625a52ef82c1fad5d56aec3e2e8e80
115 lines
4.0 KiB
JavaScript
115 lines
4.0 KiB
JavaScript
"use strict";
|
|
|
|
/**
|
|
* Cleans up the .dmp and .extra file from a crash.
|
|
*
|
|
* @param subject (nsISupports)
|
|
* The subject passed through the ipc:content-shutdown
|
|
* observer notification when a content process crash has
|
|
* occurred.
|
|
*/
|
|
function cleanUpMinidump(subject) {
|
|
Assert.ok(subject instanceof Ci.nsIPropertyBag2,
|
|
"Subject needs to be a nsIPropertyBag2 to clean up properly");
|
|
let dumpID = subject.getPropertyAsAString("dumpID");
|
|
|
|
Assert.ok(dumpID, "There should be a dumpID");
|
|
if (dumpID) {
|
|
let dir = Services.dirsvc.get("ProfD", Ci.nsIFile);
|
|
dir.append("minidumps");
|
|
|
|
let file = dir.clone();
|
|
file.append(dumpID + ".dmp");
|
|
file.remove(true);
|
|
|
|
file = dir.clone();
|
|
file.append(dumpID + ".extra");
|
|
file.remove(true);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This test ensures that if a remote frameloader crashes after
|
|
* the frameloader owner swaps it out for a new frameloader,
|
|
* that a oop-browser-crashed event is not sent to the new
|
|
* frameloader's browser element.
|
|
*/
|
|
add_task(function* test_crash_in_previous_frameloader() {
|
|
// On debug builds, crashing tabs results in much thinking, which
|
|
// slows down the test and results in intermittent test timeouts,
|
|
// so we'll pump up the expected timeout for this test.
|
|
requestLongerTimeout(2);
|
|
|
|
if (!gMultiProcessBrowser) {
|
|
Assert.ok(false, "This test should only be run in multi-process mode.");
|
|
return;
|
|
}
|
|
|
|
yield BrowserTestUtils.withNewTab({
|
|
gBrowser,
|
|
url: "http://example.com",
|
|
}, function*(browser) {
|
|
// First, sanity check...
|
|
Assert.ok(browser.isRemoteBrowser,
|
|
"This browser needs to be remote if this test is going to " +
|
|
"work properly.");
|
|
|
|
// We will wait for the oop-browser-crashed event to have
|
|
// a chance to appear. That event is fired when TabParents
|
|
// are destroyed, and that occurs _before_ ContentParents
|
|
// are destroyed, so we'll wait on the ipc:content-shutdown
|
|
// observer notification, which is fired when a ContentParent
|
|
// goes away. After we see this notification, oop-browser-crashed
|
|
// events should have fired.
|
|
let contentProcessGone = TestUtils.topicObserved("ipc:content-shutdown");
|
|
let sawTabCrashed = false;
|
|
let onTabCrashed = () => {
|
|
sawTabCrashed = true;
|
|
};
|
|
|
|
browser.addEventListener("oop-browser-crashed", onTabCrashed);
|
|
|
|
// The name of the game is to cause a crash in a remote browser,
|
|
// and then immediately swap out the browser for a non-remote one.
|
|
yield ContentTask.spawn(browser, null, function() {
|
|
const Cu = Components.utils;
|
|
Cu.import("resource://gre/modules/ctypes.jsm");
|
|
Cu.import("resource://gre/modules/Timer.jsm");
|
|
|
|
let dies = function() {
|
|
privateNoteIntentionalCrash();
|
|
let zero = new ctypes.intptr_t(8);
|
|
let badptr = ctypes.cast(zero, ctypes.PointerType(ctypes.int32_t));
|
|
badptr.contents
|
|
};
|
|
|
|
// Use a timeout to give the parent a little extra time
|
|
// to flip the remoteness of the browser. This has the
|
|
// potential to be a bit race-y, since in theory, the
|
|
// setTimeout could complete before the parent finishes
|
|
// the remoteness flip, which would mean we'd get the
|
|
// oop-browser-crashed event, and we'll fail here.
|
|
// Unfortunately, I can't find a way around that right
|
|
// now, since you cannot send a frameloader a message
|
|
// once its been replaced.
|
|
setTimeout(() => {
|
|
dump("\nEt tu, Brute?\n");
|
|
dies();
|
|
}, 0);
|
|
});
|
|
|
|
gBrowser.updateBrowserRemoteness(browser, false);
|
|
info("Waiting for content process to go away.");
|
|
let [subject /* , data */] = yield contentProcessGone;
|
|
|
|
// If we don't clean up the minidump, the harness will
|
|
// complain.
|
|
cleanUpMinidump(subject);
|
|
|
|
info("Content process is gone!");
|
|
Assert.ok(!sawTabCrashed,
|
|
"Should not have seen the oop-browser-crashed event.");
|
|
browser.removeEventListener("oop-browser-crashed", onTabCrashed);
|
|
});
|
|
});
|