mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
fix stall on failed channel join
This commit is contained in:
committed by
Valentin Lorentz
parent
a74f893942
commit
8d427c80c8
@ -13,6 +13,15 @@ from .irc_utils.junkdrawer import normalizeWhitespace, random_name
|
|||||||
from .irc_utils.sasl import sasl_plain_blob
|
from .irc_utils.sasl import sasl_plain_blob
|
||||||
from .exceptions import ConnectionClosed
|
from .exceptions import ConnectionClosed
|
||||||
from .specifications import Specifications
|
from .specifications import Specifications
|
||||||
|
from .numerics import ERR_NOSUCHCHANNEL, ERR_TOOMANYCHANNELS, ERR_BADCHANNELKEY, ERR_INVITEONLYCHAN, ERR_BANNEDFROMCHAN, ERR_NEEDREGGEDNICK
|
||||||
|
|
||||||
|
CHANNEL_JOIN_FAIL_NUMERICS = frozenset([ERR_NOSUCHCHANNEL, ERR_TOOMANYCHANNELS, ERR_BADCHANNELKEY, ERR_INVITEONLYCHAN, ERR_BANNEDFROMCHAN, ERR_NEEDREGGEDNICK])
|
||||||
|
|
||||||
|
class ChannelJoinException(Exception):
|
||||||
|
def __init__(self, code, params):
|
||||||
|
super().__init__(f'Failed to join channel ({code}): {params}')
|
||||||
|
self.code = code
|
||||||
|
self.params = params
|
||||||
|
|
||||||
class _IrcTestCase(unittest.TestCase):
|
class _IrcTestCase(unittest.TestCase):
|
||||||
"""Base class for test cases."""
|
"""Base class for test cases."""
|
||||||
@ -388,10 +397,11 @@ class BaseServerTestCase(_IrcTestCase):
|
|||||||
joined = False
|
joined = False
|
||||||
while not joined:
|
while not joined:
|
||||||
for msg in self.getMessages(client):
|
for msg in self.getMessages(client):
|
||||||
# todo: also respond to cannot join channel numeric
|
if msg.command == 'JOIN' and 0 < len(msg.params) and msg.params[0].lower() == channel.lower():
|
||||||
if msg.command.upper() == 'JOIN' and 0 < len(msg.params) and msg.params[0].lower() == channel.lower():
|
|
||||||
joined = True
|
joined = True
|
||||||
break
|
break
|
||||||
|
elif msg.command in CHANNEL_JOIN_FAIL_NUMERICS:
|
||||||
|
raise ChannelJoinException(msg.command, msg.params)
|
||||||
|
|
||||||
def getISupport(self):
|
def getISupport(self):
|
||||||
cn = random_name('bar')
|
cn = random_name('bar')
|
||||||
|
@ -152,6 +152,7 @@ ERR_BANNEDFROMCHAN = "474"
|
|||||||
ERR_BADCHANNELKEY = "475"
|
ERR_BADCHANNELKEY = "475"
|
||||||
ERR_BADCHANMASK = "476"
|
ERR_BADCHANMASK = "476"
|
||||||
ERR_NOCHANMODES = "477"
|
ERR_NOCHANMODES = "477"
|
||||||
|
ERR_NEEDREGGEDNICK = "477"
|
||||||
ERR_BANLISTFULL = "478"
|
ERR_BANLISTFULL = "478"
|
||||||
ERR_NOPRIVILEGES = "481"
|
ERR_NOPRIVILEGES = "481"
|
||||||
ERR_CHANOPRIVSNEEDED = "482"
|
ERR_CHANOPRIVSNEEDED = "482"
|
||||||
|
Reference in New Issue
Block a user