diff --git a/irctest/controllers/oragono.py b/irctest/controllers/oragono.py index 38f4fe2..38b82d4 100644 --- a/irctest/controllers/oragono.py +++ b/irctest/controllers/oragono.py @@ -209,11 +209,12 @@ class OragonoController(BaseServerController, DirectoryBasedController): config.update(LOGGING_CONFIG) return config - def addMysqlToConfig(self): + def addMysqlToConfig(self, config=None): mysql_password = os.getenv('MYSQL_PASSWORD') if not mysql_password: return None - config = self.baseConfig() + if config is None: + config = self.baseConfig() config['datastore']['mysql'] = { "enabled": True, "host": "localhost", diff --git a/irctest/server_tests/test_roleplay.py b/irctest/server_tests/test_roleplay.py new file mode 100644 index 0000000..552f6ea --- /dev/null +++ b/irctest/server_tests/test_roleplay.py @@ -0,0 +1,55 @@ +from irctest import cases +from irctest.numerics import ERR_CANNOTSENDRP +from irctest.irc_utils.random import random_name + +class RoleplayTestCase(cases.BaseServerTestCase): + + def customizedConfig(self): + config = self.controller.baseConfig() + config['roleplay'] = { + 'enabled': True, + } + return self.controller.addMysqlToConfig(config) + + @cases.SpecificationSelector.requiredBySpecification('Oragono') + def testRoleplay(self): + bar = random_name('bar') + qux = random_name('qux') + chan = random_name('#chan') + self.connectClient(bar, name=bar, capabilities=['batch', 'labeled-response', 'message-tags', 'server-time']) + self.connectClient(qux, name=qux, capabilities=['batch', 'labeled-response', 'message-tags', 'server-time']) + self.joinChannel(bar, chan) + self.joinChannel(qux, chan) + self.getMessages(bar) + + # roleplay should be forbidden because we aren't +E yet + self.sendLine(bar, 'NPC %s bilbo too much bread' % (chan,)) + reply = self.getMessages(bar)[0] + self.assertEqual(reply.command, ERR_CANNOTSENDRP) + + self.sendLine(bar, 'MODE %s +E' % (chan,)) + reply = self.getMessages(bar)[0] + self.assertEqual(reply.command, 'MODE') + self.assertMessageEqual(reply, command='MODE', params=[chan, '+E']) + self.getMessages(qux) + + self.sendLine(bar, 'NPC %s bilbo too much bread' % (chan,)) + reply = self.getMessages(bar)[0] + self.assertEqual(reply.command, 'PRIVMSG') + self.assertEqual(reply.params[0], chan) + self.assertTrue(reply.prefix.startswith('*bilbo*!')) + self.assertIn('too much bread', reply.params[1]) + + reply = self.getMessages(qux)[0] + self.assertEqual(reply.command, 'PRIVMSG') + self.assertEqual(reply.params[0], chan) + self.assertTrue(reply.prefix.startswith('*bilbo*!')) + self.assertIn('too much bread', reply.params[1]) + + # test history storage + self.sendLine(qux, 'CHATHISTORY LATEST %s * 10' % (chan,)) + reply = [msg for msg in self.getMessages(qux) if msg.command == 'PRIVMSG' and 'bilbo' in msg.prefix][0] + self.assertEqual(reply.command, 'PRIVMSG') + self.assertEqual(reply.params[0], chan) + self.assertTrue(reply.prefix.startswith('*bilbo*!')) + self.assertIn('too much bread', reply.params[1])