testDoubleKickMessages: Also test with a single chan

This commit is contained in:
2021-07-09 23:11:14 +02:00
committed by Val Lorentz
parent 1a66d706e7
commit c9911da9b8

View File

@ -609,8 +609,9 @@ class JoinTestCase(cases.BaseServerTestCase):
# should return ERR_NOSUCHCHANNEL # should return ERR_NOSUCHCHANNEL
self.assertMessageMatch(m, command="403") self.assertMessageMatch(m, command="403")
@pytest.mark.parametrize("multiple_targets", [True, False])
@cases.mark_specifications("RFC2812") @cases.mark_specifications("RFC2812")
def testDoubleKickMessages(self): def testDoubleKickMessages(self, multiple_targets):
"""“The server MUST NOT send KICK messages with multiple channels or """“The server MUST NOT send KICK messages with multiple channels or
users to clients. This is necessarily to maintain backward users to clients. This is necessarily to maintain backward
compatibility with old client software.” compatibility with old client software.”
@ -636,7 +637,10 @@ class JoinTestCase(cases.BaseServerTestCase):
self.getMessages(3) self.getMessages(3)
self.getMessages(4) self.getMessages(4)
self.sendLine(1, "KICK #chan,#chan bar,baz :bye") if multiple_targets:
self.sendLine(1, "KICK #chan,#chan bar,baz :bye")
else:
self.sendLine(1, "KICK #chan bar,baz :bye")
try: try:
m = self.getMessage(1) m = self.getMessage(1)
if m.command == "482": if m.command == "482":