mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
Add tests for LIST.
This commit is contained in:
@ -132,3 +132,50 @@ class JoinTestCase(cases.BaseServerTestCase):
|
||||
'"foo" with an optional "+" or "@" prefix, but got: '
|
||||
'{msg}')
|
||||
|
||||
def testListEmpty(self):
|
||||
"""<https://tools.ietf.org/html/rfc1459#section-4.2.6>
|
||||
<https://tools.ietf.org/html/rfc2812#section-3.2.6>
|
||||
"""
|
||||
self.connectClient('foo')
|
||||
self.connectClient('bar')
|
||||
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}')
|
||||
m = self.getMessage(2)
|
||||
self.assertNotEqual(m.command, '322', # RPL_LIST
|
||||
'LIST response gives (at least) one channel, whereas there '
|
||||
'is none.')
|
||||
self.assertMessageEqual(m, command='323', # RPL_LISTEND
|
||||
fail_msg='Second reply to LIST is not 322 (RPL_LIST) '
|
||||
'or 323 (RPL_LISTEND), or but: {msg}')
|
||||
|
||||
def testListOne(self):
|
||||
"""<https://tools.ietf.org/html/rfc1459#section-4.2.6>
|
||||
<https://tools.ietf.org/html/rfc2812#section-3.2.6>
|
||||
"""
|
||||
self.connectClient('foo')
|
||||
self.connectClient('bar')
|
||||
self.sendLine(1, 'JOIN #chan')
|
||||
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}')
|
||||
m = self.getMessage(2)
|
||||
self.assertNotEqual(m.command, '323', # RPL_LISTEND
|
||||
'LIST response ended (ie. 323, aka RPL_LISTEND) without '
|
||||
'listing any channel, whereas there is one.')
|
||||
self.assertMessageEqual(m, command='322', # RPL_LIST
|
||||
fail_msg='Second reply to LIST is not 322 (RPL_LIST), '
|
||||
'nor 323 (RPL_LISTEND) but: {msg}')
|
||||
m = self.getMessage(2)
|
||||
self.assertNotEqual(m.command, '322', # RPL_LIST
|
||||
'LIST response gives (at least) two channels, whereas there '
|
||||
'is only one.')
|
||||
self.assertMessageEqual(m, command='323', # RPL_LISTEND
|
||||
fail_msg='Third reply to LIST is not 322 (RPL_LIST) '
|
||||
'or 323 (RPL_LISTEND), or but: {msg}')
|
||||
|
Reference in New Issue
Block a user