tenfourfox/browser/components/sessionstore/test/browser_purge_shistory.js
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

59 lines
1.9 KiB
JavaScript

"use strict";
/**
* This test checks that pending tabs are treated like fully loaded tabs when
* purging session history. Just like for fully loaded tabs we want to remove
* every but the current shistory entry.
*/
const TAB_STATE = {
entries: [{url: "about:mozilla"}, {url: "about:robots"}],
index: 1,
};
function checkTabContents(browser) {
return ContentTask.spawn(browser, null, function* () {
let Ci = Components.interfaces;
let webNavigation = docShell.QueryInterface(Ci.nsIWebNavigation);
let history = webNavigation.sessionHistory.QueryInterface(Ci.nsISHistoryInternal);
return history && history.count == 1 && content.document.documentURI == "about:mozilla";
});
}
add_task(function* () {
// Create a new tab.
let tab = gBrowser.addTab("about:blank");
let browser = tab.linkedBrowser;
yield promiseBrowserLoaded(browser);
yield promiseTabState(tab, TAB_STATE);
// Create another new tab.
let tab2 = gBrowser.addTab("about:blank");
let browser2 = tab2.linkedBrowser;
yield promiseBrowserLoaded(browser2);
// The tab shouldn't be restored right away.
Services.prefs.setBoolPref("browser.sessionstore.restore_on_demand", true);
// Prepare the tab state.
let promise = promiseTabRestoring(tab2);
ss.setTabState(tab2, JSON.stringify(TAB_STATE));
ok(tab2.hasAttribute("pending"), "tab is pending");
yield promise;
// Purge session history.
Services.obs.notifyObservers(null, "browser:purge-session-history", "");
ok((yield checkTabContents(browser)), "expected tab contents found");
ok(tab2.hasAttribute("pending"), "tab is still pending");
// Kick off tab restoration.
gBrowser.selectedTab = tab2;
yield promiseTabRestored(tab2);
ok((yield checkTabContents(browser2)), "expected tab contents found");
ok(!tab2.hasAttribute("pending"), "tab is not pending anymore");
// Cleanup.
gBrowser.removeTab(tab2);
gBrowser.removeTab(tab);
});