diff options
| author | Filipp Gunbin | 2018-05-15 03:02:49 +0300 |
|---|---|---|
| committer | Noam Postavsky | 2018-08-10 08:36:24 -0400 |
| commit | 5e42c349a0533602c23bf651d6b28eca25e95a46 (patch) | |
| tree | 3b73ef3bcd510e0201e65980343d9f92bd7dd64c /test | |
| parent | 71c92d89137b7fdde6c2bd4bed9b8dfda5fa53dd (diff) | |
| download | emacs-5e42c349a0533602c23bf651d6b28eca25e95a46.tar.gz emacs-5e42c349a0533602c23bf651d6b28eca25e95a46.zip | |
Fix bugs in `auth-source-netrc-parse-one'.
* lisp/auth-source.el (auth-source-netrc-parse-one): Ensure that match
data is not overwritten in `auth-source-netrc-parse-next-interesting'.
Ensure that blanks are skipped before and after going over comments
and eols.
* test/lisp/auth-source-tests.el (auth-source-test-netrc-parse-one): New test.
(cherry picked from commit 60ff8101449eea3a5ca4961299501efd83d011bd)
Diffstat (limited to 'test')
| -rw-r--r-- | test/lisp/auth-source-tests.el | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/lisp/auth-source-tests.el b/test/lisp/auth-source-tests.el index c1ee9093744..90caac8e4a2 100644 --- a/test/lisp/auth-source-tests.el +++ b/test/lisp/auth-source-tests.el | |||
| @@ -210,6 +210,25 @@ | |||
| 210 | ("login" . "user1") | 210 | ("login" . "user1") |
| 211 | ("machine" . "mymachine1")))))) | 211 | ("machine" . "mymachine1")))))) |
| 212 | 212 | ||
| 213 | (ert-deftest auth-source-test-netrc-parse-one () | ||
| 214 | (should (equal (auth-source--test-netrc-parse-one--all | ||
| 215 | "machine host1\n# comment\n") | ||
| 216 | '("machine" "host1"))) | ||
| 217 | (should (equal (auth-source--test-netrc-parse-one--all | ||
| 218 | "machine host1\n \n \nmachine host2\n") | ||
| 219 | '("machine" "host1" "machine" "host2")))) | ||
| 220 | |||
| 221 | (defun auth-source--test-netrc-parse-one--all (text) | ||
| 222 | "Parse TEXT with `auth-source-netrc-parse-one' until end,return list." | ||
| 223 | (with-temp-buffer | ||
| 224 | (insert text) | ||
| 225 | (goto-char (point-min)) | ||
| 226 | (let ((one (auth-source-netrc-parse-one)) all) | ||
| 227 | (while one | ||
| 228 | (push one all) | ||
| 229 | (setq one (auth-source-netrc-parse-one))) | ||
| 230 | (nreverse all)))) | ||
| 231 | |||
| 213 | (ert-deftest auth-source-test-format-prompt () | 232 | (ert-deftest auth-source-test-format-prompt () |
| 214 | (should (equal (auth-source-format-prompt "test %u %h %p" '((?u "user") (?h "host"))) | 233 | (should (equal (auth-source-format-prompt "test %u %h %p" '((?u "user") (?h "host"))) |
| 215 | "test user host %p"))) | 234 | "test user host %p"))) |