summaryrefslogtreecommitdiffstats
path: root/browser/components/reportbrokensite/test/browser/browser_tab_switch_handling.js
blob: db1190b893cba970f1ad1173345ec0a9371f77b0 (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
78
79
80
81
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

/* Tests to ensure that Report Broken Site popups will be
 * reset to whichever tab the user is on as they change
 * between windows and tabs. */

"use strict";

add_common_setup();

add_task(async function testResetsProperlyOnTabSwitch() {
  ensureReportBrokenSitePreffedOn();

  const badTab = await openTab("about:blank");
  const goodTab1 = await openTab(REPORTABLE_PAGE_URL);
  const goodTab2 = await openTab(REPORTABLE_PAGE_URL2);

  const appMenu = AppMenu();
  const protPanel = ProtectionsPanel();

  let rbs = await appMenu.openReportBrokenSite();
  rbs.isMainViewResetToCurrentTab();
  rbs.close();

  gBrowser.selectedTab = goodTab1;

  rbs = await protPanel.openReportBrokenSite();
  rbs.isMainViewResetToCurrentTab();
  rbs.close();

  gBrowser.selectedTab = badTab;
  await appMenu.open();
  appMenu.isReportBrokenSiteDisabled();
  await appMenu.close();

  gBrowser.selectedTab = goodTab1;
  rbs = await protPanel.openReportBrokenSite();
  rbs.isMainViewResetToCurrentTab();
  rbs.close();

  closeTab(badTab);
  closeTab(goodTab1);
  closeTab(goodTab2);
});

add_task(async function testResetsProperlyOnWindowSwitch() {
  ensureReportBrokenSitePreffedOn();

  const tab1 = await openTab(REPORTABLE_PAGE_URL);

  const win2 = await BrowserTestUtils.openNewBrowserWindow();
  const tab2 = await openTab(REPORTABLE_PAGE_URL2, win2);

  const appMenu1 = AppMenu();
  const appMenu2 = ProtectionsPanel(win2);

  let rbs2 = await appMenu2.openReportBrokenSite();
  rbs2.isMainViewResetToCurrentTab();
  rbs2.close();

  // flip back to tab1's window and ensure its URL pops up instead of tab2's URL
  await switchToWindow(window);
  isSelectedTab(window, tab1); // sanity check

  let rbs1 = await appMenu1.openReportBrokenSite();
  rbs1.isMainViewResetToCurrentTab();
  rbs1.close();

  // likewise flip back to tab2's window and ensure its URL pops up instead of tab1's URL
  await switchToWindow(win2);
  isSelectedTab(win2, tab2); // sanity check

  rbs2 = await appMenu2.openReportBrokenSite();
  rbs2.isMainViewResetToCurrentTab();
  rbs2.close();

  closeTab(tab1);
  closeTab(tab2);
  await BrowserTestUtils.closeWindow(win2);
});