summaryrefslogtreecommitdiffstats
path: root/browser/components/sessionstore/test/browser_586147.js
blob: aff6c4ce0620518e2290596758823e8ffdbd0405 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

function observeOneRestore(callback) {
  let topic = "sessionstore-browser-state-restored";
  Services.obs.addObserver(function onRestore() {
    Services.obs.removeObserver(onRestore, topic);
    callback();
  }, topic);
}

function test() {
  waitForExplicitFinish();

  // There should be one tab when we start the test
  let [origTab] = gBrowser.visibleTabs;
  let hiddenTab = BrowserTestUtils.addTab(gBrowser);

  is(gBrowser.visibleTabs.length, 2, "should have 2 tabs before hiding");
  gBrowser.showOnlyTheseTabs([origTab]);
  is(gBrowser.visibleTabs.length, 1, "only 1 after hiding");
  ok(hiddenTab.hidden, "sanity check that it's hidden");

  BrowserTestUtils.addTab(gBrowser);
  let state = ss.getBrowserState();
  let stateObj = JSON.parse(state);
  let tabs = stateObj.windows[0].tabs;
  is(tabs.length, 3, "just checking that browser state is correct");
  ok(!tabs[0].hidden, "first tab is visible");
  ok(tabs[1].hidden, "second is hidden");
  ok(!tabs[2].hidden, "third is visible");

  // Make the third tab hidden and then restore the modified state object
  tabs[2].hidden = true;

  observeOneRestore(function () {
    is(gBrowser.visibleTabs.length, 1, "only restored 1 visible tab");
    let restoredTabs = gBrowser.tabs;

    ok(!restoredTabs[0].hidden, "first is still visible");
    ok(restoredTabs[1].hidden, "second tab is still hidden");
    ok(restoredTabs[2].hidden, "third tab is now hidden");

    // Restore the original state and clean up now that we're done
    gBrowser.removeTab(gBrowser.tabs[1]);
    gBrowser.removeTab(gBrowser.tabs[1]);

    finish();
  });
  ss.setBrowserState(JSON.stringify(stateObj));
}