summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_large_port.js
blob: a0dd0a19cfa49b1e0211f8244116a083ca4ec07b (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

// Ensure that non-16-bit URIs are rejected

"use strict";

function run_test() {
  let mutator = Cc[
    "@mozilla.org/network/standard-url-mutator;1"
  ].createInstance(Ci.nsIURIMutator);
  Assert.ok(mutator, "Mutator constructor works");

  let url = Cc["@mozilla.org/network/standard-url-mutator;1"]
    .createInstance(Ci.nsIStandardURLMutator)
    .init(
      Ci.nsIStandardURL.URLTYPE_AUTHORITY,
      65535,
      "http://localhost",
      "UTF-8",
      null
    )
    .finalize();

  // Bug 1301621 makes invalid ports throw
  Assert.throws(
    () => {
      url = Cc["@mozilla.org/network/standard-url-mutator;1"]
        .createInstance(Ci.nsIStandardURLMutator)
        .init(
          Ci.nsIStandardURL.URLTYPE_AUTHORITY,
          65536,
          "http://localhost",
          "UTF-8",
          null
        )
        .finalize();
    },
    /NS_ERROR_MALFORMED_URI/,
    "invalid port during creation"
  );

  Assert.throws(
    () => {
      url = url
        .mutate()
        .QueryInterface(Ci.nsIStandardURLMutator)
        .setDefaultPort(65536)
        .finalize();
    },
    /NS_ERROR_MALFORMED_URI/,
    "invalid port in setDefaultPort"
  );
  Assert.throws(
    () => {
      url = url.mutate().setPort(65536).finalize();
    },
    /NS_ERROR_MALFORMED_URI/,
    "invalid port in port setter"
  );

  Assert.equal(url.port, -1);
  do_test_finished();
}