mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
LIST: make RPL_LISTSTART optional (as it is today)
This commit is contained in:
@ -233,9 +233,8 @@ class JoinTestCase(cases.BaseServerTestCase):
|
||||
self.getMessages(1)
|
||||
self.sendLine(2, 'LIST')
|
||||
m = self.getMessage(2)
|
||||
self.assertMessageEqual(m, command='321', # RPL_LISTSTART
|
||||
fail_msg='First reply to LIST is not 321 (RPL_LISTSTART), '
|
||||
'but: {msg}')
|
||||
if m.command == '321':
|
||||
# skip RPL_LISTSTART
|
||||
m = self.getMessage(2)
|
||||
self.assertNotEqual(m.command, '322', # RPL_LIST
|
||||
'LIST response gives (at least) one channel, whereas there '
|
||||
@ -256,9 +255,8 @@ class JoinTestCase(cases.BaseServerTestCase):
|
||||
self.getMessages(1)
|
||||
self.sendLine(2, 'LIST')
|
||||
m = self.getMessage(2)
|
||||
self.assertMessageEqual(m, command='321', # RPL_LISTSTART
|
||||
fail_msg='First reply to LIST is not 321 (RPL_LISTSTART), '
|
||||
'but: {msg}')
|
||||
if m.command == '321':
|
||||
# skip RPL_LISTSTART
|
||||
m = self.getMessage(2)
|
||||
self.assertNotEqual(m.command, '323', # RPL_LISTEND
|
||||
fail_msg='LIST response ended (ie. 323, aka RPL_LISTEND) '
|
||||
|
Reference in New Issue
Block a user