mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
test that WHO ignores +i for bare nicknames (#171)
This commit is contained in:
committed by
GitHub
parent
6290825c64
commit
dbdadec677
@ -503,3 +503,34 @@ class WhoServicesTestCase(BaseWhoTestCase, cases.BaseServerTestCase):
|
||||
command=RPL_ENDOFWHO,
|
||||
params=["otherNick", InsensitiveStr("coolNick"), ANYSTR],
|
||||
)
|
||||
|
||||
|
||||
class WhoInvisibleTestCase(cases.BaseServerTestCase):
|
||||
@cases.mark_specifications("Modern")
|
||||
def testWhoInvisible(self):
|
||||
if self.controller.software_name == "Bahamut":
|
||||
raise runner.OptionalExtensionNotSupported("WHO mask")
|
||||
|
||||
self.connectClient("evan", name="evan")
|
||||
self.sendLine("evan", "MODE evan +i")
|
||||
self.getMessages("evan")
|
||||
|
||||
self.connectClient("shivaram", name="shivaram")
|
||||
self.getMessages("shivaram")
|
||||
self.sendLine("shivaram", "WHO eva*")
|
||||
reply_cmds = {msg.command for msg in self.getMessages("shivaram")}
|
||||
self.assertEqual(reply_cmds, {RPL_ENDOFWHO})
|
||||
|
||||
# invisibility should not be respected for plain nicknames, only for masks:
|
||||
self.sendLine("shivaram", "WHO evan")
|
||||
replies = self.getMessages("shivaram")
|
||||
reply_cmds = {msg.command for msg in replies}
|
||||
self.assertEqual(reply_cmds, {RPL_WHOREPLY, RPL_ENDOFWHO})
|
||||
|
||||
# invisibility should not be respected if the users share a channel
|
||||
self.joinChannel("evan", "#test")
|
||||
self.joinChannel("shivaram", "#test")
|
||||
self.sendLine("shivaram", "WHO eva*")
|
||||
replies = self.getMessages("shivaram")
|
||||
reply_cmds = {msg.command for msg in replies}
|
||||
self.assertEqual(reply_cmds, {RPL_WHOREPLY, RPL_ENDOFWHO})
|
||||
|
Reference in New Issue
Block a user