summaryrefslogtreecommitdiffstats
path: root/browser/components/urlbar/tests/browser/browser_oneOffs_settings.js
blob: b4b1e7006e32ea868e5df2643c97b378b18c0a87 (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
82
83
84
85
86
87
88
89
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/**
 * This tests that the settings button in the one-off buttons display correctly
 * loads the search preferences.
 */

let gMaxResults;

add_setup(async function () {
  gMaxResults = Services.prefs.getIntPref("browser.urlbar.maxRichResults");

  registerCleanupFunction(async function () {
    await PlacesUtils.history.clear();
    await UrlbarTestUtils.formHistory.clear();
  });

  await PlacesUtils.history.clear();
  await UrlbarTestUtils.formHistory.clear();

  let visits = [];
  for (let i = 0; i < gMaxResults; i++) {
    visits.push({
      uri: makeURI("http://example.com/browser_urlbarOneOffs.js/?" + i),
      // TYPED so that the visit shows up when the urlbar's drop-down arrow is
      // pressed.
      transition: Ci.nsINavHistoryService.TRANSITION_TYPED,
    });
  }
  await PlacesTestUtils.addVisits(visits);
});

async function selectSettings(win, activateFn) {
  await BrowserTestUtils.withNewTab(
    { gBrowser: win.gBrowser, url: "about:blank" },
    async browser => {
      await UrlbarTestUtils.promiseAutocompleteResultPopup({
        window: win,
        value: "example.com",
      });
      await UrlbarTestUtils.waitForAutocompleteResultAt(win, gMaxResults - 1);

      await UrlbarTestUtils.promisePopupClose(win, async () => {
        let prefPaneLoaded = TestUtils.topicObserved(
          "sync-pane-loaded",
          () => true
        );

        activateFn();

        await prefPaneLoaded;
      });

      Assert.equal(
        win.gBrowser.contentWindow.history.state,
        "paneSearch",
        "Should have opened the search preferences pane"
      );
    }
  );
}

add_task(async function test_open_settings_with_enter() {
  const win = await BrowserTestUtils.openNewBrowserWindow();
  await selectSettings(win, () => {
    EventUtils.synthesizeKey("KEY_ArrowUp", {}, win);

    Assert.ok(
      UrlbarTestUtils.getOneOffSearchButtons(
        win
      ).selectedButton.classList.contains("search-setting-button"),
      "Should have selected the settings button"
    );

    EventUtils.synthesizeKey("KEY_Enter", {}, win);
  });
  await BrowserTestUtils.closeWindow(win);
});

add_task(async function test_open_settings_with_click() {
  const win = await BrowserTestUtils.openNewBrowserWindow();
  await selectSettings(win, () => {
    UrlbarTestUtils.getOneOffSearchButtons(win).settingsButton.click();
  });
  await BrowserTestUtils.closeWindow(win);
});