summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_hostnameIsSharedIPAddress.js
diff options
context:
space:
mode:
Diffstat (limited to 'netwerk/test/unit/test_hostnameIsSharedIPAddress.js')
-rw-r--r--netwerk/test/unit/test_hostnameIsSharedIPAddress.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/netwerk/test/unit/test_hostnameIsSharedIPAddress.js b/netwerk/test/unit/test_hostnameIsSharedIPAddress.js
new file mode 100644
index 0000000000..80a848bfbb
--- /dev/null
+++ b/netwerk/test/unit/test_hostnameIsSharedIPAddress.js
@@ -0,0 +1,21 @@
+"use strict";
+
+var ioService = Cc["@mozilla.org/network/io-service;1"].getService(
+ Ci.nsIIOService
+);
+
+function run_test() {
+ let testURIs = [
+ // 100.64/10 prefix (RFC 6598)
+ ["http://100.63.255.254", false],
+ ["http://100.64.0.0", true],
+ ["http://100.91.63.42", true],
+ ["http://100.127.255.254", true],
+ ["http://100.128.0.0", false],
+ ];
+
+ for (let [uri, isShared] of testURIs) {
+ let nsuri = ioService.newURI(uri);
+ equal(isShared, ioService.hostnameIsSharedIPAddress(nsuri));
+ }
+}