1
0
Fork 0
firefox/netwerk/test/unit/test_hostnameIsLocalIPAddress.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

45 lines
1.3 KiB
JavaScript

"use strict";
function run_test() {
let testURIs = [
["http://example.com", false],
["about:robots", false],
// 0/8 prefix (RFC 1122)
["http://0.0.0.0", true],
["http://0.1.2.3", true],
["http://0.255.255.255", true],
["http://1.0.0.0", false],
// 10/8 prefix (RFC 1918)
["http://9.255.255.255", false],
["http://10.0.0.0", true],
["http://10.0.23.31", true],
["http://10.255.255.255", true],
["http://11.0.0.0", false],
// 169.254/16 prefix (Link Local)
["http://169.253.255.255", false],
["http://169.254.0.0", true],
["http://169.254.42.91", true],
["http://169.254.255.255", true],
["http://169.255.0.0", false],
// 172.16/12 prefix (RFC 1918)
["http://172.15.255.255", false],
["http://172.16.0.0", true],
["http://172.25.110.0", true],
["http://172.31.255.255", true],
["http://172.32.0.0", false],
// 192.168/16 prefix (RFC 1918)
["http://192.167.255.255", false],
["http://192.168.0.0", true],
["http://192.168.127.10", true],
["http://192.168.255.255", true],
["http://192.169.0.0", false],
// IPv6 any address
["http://[::]", true],
["http://[::ffff:0:0]", true],
];
for (let [uri, isLocal] of testURIs) {
let nsuri = Services.io.newURI(uri);
equal(isLocal, Services.io.hostnameIsLocalIPAddress(nsuri));
}
}