mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 23:09:48 +00:00
test that PART actually parts (#211)
Co-authored-by: Val Lorentz <progval+github@progval.net>
This commit is contained in:
committed by
GitHub
parent
59b2cd729b
commit
d190a91960
@ -10,6 +10,7 @@ TODO: cross-reference Modern
|
|||||||
import time
|
import time
|
||||||
|
|
||||||
from irctest import cases
|
from irctest import cases
|
||||||
|
from irctest.numerics import RPL_NAMREPLY
|
||||||
|
|
||||||
|
|
||||||
class PartTestCase(cases.BaseServerTestCase):
|
class PartTestCase(cases.BaseServerTestCase):
|
||||||
@ -84,6 +85,12 @@ class PartTestCase(cases.BaseServerTestCase):
|
|||||||
self.getMessages(1)
|
self.getMessages(1)
|
||||||
self.getMessages(2)
|
self.getMessages(2)
|
||||||
|
|
||||||
|
self.sendLine(2, "PRIVMSG #chan :hi everyone")
|
||||||
|
self.getMessages(2)
|
||||||
|
self.assertMessageMatch(
|
||||||
|
self.getMessage(1), command="PRIVMSG", params=["#chan", "hi everyone"]
|
||||||
|
)
|
||||||
|
|
||||||
self.sendLine(1, "PART #chan")
|
self.sendLine(1, "PART #chan")
|
||||||
# both the PART'ing client and the other channel member should receive
|
# both the PART'ing client and the other channel member should receive
|
||||||
# a PART line:
|
# a PART line:
|
||||||
@ -92,6 +99,21 @@ class PartTestCase(cases.BaseServerTestCase):
|
|||||||
m = self.getMessage(2)
|
m = self.getMessage(2)
|
||||||
self.assertMessageMatch(m, command="PART")
|
self.assertMessageMatch(m, command="PART")
|
||||||
|
|
||||||
|
self.sendLine(2, "PRIVMSG #chan :hi again everyone")
|
||||||
|
self.getMessages(2)
|
||||||
|
# client 1 has PART'ed and should not receive channel messages:
|
||||||
|
self.assertEqual(self.getMessages(1), [])
|
||||||
|
|
||||||
|
# client 1 should no longer appear in NAMES responses:
|
||||||
|
names = set()
|
||||||
|
self.sendLine(2, "NAMES #chan")
|
||||||
|
for reply in self.getMessages(2):
|
||||||
|
if reply.command != RPL_NAMREPLY:
|
||||||
|
continue
|
||||||
|
names.update(reply.params[-1].replace("@", "").split())
|
||||||
|
self.assertNotIn("bar", names)
|
||||||
|
self.assertIn("baz", names)
|
||||||
|
|
||||||
@cases.mark_specifications("RFC2812")
|
@cases.mark_specifications("RFC2812")
|
||||||
def testBasicPartRfc2812(self):
|
def testBasicPartRfc2812(self):
|
||||||
"""
|
"""
|
||||||
|
Reference in New Issue
Block a user