add a test for MODE +i and RPL_WHOISCHANNELS

This commit is contained in:
Shivaram Lingamneni
2018-04-22 16:48:44 -04:00
parent 9824bb2296
commit 481c6a03b2
2 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,60 @@
"""
User commands as specified in Section 3.6 of RFC 2812:
<https://tools.ietf.org/html/rfc2812#section-3.6>
"""
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')

View File

@ -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):