summaryrefslogtreecommitdiffstats
path: root/browser/components/sessionstore/test/browser_switch_remoteness.js
blob: daea96133545063d40c9122b4d251e974aa2a7e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
"use strict";

const URL = "http://example.com/browser_switch_remoteness_";

function countHistoryEntries(browser, expected) {
  return SpecialPowers.spawn(browser, [{ expected }], async function (args) {
    let webNavigation = docShell.QueryInterface(Ci.nsIWebNavigation);
    let history = webNavigation.sessionHistory;
    Assert.equal(
      history && history.count,
      args.expected,
      "correct number of shistory entries"
    );
  });
}

add_task(async function () {
  // Open a new window.
  let win = await promiseNewWindowLoaded();

  // Add a new tab.
  let tab = BrowserTestUtils.addTab(win.gBrowser, "about:blank");
  let browser = tab.linkedBrowser;
  await promiseBrowserLoaded(browser);
  ok(browser.isRemoteBrowser, "browser is remote");

  // Get the maximum number of preceding entries to save.
  const MAX_BACK = Services.prefs.getIntPref(
    "browser.sessionstore.max_serialize_back"
  );
  ok(MAX_BACK > -1, "check that the default has a value that caps data");

  // Load more pages than we would save to disk on a clean shutdown.
  for (let i = 0; i < MAX_BACK + 2; i++) {
    BrowserTestUtils.loadURIString(browser, URL + i);
    await promiseBrowserLoaded(browser);
    ok(browser.isRemoteBrowser, "browser is still remote");
  }

  // Check we have the right number of shistory entries.
  await countHistoryEntries(browser, MAX_BACK + 2);

  // Load a non-remote page.
  BrowserTestUtils.loadURIString(browser, "about:robots");
  await promiseBrowserLoaded(browser);
  ok(!browser.isRemoteBrowser, "browser is not remote anymore");

  // Check that we didn't lose any shistory entries.
  await countHistoryEntries(browser, MAX_BACK + 3);

  // Cleanup.
  await BrowserTestUtils.closeWindow(win);
});