From 7255d655146c4dd83c6c7b97f8dca5e7e924cb56 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Wed, 9 Aug 2023 09:16:32 -0700 Subject: [PATCH] Test that WHO #chan always returns that channel (#213) * Test that WHO #chan always returns that channel @emersion's test from https://github.com/progval/irctest/pull/190 Co-authored-by: Simon Ser Co-authored-by: Val Lorentz --- irctest/server_tests/who.py | 62 +++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/irctest/server_tests/who.py b/irctest/server_tests/who.py index b3892d6..7a182ba 100644 --- a/irctest/server_tests/who.py +++ b/irctest/server_tests/who.py @@ -361,6 +361,68 @@ class WhoTestCase(BaseWhoTestCase, cases.BaseServerTestCase): params=["otherNick", InsensitiveStr(mask), ANYSTR], ) + @cases.mark_specifications("Modern") + def testWhoMultiChan(self): + """ + When WHO <#chan> is sent, the second parameter of RPL_WHOREPLY must + be ``#chan``. See discussion on Modern: + + """ + self._init() + + self.sendLine(1, "JOIN #otherchan") + self.getMessages(1) + + self.sendLine(2, "JOIN #otherchan") + self.getMessages(2) + + for chan in ["#chan", "#otherchan"]: + self.sendLine(2, f"WHO {chan}") + messages = self.getMessages(2) + + self.assertEqual(len(messages), 3, "Unexpected number of messages") + + (*replies, end) = messages + + # Get them in deterministic order + replies.sort(key=lambda msg: msg.params[5]) + + self.assertMessageMatch( + replies[0], + command=RPL_WHOREPLY, + params=[ + "otherNick", + chan, + ANYSTR, + ANYSTR, + "My.Little.Server", + "coolNick", + ANYSTR, + ANYSTR, + ], + ) + + self.assertMessageMatch( + replies[1], + command=RPL_WHOREPLY, + params=[ + "otherNick", + chan, + ANYSTR, + ANYSTR, + "My.Little.Server", + "otherNick", + ANYSTR, + ANYSTR, + ], + ) + + self.assertMessageMatch( + end, + command=RPL_ENDOFWHO, + params=["otherNick", InsensitiveStr(chan), ANYSTR], + ) + @cases.mark_specifications("IRCv3") @cases.mark_isupport("WHOX") def testWhoxFull(self):