Add tests for LIST.

This commit is contained in:
Valentin Lorentz
2015-12-21 23:15:22 +01:00
parent 3380450cdf
commit a4cf83e01a

View File

@ -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}')