summaryrefslogtreecommitdiffstats
path: root/browser/components/sessionstore/test/browser_history_persist.js
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/sessionstore/test/browser_history_persist.js')
-rw-r--r--browser/components/sessionstore/test/browser_history_persist.js93
1 files changed, 93 insertions, 0 deletions
diff --git a/browser/components/sessionstore/test/browser_history_persist.js b/browser/components/sessionstore/test/browser_history_persist.js
new file mode 100644
index 000000000..6b9e62abc
--- /dev/null
+++ b/browser/components/sessionstore/test/browser_history_persist.js
@@ -0,0 +1,93 @@
+/* eslint-env mozilla/frame-script */
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+/**
+ * Ensure that history entries that should not be persisted are restored in the
+ * same state.
+ */
+add_task(function check_history_not_persisted() {
+ // Create an about:blank tab
+ let tab = gBrowser.addTab("about:blank");
+ let browser = tab.linkedBrowser;
+ yield promiseBrowserLoaded(browser);
+
+ // Retrieve the tab state.
+ yield TabStateFlusher.flush(browser);
+ let state = JSON.parse(ss.getTabState(tab));
+ ok(!state.entries[0].persist, "Should have collected the persistence state");
+ yield promiseRemoveTab(tab);
+ browser = null;
+
+ // Open a new tab to restore into.
+ tab = gBrowser.addTab("about:blank");
+ browser = tab.linkedBrowser;
+ yield promiseTabState(tab, state);
+
+ yield ContentTask.spawn(browser, null, function() {
+ let sessionHistory = docShell.QueryInterface(Ci.nsIInterfaceRequestor)
+ .getInterface(Ci.nsISHistory);
+
+ is(sessionHistory.count, 1, "Should be a single history entry");
+ is(sessionHistory.getEntryAtIndex(0, false).URI.spec, "about:blank", "Should be the right URL");
+ });
+
+ // Load a new URL into the tab, it should replace the about:blank history entry
+ browser.loadURI("about:robots");
+ yield promiseBrowserLoaded(browser);
+ yield ContentTask.spawn(browser, null, function() {
+ let sessionHistory = docShell.QueryInterface(Ci.nsIInterfaceRequestor)
+ .getInterface(Ci.nsISHistory);
+ is(sessionHistory.count, 1, "Should be a single history entry");
+ is(sessionHistory.getEntryAtIndex(0, false).URI.spec, "about:robots", "Should be the right URL");
+ });
+
+ // Cleanup.
+ yield promiseRemoveTab(tab);
+});
+
+/**
+ * Check that entries default to being persisted when the attribute doesn't
+ * exist
+ */
+add_task(function check_history_default_persisted() {
+ // Create an about:blank tab
+ let tab = gBrowser.addTab("about:blank");
+ let browser = tab.linkedBrowser;
+ yield promiseBrowserLoaded(browser);
+
+ // Retrieve the tab state.
+ yield TabStateFlusher.flush(browser);
+ let state = JSON.parse(ss.getTabState(tab));
+ delete state.entries[0].persist;
+ yield promiseRemoveTab(tab);
+ browser = null;
+
+ // Open a new tab to restore into.
+ tab = gBrowser.addTab("about:blank");
+ browser = tab.linkedBrowser;
+ yield promiseTabState(tab, state);
+ yield ContentTask.spawn(browser, null, function() {
+ let sessionHistory = docShell.QueryInterface(Ci.nsIInterfaceRequestor)
+ .getInterface(Ci.nsISHistory);
+
+ is(sessionHistory.count, 1, "Should be a single history entry");
+ is(sessionHistory.getEntryAtIndex(0, false).URI.spec, "about:blank", "Should be the right URL");
+ });
+
+ // Load a new URL into the tab, it should replace the about:blank history entry
+ browser.loadURI("about:robots");
+ yield promiseBrowserLoaded(browser);
+ yield ContentTask.spawn(browser, null, function() {
+ let sessionHistory = docShell.QueryInterface(Ci.nsIInterfaceRequestor)
+ .getInterface(Ci.nsISHistory);
+ is(sessionHistory.count, 2, "Should be two history entries");
+ is(sessionHistory.getEntryAtIndex(0, false).URI.spec, "about:blank", "Should be the right URL");
+ is(sessionHistory.getEntryAtIndex(1, false).URI.spec, "about:robots", "Should be the right URL");
+ });
+
+ // Cleanup.
+ yield promiseRemoveTab(tab);
+});