mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
testDoubleKickMessages: Also test with a single chan
This commit is contained in:
@ -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":
|
||||||
|
Reference in New Issue
Block a user