]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/lisp/auth-source-pass-tests.el: Add assertions for host:port
authorEdison Ibañez <arkhan.xxx@gmail.com>
Tue, 7 Nov 2017 08:00:43 +0000 (09:00 +0100)
committerNicolas Petton <nicolas@petton.fr>
Tue, 5 Jun 2018 13:50:46 +0000 (15:50 +0200)
test/lisp/auth-source-pass-tests.el

index 86f59e51664b2b301e61f473858796208f282cc3..557a34ff596a19f5fc4906c3726b596c4e8551b9 100644 (file)
@@ -166,11 +166,13 @@ This function is intended to be set to `auth-source-debug`."
                    "host.com"))))
 
 (ert-deftest auth-source-pass-hostname ()
+  (should (equal (auth-source-pass--hostname "https://foo.bar:443") "foo.bar"))
   (should (equal (auth-source-pass--hostname "https://foo.bar") "foo.bar"))
   (should (equal (auth-source-pass--hostname "http://foo.bar") "foo.bar"))
   (should (equal (auth-source-pass--hostname "https://SomeUser@foo.bar") "foo.bar")))
 
 (ert-deftest auth-source-pass-hostname-with-user ()
+  (should (equal (auth-source-pass--hostname-with-user "https://foo.bar:443") "foo.bar"))
   (should (equal (auth-source-pass--hostname-with-user "https://foo.bar") "foo.bar"))
   (should (equal (auth-source-pass--hostname-with-user "http://foo.bar") "foo.bar"))
   (should (equal (auth-source-pass--hostname-with-user "https://SomeUser@foo.bar") "SomeUser@foo.bar")))