summaryrefslogtreecommitdiffstats
path: root/browser/components/sessionstore/test/browser_restore_session_in_undoCloseTab.js
blob: a64f432eeb6905b744ee8735efa661113acb3dca (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
54
55
56
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const { _LastSession } = ChromeUtils.importESModule(
  "resource:///modules/sessionstore/SessionStore.sys.mjs"
);

/**
 * Tests that if the user invokes undoCloseTab in a window for which there are no
 * tabs to undo closing, that we attempt to restore the previous session if one
 * exists.
 */
add_task(async function test_restore_session_in_undoCloseTab() {
  forgetClosedTabs(window);
  registerCleanupFunction(() => {
    forgetClosedTabs(window);
  });

  const state = {
    windows: [
      {
        tabs: [
          {
            entries: [
              {
                url: "https://example.org/",
                triggeringPrincipal_base64,
              },
            ],
          },
          {
            entries: [
              {
                url: "https://example.com/",
                triggeringPrincipal_base64,
              },
            ],
          },
        ],
        selected: 2,
      },
    ],
  };

  _LastSession.setState(state);

  let sessionRestored = promiseSessionStoreLoads(2 /* total restored tabs */);
  let result = undoCloseTab();
  await sessionRestored;
  Assert.equal(result, null);
  Assert.equal(gBrowser.tabs.length, 2);

  gBrowser.removeAllTabsBut(gBrowser.tabs[0]);
});