summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_standardurl.js
diff options
context:
space:
mode:
authorNew Tobin Paradigm <email@mattatobin.com>2018-04-16 08:31:05 -0400
committerGitHub <noreply@github.com>2018-04-16 08:31:05 -0400
commit4028f58ce7e9ed54327afc6e2a44f5092005dcda (patch)
treea6123133b2347a723ecf1f99260c0738a369a97e /netwerk/test/unit/test_standardurl.js
parentc394a5f8710e9e83e8caa3f524aca4a80309b7cb (diff)
parentf138ec95d9d2c9faba019e52467beeed2a73b4f5 (diff)
downloadUXP-4028f58ce7e9ed54327afc6e2a44f5092005dcda.tar
UXP-4028f58ce7e9ed54327afc6e2a44f5092005dcda.tar.gz
UXP-4028f58ce7e9ed54327afc6e2a44f5092005dcda.tar.lz
UXP-4028f58ce7e9ed54327afc6e2a44f5092005dcda.tar.xz
UXP-4028f58ce7e9ed54327afc6e2a44f5092005dcda.zip
Merge pull request #175 from janekptacijarabaci/url_parser_2
moebius#131: URL parser - stop preserving empty passwords
Diffstat (limited to 'netwerk/test/unit/test_standardurl.js')
-rw-r--r--netwerk/test/unit/test_standardurl.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/netwerk/test/unit/test_standardurl.js b/netwerk/test/unit/test_standardurl.js
index c2b4dd365..4cc2f393e 100644
--- a/netwerk/test/unit/test_standardurl.js
+++ b/netwerk/test/unit/test_standardurl.js
@@ -472,3 +472,23 @@ add_test(function test_invalidHostChars() {
// hostname separators, so there is no way to set them and fail.
run_next_test();
});
+
+add_test(function test_emptyPassword() {
+ var url = stringToURL("http://a:@example.com");
+ do_check_eq(url.spec, "http://a@example.com/");
+ url.password = "pp";
+ do_check_eq(url.spec, "http://a:pp@example.com/");
+ url.password = "";
+ do_check_eq(url.spec, "http://a@example.com/");
+ url.userPass = "xxx:";
+ do_check_eq(url.spec, "http://xxx@example.com/");
+ url.password = "zzzz";
+ do_check_eq(url.spec, "http://xxx:zzzz@example.com/");
+ url.userPass = "xxxxx:yyyyyy";
+ do_check_eq(url.spec, "http://xxxxx:yyyyyy@example.com/");
+ url.userPass = "z:";
+ do_check_eq(url.spec, "http://z@example.com/");
+ url.password = "ppppppppppp";
+ do_check_eq(url.spec, "http://z:ppppppppppp@example.com/");
+ run_next_test();
+});