From 88d0a3a79f8926a8809b8840c1ee433f264d363f Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Fri, 12 Jun 2020 19:29:08 +0200 Subject: [PATCH] NickAuth: Add WHOX test. --- plugins/NickAuth/test.py | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/plugins/NickAuth/test.py b/plugins/NickAuth/test.py index 0ee05f337..fb1e06c8e 100644 --- a/plugins/NickAuth/test.py +++ b/plugins/NickAuth/test.py @@ -29,6 +29,7 @@ ### import supybot.ircdb as ircdb +import supybot.ircutils as ircutils from supybot.test import * class NickAuthTestCase(PluginTestCase): @@ -79,7 +80,7 @@ class NickAuthTestCase(PluginTestCase): def testNoAuth(self): self._procedure(False) - def testJoin(self): + def testUserJoin(self): self.irc.feedMsg(ircmsgs.IrcMsg('CAP * NEW extended-join')) m = self.irc.takeMsg() self.assertEqual(m.command, 'CAP') @@ -106,6 +107,25 @@ class NickAuthTestCase(PluginTestCase): self.assertResponse('ping', 'pong') self.assertResponse('whoami', 'foobar', frm=self.prefix1) + def testBotJoin(self): + channel = '#test' + self.irc.feedMsg(ircmsgs.join(channel, prefix=self.prefix)) + self.assertEqual(self.irc.takeMsg().command, 'MODE') + self.assertEqual(self.irc.takeMsg().command, 'MODE') + self.assertEqual(self.irc.takeMsg().command, 'WHO') + self.assertEqual(self.irc.takeMsg(), None) + + self._register() + self.assertRegexp( + 'whoami', "I don't recognize you", frm=self.prefix1) + (nick, ident, host) = ircutils.splitHostmask(self.prefix1) + self.irc.feedMsg(ircmsgs.IrcMsg( + ':card.freenode.net 354 pgjrgrg 1 %(ident)s 255.255.255.255 ' + '%(host)s %(nick)s H baz :gecos' + % dict(nick=nick, ident=ident, host=host))) + self.assertResponse('ping', 'pong') + self.assertResponse('whoami', 'foobar', frm=self.prefix1) + def testList(self): self.assertNotError('register foobar 123') self.assertRegexp('nick list', 'You have no recognized nick')