summaryrefslogtreecommitdiffstats
path: root/comm/mail/test/browser/search-window/browser_multipleSearchWindows.js
blob: 482656357d874cc85f0903c61e83964c660262fc (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
77
/* 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/. */

/*
 * Test that we open multiple search windows when shortcuts are invoked multiple
 * times.
 */

"use strict";

var { be_in_folder, create_folder, mc } = ChromeUtils.import(
  "resource://testing-common/mozmill/FolderDisplayHelpers.jsm"
);
var {
  assert_search_window_folder_displayed,
  close_search_window,
  open_search_window,
} = ChromeUtils.import(
  "resource://testing-common/mozmill/SearchWindowHelpers.jsm"
);

var folderA, folderB;
add_setup(async function () {
  folderA = await create_folder("MultipleSearchWindowsA");
  folderB = await create_folder("MultipleSearchWindowsB");
});

/**
 * Test bringing up multiple search windows for multiple folders.
 */
add_task(
  async function test_show_multiple_search_windows_for_multiple_folders() {
    await be_in_folder(folderA);

    let swcA = open_search_window();
    // Check whether the window's displaying the right folder
    assert_search_window_folder_displayed(swcA, folderA);

    mc.window.focus();
    await be_in_folder(folderB);
    // This should time out if a second search window isn't opened
    let swcB = open_search_window();

    // Now check whether both windows are displaying the right folders
    assert_search_window_folder_displayed(swcA, folderA);
    assert_search_window_folder_displayed(swcB, folderB);

    // Clean up, close both windows
    close_search_window(swcA);
    close_search_window(swcB);
  }
);

/**
 * Test bringing up multiple search windows for the same folder.
 */
add_task(
  async function test_show_multiple_search_windows_for_the_same_folder() {
    await be_in_folder(folderA);
    let swc1 = open_search_window();
    // Check whether the window's displaying the right folder
    assert_search_window_folder_displayed(swc1, folderA);

    mc.window.focus();
    // This should time out if a second search window isn't opened
    let swc2 = open_search_window();

    // Now check whether both windows are displaying the right folders
    assert_search_window_folder_displayed(swc1, folderA);
    assert_search_window_folder_displayed(swc2, folderA);

    // Clean up, close both windows
    close_search_window(swc1);
    close_search_window(swc2);
  }
);