From 79f29a768a0a4700439436b42438f630e5ca7dbd Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Tue, 23 Apr 2019 00:53:58 -0400 Subject: [PATCH] isupport test --- irctest/server_tests/test_statusmsg.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 irctest/server_tests/test_statusmsg.py diff --git a/irctest/server_tests/test_statusmsg.py b/irctest/server_tests/test_statusmsg.py new file mode 100644 index 0000000..64181e6 --- /dev/null +++ b/irctest/server_tests/test_statusmsg.py @@ -0,0 +1,18 @@ +from irctest import cases +from irctest.numerics import RPL_ISUPPORT + +class StatusmsgTestCase(cases.BaseServerTestCase): + + @cases.SpecificationSelector.requiredBySpecification('Oragono') + def testInIsupport(self): + """Check that the expected STATUSMSG parameter appears in our isupport list.""" + self.addClient() + self.sendLine(1, 'USER foo foo foo :foo') + self.sendLine(1, 'NICK bar') + self.skipToWelcome(1) + messages = self.getMessages(1) + isupport = set() + for message in messages: + if message.command == RPL_ISUPPORT: + isupport.update(message.params) + self.assertIn('STATUSMSG=~&@%+', isupport)