list: Modernize tests a bit

This commit is contained in:
2022-03-20 14:06:54 +01:00
parent 72a12ff5ce
commit a9a7a2a187
2 changed files with 17 additions and 12 deletions

View File

@ -66,6 +66,7 @@ RPL_WHOISIDLE = "317"
RPL_ENDOFWHOIS = "318" RPL_ENDOFWHOIS = "318"
RPL_WHOISCHANNELS = "319" RPL_WHOISCHANNELS = "319"
RPL_WHOISSPECIAL = "320" RPL_WHOISSPECIAL = "320"
RPL_LISTSTART = "321"
RPL_LIST = "322" RPL_LIST = "322"
RPL_LISTEND = "323" RPL_LISTEND = "323"
RPL_CHANNELMODEIS = "324" RPL_CHANNELMODEIS = "324"

View File

@ -1,4 +1,5 @@
from irctest import cases from irctest import cases
from irctest.numerics import RPL_LIST, RPL_LISTEND, RPL_LISTSTART
class ListTestCase(cases.BaseServerTestCase): class ListTestCase(cases.BaseServerTestCase):
@ -6,26 +7,27 @@ class ListTestCase(cases.BaseServerTestCase):
def testListEmpty(self): def testListEmpty(self):
"""<https://tools.ietf.org/html/rfc1459#section-4.2.6> """<https://tools.ietf.org/html/rfc1459#section-4.2.6>
<https://tools.ietf.org/html/rfc2812#section-3.2.6> <https://tools.ietf.org/html/rfc2812#section-3.2.6>
<https://modern.ircdocs.horse/#list-message>
""" """
self.connectClient("foo") self.connectClient("foo")
self.connectClient("bar") self.connectClient("bar")
self.getMessages(1) self.getMessages(1)
self.sendLine(2, "LIST") self.sendLine(2, "LIST")
m = self.getMessage(2) m = self.getMessage(2)
if m.command == "321": if m.command == RPL_LISTSTART:
# skip RPL_LISTSTART # skip
m = self.getMessage(2) m = self.getMessage(2)
# skip local pseudo-channels listed by ngircd and ircu # skip local pseudo-channels listed by ngircd and ircu
while m.command == "322" and m.params[1].startswith("&"): while m.command == RPL_LIST and m.params[1].startswith("&"):
m = self.getMessage(2) m = self.getMessage(2)
self.assertNotEqual( self.assertNotEqual(
m.command, m.command,
"322", # RPL_LIST RPL_LIST,
"LIST response gives (at least) one channel, whereas there " "is none.", "LIST response gives (at least) one channel, whereas there " "is none.",
) )
self.assertMessageMatch( self.assertMessageMatch(
m, m,
command="323", # RPL_LISTEND command=RPL_LISTEND,
fail_msg="Second reply to LIST is not 322 (RPL_LIST) " fail_msg="Second reply to LIST is not 322 (RPL_LIST) "
"or 323 (RPL_LISTEND), or but: {msg}", "or 323 (RPL_LISTEND), or but: {msg}",
) )
@ -35,6 +37,8 @@ class ListTestCase(cases.BaseServerTestCase):
"""When a channel exists, LIST should get it in a reply. """When a channel exists, LIST should get it in a reply.
<https://tools.ietf.org/html/rfc1459#section-4.2.6> <https://tools.ietf.org/html/rfc1459#section-4.2.6>
<https://tools.ietf.org/html/rfc2812#section-3.2.6> <https://tools.ietf.org/html/rfc2812#section-3.2.6>
<https://modern.ircdocs.horse/#list-message>
""" """
self.connectClient("foo") self.connectClient("foo")
self.connectClient("bar") self.connectClient("bar")
@ -42,34 +46,34 @@ class ListTestCase(cases.BaseServerTestCase):
self.getMessages(1) self.getMessages(1)
self.sendLine(2, "LIST") self.sendLine(2, "LIST")
m = self.getMessage(2) m = self.getMessage(2)
if m.command == "321": if m.command == RPL_LISTSTART:
# skip RPL_LISTSTART # skip
m = self.getMessage(2) m = self.getMessage(2)
self.assertNotEqual( self.assertNotEqual(
m.command, m.command,
"323", # RPL_LISTEND RPL_LISTEND,
fail_msg="LIST response ended (ie. 323, aka RPL_LISTEND) " fail_msg="LIST response ended (ie. 323, aka RPL_LISTEND) "
"without listing any channel, whereas there is one.", "without listing any channel, whereas there is one.",
) )
self.assertMessageMatch( self.assertMessageMatch(
m, m,
command="322", # RPL_LIST command=RPL_LIST,
fail_msg="Second reply to LIST is not 322 (RPL_LIST), " fail_msg="Second reply to LIST is not 322 (RPL_LIST), "
"nor 323 (RPL_LISTEND) but: {msg}", "nor 323 (RPL_LISTEND) but: {msg}",
) )
m = self.getMessage(2) m = self.getMessage(2)
# skip local pseudo-channels listed by ngircd and ircu # skip local pseudo-channels listed by ngircd and ircu
while m.command == "322" and m.params[1].startswith("&"): while m.command == RPL_LIST and m.params[1].startswith("&"):
m = self.getMessage(2) m = self.getMessage(2)
self.assertNotEqual( self.assertNotEqual(
m.command, m.command,
"322", # RPL_LIST RPL_LIST,
fail_msg="LIST response gives (at least) two channels, " fail_msg="LIST response gives (at least) two channels, "
"whereas there is only one.", "whereas there is only one.",
) )
self.assertMessageMatch( self.assertMessageMatch(
m, m,
command="323", # RPL_LISTEND command=RPL_LISTEND,
fail_msg="Third reply to LIST is not 322 (RPL_LIST) " fail_msg="Third reply to LIST is not 322 (RPL_LIST) "
"or 323 (RPL_LISTEND), or but: {msg}", "or 323 (RPL_LISTEND), or but: {msg}",
) )