mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
statusmsg: Make tests non Oragono-specific.
This commit is contained in:
@ -1,4 +1,4 @@
|
|||||||
from irctest import cases
|
from irctest import cases, runner
|
||||||
from irctest.numerics import RPL_NAMREPLY
|
from irctest.numerics import RPL_NAMREPLY
|
||||||
|
|
||||||
|
|
||||||
@ -9,13 +9,68 @@ class StatusmsgTestCase(cases.BaseServerTestCase):
|
|||||||
self.connectClient("foo") # detects ISUPPORT
|
self.connectClient("foo") # detects ISUPPORT
|
||||||
self.assertEqual(self.server_support["STATUSMSG"], "~&@%+")
|
self.assertEqual(self.server_support["STATUSMSG"], "~&@%+")
|
||||||
|
|
||||||
@cases.mark_specifications("Oragono")
|
@cases.mark_isupport("STATUSMSG")
|
||||||
def testStatusmsg(self):
|
def testStatusmsgFromOp(self):
|
||||||
"""Test that STATUSMSG are sent to the intended recipients,
|
"""Test that STATUSMSG are sent to the intended recipients,
|
||||||
with the intended prefixes."""
|
with the intended prefixes."""
|
||||||
self.connectClient("chanop")
|
self.connectClient("chanop")
|
||||||
self.joinChannel(1, "#chan")
|
self.joinChannel(1, "#chan")
|
||||||
self.getMessages(1)
|
self.getMessages(1)
|
||||||
|
|
||||||
|
if "@" not in self.server_support.get("STATUSMSG", ""):
|
||||||
|
raise runner.IsupportTokenNotSupported("STATUSMSG")
|
||||||
|
|
||||||
|
self.connectClient("joe")
|
||||||
|
self.joinChannel(2, "#chan")
|
||||||
|
self.getMessages(2)
|
||||||
|
|
||||||
|
self.connectClient("schmoe")
|
||||||
|
self.sendLine(3, "join #chan")
|
||||||
|
|
||||||
|
self.sendLine(1, "MODE #chan +o schmoe")
|
||||||
|
self.getMessages(1)
|
||||||
|
|
||||||
|
messages = self.getMessages(3)
|
||||||
|
names = set()
|
||||||
|
for message in messages:
|
||||||
|
if message.command == RPL_NAMREPLY:
|
||||||
|
names.update(set(message.params[-1].split()))
|
||||||
|
# chanop should be opped
|
||||||
|
self.assertEqual(
|
||||||
|
names, {"@chanop", "joe", "schmoe"}, f"unexpected names: {names}"
|
||||||
|
)
|
||||||
|
|
||||||
|
self.getMessages(3)
|
||||||
|
self.sendLine(3, "privmsg @#chan :this message is for operators")
|
||||||
|
self.assertEqual(
|
||||||
|
self.getMessages(3),
|
||||||
|
[],
|
||||||
|
fail_msg="PRIVMSG @#chan from channel op was refused",
|
||||||
|
)
|
||||||
|
|
||||||
|
# check the operator's messages
|
||||||
|
statusMsg = self.getMessage(1, filter_pred=lambda m: m.command == "PRIVMSG")
|
||||||
|
self.assertMessageEqual(
|
||||||
|
statusMsg, params=["@#chan", "this message is for operators"]
|
||||||
|
)
|
||||||
|
|
||||||
|
# check the non-operator's messages
|
||||||
|
unprivilegedMessages = [
|
||||||
|
msg for msg in self.getMessages(2) if msg.command == "PRIVMSG"
|
||||||
|
]
|
||||||
|
self.assertEqual(len(unprivilegedMessages), 0)
|
||||||
|
|
||||||
|
@cases.mark_isupport("STATUSMSG")
|
||||||
|
def testStatusmsgFromRegular(self):
|
||||||
|
"""Test that STATUSMSG are sent to the intended recipients,
|
||||||
|
with the intended prefixes."""
|
||||||
|
self.connectClient("chanop")
|
||||||
|
self.joinChannel(1, "#chan")
|
||||||
|
self.getMessages(1)
|
||||||
|
|
||||||
|
if "@" not in self.server_support.get("STATUSMSG", ""):
|
||||||
|
raise runner.IsupportTokenNotSupported("STATUSMSG")
|
||||||
|
|
||||||
self.connectClient("joe")
|
self.connectClient("joe")
|
||||||
self.joinChannel(2, "#chan")
|
self.joinChannel(2, "#chan")
|
||||||
self.getMessages(2)
|
self.getMessages(2)
|
||||||
@ -32,8 +87,12 @@ class StatusmsgTestCase(cases.BaseServerTestCase):
|
|||||||
names, {"@chanop", "joe", "schmoe"}, f"unexpected names: {names}"
|
names, {"@chanop", "joe", "schmoe"}, f"unexpected names: {names}"
|
||||||
)
|
)
|
||||||
|
|
||||||
self.sendLine(3, "privmsg @#chan :this message is for operators")
|
|
||||||
self.getMessages(3)
|
self.getMessages(3)
|
||||||
|
self.sendLine(3, "privmsg @#chan :this message is for operators")
|
||||||
|
if self.getMessages(3) != []:
|
||||||
|
raise runner.ImplementationChoice(
|
||||||
|
"Regular users can not send PRIVMSG @#chan"
|
||||||
|
)
|
||||||
|
|
||||||
# check the operator's messages
|
# check the operator's messages
|
||||||
statusMsg = self.getMessage(1, filter_pred=lambda m: m.command == "PRIVMSG")
|
statusMsg = self.getMessage(1, filter_pred=lambda m: m.command == "PRIVMSG")
|
||||||
|
@ -46,6 +46,7 @@ class Capabilities(enum.Enum):
|
|||||||
@enum.unique
|
@enum.unique
|
||||||
class IsupportTokens(enum.Enum):
|
class IsupportTokens(enum.Enum):
|
||||||
MONITOR = "MONITOR"
|
MONITOR = "MONITOR"
|
||||||
|
STATUSMSG = "STATUSMSG"
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def from_name(cls, name):
|
def from_name(cls, name):
|
||||||
|
@ -25,3 +25,4 @@ markers =
|
|||||||
|
|
||||||
# isupport tokens
|
# isupport tokens
|
||||||
MONITOR
|
MONITOR
|
||||||
|
STATUSMSG
|
||||||
|
Reference in New Issue
Block a user