summaryrefslogtreecommitdiffstats
path: root/browser/components/sessionstore/test/browser_394759_behavior.js
blob: aa74dc06163175d74a9c52a1494d668ca8bc0ae1 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**
 * Test helper function that opens a series of windows, closes them
 * and then checks the closed window data from SessionStore against
 * expected results.
 *
 * @param windowsToOpen (Array)
 *        An array of Objects, where each object must define a single
 *        property "isPopup" for whether or not the opened window should
 *        be a popup.
 * @param expectedResults (Array)
 *        An Object with two properies: mac and other, where each points
 *        at yet another Object, with the following properties:
 *
 *        popup (int):
 *          The number of popup windows we expect to be in the closed window
 *          data.
 *        normal (int):
 *          The number of normal windows we expect to be in the closed window
 *          data.
 * @returns Promise
 */
function testWindows(windowsToOpen, expectedResults) {
  return Task.spawn(function*() {
    for (let winData of windowsToOpen) {
      let features = "chrome,dialog=no," +
                     (winData.isPopup ? "all=no" : "all");
      let url = "http://example.com/?window=" + windowsToOpen.length;

      let openWindowPromise = BrowserTestUtils.waitForNewWindow(true, url);
      openDialog(getBrowserURL(), "", features, url);
      let win = yield openWindowPromise;
      yield BrowserTestUtils.closeWindow(win);
    }

    let closedWindowData = JSON.parse(ss.getClosedWindowData());
    let numPopups = closedWindowData.filter(function(el, i, arr) {
      return el.isPopup;
    }).length;
    let numNormal = ss.getClosedWindowCount() - numPopups;
    // #ifdef doesn't work in browser-chrome tests, so do a simple regex on platform
    let oResults = navigator.platform.match(/Mac/) ? expectedResults.mac
                                                   : expectedResults.other;
    is(numPopups, oResults.popup,
       "There were " + oResults.popup + " popup windows to reopen");
    is(numNormal, oResults.normal,
       "There were " + oResults.normal + " normal windows to repoen");
  });
}

add_task(function* test_closed_window_states() {
  // This test takes quite some time, and timeouts frequently, so we require
  // more time to run.
  // See Bug 518970.
  requestLongerTimeout(2);

  let windowsToOpen = [{isPopup: false},
                       {isPopup: false},
                       {isPopup: true},
                       {isPopup: true},
                       {isPopup: true}];
  let expectedResults = {mac: {popup: 3, normal: 0},
                         other: {popup: 3, normal: 1}};

  yield testWindows(windowsToOpen, expectedResults);


  let windowsToOpen2 = [{isPopup: false},
                        {isPopup: false},
                        {isPopup: false},
                        {isPopup: false},
                        {isPopup: false}];
  let expectedResults2 = {mac: {popup: 0, normal: 3},
                          other: {popup: 0, normal: 3}};

  yield testWindows(windowsToOpen2, expectedResults2);
});