mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
server: Fix double kick msgs test
This commit is contained in:
@ -322,6 +322,7 @@ class JoinTestCase(cases.BaseServerTestCase):
|
|||||||
self.connectClient('baz')
|
self.connectClient('baz')
|
||||||
self.connectClient('qux')
|
self.connectClient('qux')
|
||||||
self.sendLine(1, 'JOIN #chan')
|
self.sendLine(1, 'JOIN #chan')
|
||||||
|
self.getMessages(1)
|
||||||
# TODO: check foo is an operator
|
# TODO: check foo is an operator
|
||||||
self.sendLine(2, 'JOIN #chan')
|
self.sendLine(2, 'JOIN #chan')
|
||||||
self.sendLine(3, 'JOIN #chan')
|
self.sendLine(3, 'JOIN #chan')
|
||||||
@ -350,13 +351,21 @@ class JoinTestCase(cases.BaseServerTestCase):
|
|||||||
# The RFCs do not say KICK must be echoed
|
# The RFCs do not say KICK must be echoed
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# TODO: could be in the other order
|
mgroup = self.getMessages(4)
|
||||||
m = self.getMessage(4)
|
self.assertGreaterEqual(len(mgroup), 2)
|
||||||
self.assertMessageEqual(m, command='KICK',
|
m1, m2 = mgroup[:2]
|
||||||
params=['#chan', 'bar', 'bye'])
|
|
||||||
m = self.getMessage(4)
|
for m in m1, m2:
|
||||||
self.assertMessageEqual(m, command='KICK',
|
self.assertEqual(m.command, 'KICK')
|
||||||
params=['#chan', 'baz', 'bye'])
|
|
||||||
|
self.assertEqual(len(m.params), 3)
|
||||||
|
self.assertEqual(m.params[0], '#chan')
|
||||||
|
self.assertEqual(m.params[2], 'bye')
|
||||||
|
|
||||||
|
if (m1.params[1] == 'bar' and m2.params[1] == 'baz') or (m1.params[1] == 'baz' and m2.params[1] == 'bar'):
|
||||||
|
... # success
|
||||||
|
else:
|
||||||
|
raise AssertionError('Middle params [{}, {}] are not correct.'.format(m1.params[1], m2.params[1]))
|
||||||
|
|
||||||
@cases.SpecificationSelector.requiredBySpecification('RFC-deprecated')
|
@cases.SpecificationSelector.requiredBySpecification('RFC-deprecated')
|
||||||
def testInviteNonExistingChannelTransmitted(self):
|
def testInviteNonExistingChannelTransmitted(self):
|
||||||
|
Reference in New Issue
Block a user