summaryrefslogtreecommitdiffstats
path: root/browser/components/urlbar/tests/browser/browser_unitConversion.js
blob: 566300b7d4d29ea12869420bca2ff986a883582a (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/**
 * Tests unit conversion on browser.
 */

add_setup(async function () {
  await SpecialPowers.pushPrefEnv({
    set: [["browser.urlbar.unitConversion.enabled", true]],
  });

  registerCleanupFunction(function () {
    SpecialPowers.clipboardCopyString("");
  });
});

add_task(async function test_selectByMouse() {
  const win = await BrowserTestUtils.openNewBrowserWindow();

  // Clear clipboard content.
  SpecialPowers.clipboardCopyString("");

  const row = await doUnitConversion(win);

  info("Check if the result is copied to clipboard when selecting by mouse");
  EventUtils.synthesizeMouseAtCenter(
    row.querySelector(".urlbarView-no-wrap"),
    {},
    win
  );
  assertClipboard();

  await UrlbarTestUtils.promisePopupClose(win);
  await BrowserTestUtils.closeWindow(win);
});

add_task(async function test_selectByKey() {
  const win = await BrowserTestUtils.openNewBrowserWindow();

  // Clear clipboard content.
  SpecialPowers.clipboardCopyString("");

  await doUnitConversion(win);

  // As gURLBar might lost focus,
  // give focus again in order to enable key event on the result.
  win.gURLBar.focus();

  info("Check if the result is copied to clipboard when selecting by key");
  EventUtils.synthesizeKey("KEY_ArrowDown", {}, win);
  EventUtils.synthesizeKey("KEY_Enter", {}, win);
  assertClipboard();

  await UrlbarTestUtils.promisePopupClose(win);
  await BrowserTestUtils.closeWindow(win);
});

function assertClipboard() {
  Assert.equal(
    SpecialPowers.getClipboardData("text/plain"),
    "100 cm",
    "The result of conversion is copied to clipboard"
  );
}

async function doUnitConversion(win) {
  info("Do unit conversion then wait the result");

  await UrlbarTestUtils.promiseAutocompleteResultPopup({
    window: win,
    value: "1m to cm",
    waitForFocus: SimpleTest.waitForFocus,
  });

  const row = await UrlbarTestUtils.waitForAutocompleteResultAt(win, 1);

  Assert.ok(row.querySelector(".urlbarView-favicon"), "The icon is displayed");
  Assert.equal(
    row.querySelector(".urlbarView-dynamic-unitConversion-output").textContent,
    "100 cm",
    "The unit is converted"
  );

  return row;
}