From 034fe5c51c66a79b568f929a62f2795db1cf8540 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Fri, 28 Dec 2018 13:42:47 -0500 Subject: [PATCH] framework enhancements --- irctest/cases.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/irctest/cases.py b/irctest/cases.py index 7c161f3..3449797 100644 --- a/irctest/cases.py +++ b/irctest/cases.py @@ -328,13 +328,16 @@ class BaseServerTestCase(_IrcTestCase): """Skip to the point where we are registered """ + result = [] while True: m = self.getMessage(client, synchronize=False) + result.append(m) if m.command == '001': - return m + return result + def connectClient(self, nick, name=None, capabilities=None, - skip_if_cap_nak=False): - client = self.addClient(name) + skip_if_cap_nak=False, show_io=None): + client = self.addClient(name, show_io=show_io) if capabilities is not None and 0 < len(capabilities): self.sendLine(client, 'CAP REQ :{}'.format(' '.join(capabilities))) m = self.getRegistrationMessage(client) @@ -353,7 +356,7 @@ class BaseServerTestCase(_IrcTestCase): self.sendLine(client, 'NICK {}'.format(nick)) self.sendLine(client, 'USER username * * :Realname') - self.skipToWelcome(client) + welcome = self.skipToWelcome(client) self.sendLine(client, 'PING foo') # Skip all that happy welcoming stuff @@ -368,6 +371,9 @@ class BaseServerTestCase(_IrcTestCase): else: (key, value) = (param, None) self.server_support[key] = value + welcome.append(m) + + return welcome def joinClient(self, client, channel): self.sendLine(client, 'JOIN {}'.format(channel))