summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_bug376844.js
blob: 9a21b0171e2f54fd92b38058ec18f7f95e8df1dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const testURLs = [
  ["http://example.com/<", "http://example.com/%3C"],
  ["http://example.com/>", "http://example.com/%3E"],
  ["http://example.com/'", "http://example.com/'"],
  ["http://example.com/\"", "http://example.com/%22"],
  ["http://example.com/?<", "http://example.com/?%3C"],
  ["http://example.com/?>", "http://example.com/?%3E"],
  ["http://example.com/?'", "http://example.com/?%27"],
  ["http://example.com/?\"", "http://example.com/?%22"]
]

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

  for (var i = 0; i < testURLs.length; i++) {
    var uri = ioServ.newURI(testURLs[i][0], null, null);
    do_check_eq(uri.spec, testURLs[i][1]);
  }
}