summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_bug429347.js
blob: 7fcc898e7a6d010f79b574da4ad7aefe892ba11d (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
"use strict";

function run_test() {
  var ios = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService);

  var uri1 = ios.newURI("http://example.com#bar");
  var uri2 = ios.newURI("http://example.com/#bar");
  Assert.ok(uri1.equals(uri2));

  uri1 = uri1
    .mutate()
    .setSpec("http://example.com?bar")
    .finalize();
  uri2 = uri2
    .mutate()
    .setSpec("http://example.com/?bar")
    .finalize();
  Assert.ok(uri1.equals(uri2));

  // see https://bugzilla.mozilla.org/show_bug.cgi?id=665706
  // ";" is not parsed as special anymore and thus ends up
  // in the authority component (see RFC 3986)
  uri1 = uri1
    .mutate()
    .setSpec("http://example.com;bar")
    .finalize();
  uri2 = uri2
    .mutate()
    .setSpec("http://example.com/;bar")
    .finalize();
  Assert.ok(!uri1.equals(uri2));

  uri1 = uri1
    .mutate()
    .setSpec("http://example.com#")
    .finalize();
  uri2 = uri2
    .mutate()
    .setSpec("http://example.com/#")
    .finalize();
  Assert.ok(uri1.equals(uri2));

  uri1 = uri1
    .mutate()
    .setSpec("http://example.com?")
    .finalize();
  uri2 = uri2
    .mutate()
    .setSpec("http://example.com/?")
    .finalize();
  Assert.ok(uri1.equals(uri2));

  // see https://bugzilla.mozilla.org/show_bug.cgi?id=665706
  // ";" is not parsed as special anymore and thus ends up
  // in the authority component (see RFC 3986)
  uri1 = uri1
    .mutate()
    .setSpec("http://example.com;")
    .finalize();
  uri2 = uri2
    .mutate()
    .setSpec("http://example.com/;")
    .finalize();
  Assert.ok(!uri1.equals(uri2));

  uri1 = uri1
    .mutate()
    .setSpec("http://example.com")
    .finalize();
  uri2 = uri2
    .mutate()
    .setSpec("http://example.com/")
    .finalize();
  Assert.ok(uri1.equals(uri2));
}