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

"use strict";

ChromeUtils.defineESModuleGetters(this, {
  XPCShellContentUtils:
    "resource://testing-common/XPCShellContentUtils.sys.mjs",
});

let PUNYCODE_PAGE = "xn--31b1c3b9b.com";
// eslint-disable-next-line @microsoft/sdl/no-insecure-url
let DECODED_PAGE = "http://योगा.com/";

function startServer() {
  XPCShellContentUtils.ensureInitialized(this);
  let server = XPCShellContentUtils.createHttpServer({
    hosts: [PUNYCODE_PAGE],
  });
  server.registerPathHandler("/", (request, response) => {
    response.write("<html>A page without icon</html>");
  });
}

add_task(async function test_url_formatted_correctly_on_page_load() {
  SpecialPowers.pushPrefEnv({ set: [["browser.urlbar.trimURLs", false]] });
  startServer();

  let onValueChangeCalledAtLeastOnce = false;
  let onValueChanged = _ => {
    is(gURLBar.value, DECODED_PAGE, "Value is decoded.");
    onValueChangeCalledAtLeastOnce = true;
  };

  gURLBar.inputField.addEventListener("ValueChange", onValueChanged);
  registerCleanupFunction(() => {
    gURLBar.inputField.removeEventListener("ValueChange", onValueChanged);
  });

  BrowserTestUtils.startLoadingURIString(gBrowser, PUNYCODE_PAGE);
  // Check that whenever the value of the urlbar is changed, the correct
  // decoded punycode url is used.
  await BrowserTestUtils.browserLoaded(gBrowser, false, null, true);

  ok(
    onValueChangeCalledAtLeastOnce,
    "OnValueChanged of UrlbarInput was called at least once."
  );
  // Check that the final value is decoded punycode as well.
  is(gURLBar.value, DECODED_PAGE, "Final Urlbar value is correct");

  // Cleanup.
  SpecialPowers.popPrefEnv();
});