Test that WHO with non-existing nick returns RPL_ENDOFWHO (#215)

This commit is contained in:
Simon Ser
2023-08-17 20:15:18 +02:00
committed by GitHub
parent b28820e562
commit 10e07aa800

View File

@ -423,6 +423,25 @@ class WhoTestCase(BaseWhoTestCase, cases.BaseServerTestCase):
params=["otherNick", InsensitiveStr(chan), ANYSTR], params=["otherNick", InsensitiveStr(chan), ANYSTR],
) )
@cases.mark_specifications("Modern")
def testWhoNickNotExists(self):
"""
When WHO is sent with a non-existing nickname, the server must reply
with a single RPL_ENDOFWHO. See:
<https://github.com/ircdocs/modern-irc/pull/216>
"""
self._init()
self.sendLine(2, "WHO idontexist")
(end,) = self.getMessages(2)
self.assertMessageMatch(
end,
command=RPL_ENDOFWHO,
params=["otherNick", InsensitiveStr("idontexist"), ANYSTR],
)
@cases.mark_specifications("IRCv3") @cases.mark_specifications("IRCv3")
@cases.mark_isupport("WHOX") @cases.mark_isupport("WHOX")
def testWhoxFull(self): def testWhoxFull(self):