1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
;;; erc-scenarios-auth-source.el --- auth-source scenarios -*- lexical-binding: t -*-
;; Copyright (C) 2022-2025 Free Software Foundation, Inc.
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;; Commentary:
;; For practical reasons (mainly lack of imagination), this file
;; contains tests for both server-password and NickServ contexts.
;;; Code:
(require 'ert-x)
(eval-and-compile
(let ((load-path (cons (ert-resource-directory) load-path)))
(require 'erc-scenarios-common)))
(eval-when-compile (require 'erc-join)
(require 'erc-services))
(defun erc-scenarios-common--auth-source (id dialog &rest rest)
(push "machine GNU.chat port %d user \"#chan\" password spam" rest)
(erc-scenarios-common-with-cleanup
((erc-scenarios-common-dialog "base/auth-source")
(dumb-server (erc-d-run "localhost" t dialog))
(port (process-contact dumb-server :service))
(ents `(,@(mapcar (lambda (fmt) (format fmt port)) rest)
"machine MyHost port irc password 123"))
(netrc-file (make-temp-file "auth-source-test" nil nil
(string-join ents "\n")))
(auth-sources (list netrc-file))
(auth-source-do-cache nil)
(erc-scenarios-common-extra-teardown (lambda ()
(delete-file netrc-file))))
(ert-info ("Connect")
(with-current-buffer (erc :server "127.0.0.1"
:port port
:nick "tester"
:full-name "tester"
:id id)
(should (string= (buffer-name) (if id
(symbol-name id)
(format "127.0.0.1:%d" port))))
(erc-d-t-wait-for 10 (eq erc-network 'FooNet))))))
(ert-deftest erc-scenarios-base-auth-source-server--dialed ()
:tags '(:expensive-test)
(erc-scenarios-common--auth-source
nil 'foonet
"machine GNU.chat port %d user tester password fake"
"machine FooNet port %d user tester password fake"
"machine 127.0.0.1 port %d user tester password changeme"
"machine 127.0.0.1 port %d user imposter password fake"))
(ert-deftest erc-scenarios-base-auth-source-server--netid ()
:tags '(:expensive-test)
(erc-scenarios-common--auth-source
'MySession 'foonet
"machine MySession port %d user tester password changeme"
"machine 127.0.0.1 port %d user tester password fake"
"machine FooNet port %d user tester password fake"))
(ert-deftest erc-scenarios-base-auth-source-server--netid-custom ()
:tags '(:expensive-test)
(let ((erc-auth-source-server-function
(lambda (&rest _) (erc-auth-source-search :host "MyHost"))))
(erc-scenarios-common--auth-source
'MySession 'foonet
"machine 127.0.0.1 port %d user tester password fake"
"machine MyHost port %d user tester password changeme"
"machine MySession port %d user tester password fake")))
(ert-deftest erc-scenarios-base-auth-source-server--nopass ()
:tags '(:expensive-test)
(let (erc-auth-source-server-function)
(erc-scenarios-common--auth-source nil 'nopass)))
(ert-deftest erc-scenarios-base-auth-source-server--nopass-netid ()
:tags '(:expensive-test)
(let (erc-auth-source-server-function)
(erc-scenarios-common--auth-source 'MySession 'nopass)))
;; Identify via auth source with no initial password
(defun erc-scenarios-common--services-auth-source (&rest rest)
(erc-scenarios-common-with-cleanup
((erc-scenarios-common-dialog "services/auth-source")
(erc-server-flood-penalty 0.1)
(dumb-server (erc-d-run "localhost" t 'libera))
(port (process-contact dumb-server :service))
(ents `(,@(mapcar (lambda (fmt) (format fmt port)) rest)
"machine MyHost port irc password 123"))
(netrc-file (make-temp-file "auth-source-test" nil nil
(string-join ents "\n")))
(auth-sources (list netrc-file))
(auth-source-do-cache nil)
(erc-modules (cons 'services erc-modules))
(erc-use-auth-source-for-nickserv-password t) ; do consult for NickServ
(expect (erc-d-t-make-expecter))
(erc-scenarios-common-extra-teardown (lambda ()
(delete-file netrc-file))))
(cl-letf (((symbol-function 'read-passwd)
(lambda (&rest _) (error "Unexpected read-passwd call"))))
(ert-info ("Connect without password")
(with-current-buffer (erc :server "127.0.0.1"
:port port
:nick "tester"
:full-name "tester")
(should (string= (buffer-name) (format "127.0.0.1:%d" port)))
(erc-d-t-wait-for 8 (eq erc-network 'Libera.Chat))
(funcall expect 3 "This nickname is registered.")
(funcall expect 3 "You are now identified")
(funcall expect 3 "Last login from")
(erc-cmd-QUIT ""))))
(erc-services-mode -1)
(should-not (memq 'services erc-modules))))
;; These tests are about authenticating to nick services
(ert-deftest erc-scenarios-services-auth-source--network ()
:tags '(:expensive-test)
;; Skip consulting auth-source for the server password (PASS).
(let (erc-auth-source-server-function)
(erc-scenarios-common--services-auth-source
"machine 127.0.0.1 port %d user tester password spam"
"machine zirconium.libera.chat port %d user tester password fake"
"machine Libera.Chat port %d user tester password changeme")))
(ert-deftest erc-scenarios-services-auth-source--network-connect-lookup ()
:tags '(:expensive-test)
;; Do consult auth-source for the server password (and find nothing)
(erc-scenarios-common--services-auth-source
"machine zirconium.libera.chat port %d user tester password fake"
"machine Libera.Chat port %d user tester password changeme"))
(ert-deftest erc-scenarios-services-auth-source--announced ()
:tags '(:expensive-test)
(let (erc-auth-source-server-function)
(erc-scenarios-common--services-auth-source
"machine 127.0.0.1 port %d user tester password spam"
"machine zirconium.libera.chat port %d user tester password changeme")))
(ert-deftest erc-scenarios-services-auth-source--dialed ()
:tags '(:expensive-test)
;; Support legacy host -> domain name
;; (likely most common in real configs)
(let (erc-auth-source-server-function)
(erc-scenarios-common--services-auth-source
"machine 127.0.0.1 port %d user tester password changeme")))
(ert-deftest erc-scenarios-services-auth-source--custom ()
:tags '(:expensive-test)
(let (erc-auth-source-server-function
(erc-auth-source-services-function
(lambda (&rest _) (erc-auth-source-search :host "MyAccount"))))
(erc-scenarios-common--services-auth-source
"machine zirconium.libera.chat port %d user tester password spam"
"machine MyAccount port %d user tester password changeme"
"machine 127.0.0.1 port %d user tester password fake")))
;;; erc-scenarios-auth-source.el ends here
|