From 481c6a03b219a55f1ab4417d49602c176d031ecf Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Sun, 22 Apr 2018 16:48:44 -0400 Subject: [PATCH] add a test for MODE +i and RPL_WHOISCHANNELS --- irctest/server_tests/test_user_commands.py | 60 ++++++++++++++++++++++ irctest/specifications.py | 1 + 2 files changed, 61 insertions(+) create mode 100644 irctest/server_tests/test_user_commands.py diff --git a/irctest/server_tests/test_user_commands.py b/irctest/server_tests/test_user_commands.py new file mode 100644 index 0000000..1a8199c --- /dev/null +++ b/irctest/server_tests/test_user_commands.py @@ -0,0 +1,60 @@ +""" +User commands as specified in Section 3.6 of RFC 2812: + +""" + +from irctest import cases + +RPL_WHOISCHANNELS = '319' + +class InvisibleTestCase(cases.BaseServerTestCase): + + @cases.SpecificationSelector.requiredBySpecification('Oragono') + def testInvisibleWhois(self): + """Test interaction between MODE +i and RPL_WHOISCHANNELS.""" + self.connectClient('userOne') + self.sendLine(1, 'JOIN #xyz') + + self.connectClient('userTwo') + self.getMessages(2) + self.sendLine(2, 'WHOIS userOne') + commands = {m.command for m in self.getMessages(2)} + self.assertIn(RPL_WHOISCHANNELS, commands, + 'RPL_WHOISCHANNELS should be sent for a non-invisible nick') + + self.getMessages(1) + self.sendLine(1, 'MODE userOne +i') + message = self.getMessage(1) + self.assertEqual(message.command, 'MODE', + 'Expected MODE reply, but received {}'.format(message.command)) + self.assertEqual(message.params, ['userOne', '+i'], + 'Expected user set +i, but received {}'.format(message.params)) + + self.getMessages(2) + self.sendLine(2, 'WHOIS userOne') + commands = {m.command for m in self.getMessages(2)} + self.assertNotIn(RPL_WHOISCHANNELS, commands, + 'RPL_WHOISCHANNELS should not be sent for an invisible nick' + 'unless the user is also a member of the channel') + + self.sendLine(2, 'JOIN #xyz') + self.sendLine(2, 'WHOIS userOne') + commands = {m.command for m in self.getMessages(2)} + self.assertIn(RPL_WHOISCHANNELS, commands, + 'RPL_WHOISCHANNELS should be sent for an invisible nick' + 'if the user is also a member of the channel') + + self.sendLine(2, 'PART #xyz') + self.getMessages(2) + self.getMessages(1) + self.sendLine(1, 'MODE userOne -i') + message = self.getMessage(1) + self.assertEqual(message.command, 'MODE', + 'Expected MODE reply, but received {}'.format(message.command)) + self.assertEqual(message.params, ['userOne', '-i'], + 'Expected user set -i, but received {}'.format(message.params)) + + self.sendLine(2, 'WHOIS userOne') + commands = {m.command for m in self.getMessages(2)} + self.assertIn(RPL_WHOISCHANNELS, commands, + 'RPL_WHOISCHANNELS should be sent for a non-invisible nick') diff --git a/irctest/specifications.py b/irctest/specifications.py index 939ee8a..df06bcb 100644 --- a/irctest/specifications.py +++ b/irctest/specifications.py @@ -8,6 +8,7 @@ class Specifications(enum.Enum): IRC301 = 'IRCv3.1' IRC302 = 'IRCv3.2' IRC302Deprecated = 'IRCv3.2-deprecated' + Oragono = 'Oragono' @classmethod def of_name(cls, name):