diff --git a/irctest/controllers/inspircd.py b/irctest/controllers/inspircd.py index db458f8..0432eb6 100644 --- a/irctest/controllers/inspircd.py +++ b/irctest/controllers/inspircd.py @@ -21,6 +21,7 @@ TEMPLATE_CONFIG = """ + # for testing mute extbans # For multi-prefix """ + self.connectClient("chanop", name="chanop") + + isupport = self.server_support + token = isupport.get("EXTBAN", "") + prefix, comma, types = token.partition(",") + if "m" not in types: + raise runner.ExtbanNotSupported("m", "mute") + if "e" not in self.server_support["CHANMODES"]: + raise runner.ChannelModeNotSupported("m", "mute") + + clients = ("chanop", "qux") + + # Mute "qux" + self.joinChannel("chanop", "#chan") self.getMessages("chanop") + self.sendLine("chanop", "MODE #chan +b m:qux!*@*") + replies = {msg.command for msg in self.getMessages("chanop")} + self.assertIn("MODE", replies) + self.assertNotIn(ERR_CHANOPRIVSNEEDED, replies) + + self.connectClient( + "qux", name="qux", ident="evan", capabilities=["echo-message"] + ) + self.joinChannel("qux", "#chan") + + for client in clients: + self.getMessages(client) + + # "qux" talks: rejected + self.sendLine("qux", "PRIVMSG #chan :hi from qux") + replies = self.getMessages("qux") + replies_cmds = {msg.command for msg in replies} + self.assertNotIn("PRIVMSG", replies_cmds) + self.assertIn(ERR_CANNOTSENDTOCHAN, replies_cmds) + self.assertEqual(self.getMessages("chanop"), []) + + for client in clients: + self.getMessages(client) # +e grants an exemption to +b + self.sendLine("chanop", "MODE #chan +e m:*!~evan@*") + replies = {msg.command for msg in self.getMessages("chanop")} + self.assertIn("MODE", replies) + self.assertNotIn(ERR_CHANOPRIVSNEEDED, replies) + + # so "qux" can now talk self.sendLine("qux", "PRIVMSG #chan :thanks for mute-excepting me") replies = self.getMessages("qux") replies_cmds = {msg.command for msg in replies} @@ -1266,12 +1371,17 @@ class MuteExtban(cases.BaseServerTestCase): ) @cases.mark_specifications("Oragono") - def testIssue1370(self): - # regression test for oragono #1370: mutes not correctly enforced against - # users with capital letters in their NUH + def testCapitalization(self): + """ + Regression test for oragono #1370: mutes not correctly enforced against + users with capital letters in their NUH + + For consistency with regular -b, which allows unsetting up to + normalization + """ clients = ("chanop", "bar") - self.connectClient("chanop", name="chanop", capabilities=MODERN_CAPS) + self.connectClient("chanop", name="chanop") self.joinChannel("chanop", "#chan") self.getMessages("chanop") self.sendLine("chanop", "MODE #chan +b m:BAR!*@*") @@ -1279,7 +1389,7 @@ class MuteExtban(cases.BaseServerTestCase): self.assertIn("MODE", replies) self.assertNotIn(ERR_CHANOPRIVSNEEDED, replies) - self.connectClient("Bar", name="bar", capabilities=MODERN_CAPS) + self.connectClient("Bar", name="bar", capabilities=["echo-message"]) self.joinChannel("bar", "#chan") for client in clients: @@ -1294,7 +1404,11 @@ class MuteExtban(cases.BaseServerTestCase): # remove mute with -b self.sendLine("chanop", "MODE #chan -b m:bar!*@*") - self.getMessages("chanop") + replies = {msg.command for msg in self.getMessages("chanop")} + self.assertIn("MODE", replies) + self.assertNotIn(ERR_CHANOPRIVSNEEDED, replies) + + # "bar" can talk again self.sendLine("bar", "PRIVMSG #chan :hi again from bar") replies = self.getMessages("bar") replies_cmds = {msg.command for msg in replies}