mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
* Simplify RPL_NAMREPLY-on-join tests * Simplify testMultiPrefix * Add testNoMultiPrefix
99 lines
3.1 KiB
Python
99 lines
3.1 KiB
Python
"""
|
||
`IRCv3 multi-prefix <https://ircv3.net/specs/extensions/multi-prefix>`_
|
||
"""
|
||
|
||
from irctest import cases
|
||
from irctest.patma import ANYSTR
|
||
|
||
|
||
class MultiPrefixTestCase(cases.BaseServerTestCase):
|
||
@cases.mark_capabilities("multi-prefix")
|
||
def testMultiPrefix(self):
|
||
"""“When requested, the multi-prefix client capability will cause the
|
||
IRC server to send all possible prefixes which apply to a user in NAMES
|
||
and WHO output.
|
||
|
||
These prefixes MUST be in order of ‘rank’, from highest to lowest.
|
||
"""
|
||
self.connectClient("foo", capabilities=["multi-prefix"], skip_if_cap_nak=True)
|
||
self.joinChannel(1, "#chan")
|
||
self.sendLine(1, "MODE #chan +v foo")
|
||
self.getMessages(1)
|
||
|
||
# TODO(dan): Make sure +v is voice
|
||
|
||
self.sendLine(1, "NAMES #chan")
|
||
reply = self.getMessage(1)
|
||
self.assertMessageMatch(
|
||
reply,
|
||
command="353",
|
||
params=["foo", ANYSTR, "#chan", "@+foo"],
|
||
fail_msg="Expected NAMES response (353) with @+foo, got: {msg}",
|
||
)
|
||
self.getMessages(1)
|
||
|
||
self.sendLine(1, "WHO #chan")
|
||
msg = self.getMessage(1)
|
||
self.assertEqual(
|
||
msg.command, "352", msg, fail_msg="Expected WHO response (352), got: {msg}"
|
||
)
|
||
self.assertGreaterEqual(
|
||
len(msg.params),
|
||
8,
|
||
"Expected WHO response (352) with 8 params, got: {msg}".format(msg=msg),
|
||
)
|
||
self.assertIn(
|
||
"@+",
|
||
msg.params[6],
|
||
'Expected WHO response (352) with "@+" in param 7, got: {msg}'.format(
|
||
msg=msg
|
||
),
|
||
)
|
||
|
||
@cases.xfailIfSoftware(
|
||
["irc2", "Bahamut"], "irc2 and Bahamut send a trailing space"
|
||
)
|
||
def testNoMultiPrefix(self):
|
||
"""When not requested, only the highest prefix should be sent"""
|
||
self.connectClient("foo")
|
||
self.joinChannel(1, "#chan")
|
||
self.sendLine(1, "MODE #chan +v foo")
|
||
self.getMessages(1)
|
||
|
||
# TODO(dan): Make sure +v is voice
|
||
|
||
self.sendLine(1, "NAMES #chan")
|
||
reply = self.getMessage(1)
|
||
self.assertMessageMatch(
|
||
reply,
|
||
command="353",
|
||
params=["foo", ANYSTR, "#chan", "@foo"],
|
||
fail_msg="Expected NAMES response (353) with @foo, got: {msg}",
|
||
)
|
||
self.getMessages(1)
|
||
|
||
self.sendLine(1, "WHO #chan")
|
||
msg = self.getMessage(1)
|
||
self.assertEqual(
|
||
msg.command, "352", msg, fail_msg="Expected WHO response (352), got: {msg}"
|
||
)
|
||
self.assertGreaterEqual(
|
||
len(msg.params),
|
||
8,
|
||
"Expected WHO response (352) with 8 params, got: {msg}".format(msg=msg),
|
||
)
|
||
self.assertIn(
|
||
"@",
|
||
msg.params[6],
|
||
'Expected WHO response (352) with "@" in param 7, got: {msg}'.format(
|
||
msg=msg
|
||
),
|
||
)
|
||
self.assertNotIn(
|
||
"+",
|
||
msg.params[6],
|
||
'Expected WHO response (352) with no "+" in param 7, got: {msg}'.format(
|
||
msg=msg
|
||
),
|
||
)
|