summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2026-04-30 14:41:53 -0300
committerEuAndreh <eu@euandre.org>2026-04-30 14:41:53 -0300
commitfd25096591cce31828941eb94d0dd344cfa2ae5e (patch)
tree9debf4ec594498d9975434aec74ece5d29ea6934 /tests
parentIdentify networks via PROXY v2 AUTHORITY; drop default network (diff)
downloadpapod-fd25096591cce31828941eb94d0dd344cfa2ae5e.tar.gz
papod-fd25096591cce31828941eb94d0dd344cfa2ae5e.tar.xz
Bump welcome-banner counts after RPL_005 split
The welcome burst grew to three RPL_005 lines a while back, but test_replies-for! / test_sasl / test_memoserv still asserted the old counts (7/7/8). Update them to 8/8/9 to match what the server actually emits.
Diffstat (limited to 'tests')
-rw-r--r--tests/unit.clj9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/unit.clj b/tests/unit.clj
index 9eda963..93e3703 100644
--- a/tests/unit.clj
+++ b/tests/unit.clj
@@ -185,7 +185,8 @@
{:command "USER"
:params ["" "joe" "0" "x" ":Joe"]}
c no-conn)]
- (is (= 7 (count replies)))
+ ;; 001, 002, 003, 004, three RPL_005 lines, 422.
+ (is (= 8 (count replies)))
(is (string/includes? (first replies) "001"))
(is (:registered? @c)))))
(testing "USER before NICK does not register"
@@ -557,7 +558,8 @@
(is (:authenticated? @c2)))
;; CAP END completes registration
(let [replies (handle-cap ["END"] c2 components)]
- (is (= 7 (count replies)))
+ ;; 001, 002, 003, 004, three RPL_005 lines, 422.
+ (is (= 8 (count replies)))
(is (string/includes? (first replies) "001"))
(is (:registered? @c2))))))
(testing "SASL with wrong password"
@@ -722,7 +724,8 @@
(let [replies (@#'papod/replies-for!
{:command "USER" :params ["" "bob" "0" "x" ":B"]}
c components)]
- (is (= 8 (count replies)))
+ ;; 8 welcome lines (001..422 with three RPL_005) + memo.
+ (is (= 9 (count replies)))
(is (string/includes? (first replies) "001"))
(is (string/includes? (last replies) "MemoServ")))))))