summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_port_remapping.js
blob: 7a333a7af7d4a56f81449c87ebca669e863e2d11 (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
// This test is checking the `network.socket.forcePort` preference has an effect.
// We remap an ilusional port `8765` to go to the port the server actually binds to.

"use strict";

const { HttpServer } = ChromeUtils.importESModule(
  "resource://testing-common/httpd.sys.mjs"
);

function make_channel(url) {
  return NetUtil.newChannel({ uri: url, loadUsingSystemPrincipal: true });
}

const REMAPPED_PORT = 8765;

add_task(async function check_protocols() {
  function contentHandler(metadata, response) {
    let responseBody = "The server should never return this!";
    response.setHeader("Content-Type", "text/plain");
    response.bodyOutputStream.write(responseBody, responseBody.length);
  }

  const httpserv = new HttpServer();
  httpserv.registerPathHandler("/content", contentHandler);
  httpserv.start(-1);

  do_get_profile();
  Services.prefs.setCharPref(
    "network.socket.forcePort",
    `${REMAPPED_PORT}=${httpserv.identity.primaryPort}`
  );

  function get_response() {
    return new Promise(resolve => {
      const URL = `http://localhost:${REMAPPED_PORT}/content`;
      const channel = make_channel(URL);
      channel.asyncOpen(
        new ChannelListener((request, data) => {
          resolve(data);
        })
      );
    });
  }

  // We expect "Bad request" from the test server because the server doesn't
  // have identity for the remapped port. We don't want to add it too, because
  // that would not prove we actualy remap the port number.
  Assert.equal(await get_response(), "Bad request\n");
  await new Promise(resolve => httpserv.stop(resolve));
});