mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
81 lines
2.7 KiB
Python
81 lines
2.7 KiB
Python
"""
|
|
The WALLOPS command (`RFC 2812
|
|
<https://datatracker.ietf.org/doc/html/rfc2812#section-3.7>`__,
|
|
`Modern <https://modern.ircdocs.horse/#wallops-message>`__)
|
|
"""
|
|
|
|
from irctest import cases, runner
|
|
from irctest.numerics import ERR_NOPRIVILEGES, ERR_UNKNOWNCOMMAND, RPL_YOUREOPER
|
|
from irctest.patma import ANYSTR, StrRe
|
|
|
|
|
|
class WallopsTestCase(cases.BaseServerTestCase):
|
|
@cases.mark_specifications("RFC2812", "Modern")
|
|
def testWallops(self):
|
|
"""
|
|
"The WALLOPS command is used to send a message to all currently connected
|
|
users who have set the 'w' user mode for themselves."
|
|
-- https://datatracker.ietf.org/doc/html/rfc2812#section-4.7
|
|
-- https://github.com/ircdocs/modern-irc/pull/118
|
|
|
|
"Servers MAY echo WALLOPS messages to their sender even if they don't have
|
|
the 'w' user mode.
|
|
Servers MAY send WALLOPS only to operators."
|
|
-- https://github.com/ircdocs/modern-irc/pull/118
|
|
|
|
"""
|
|
self.connectClient("nick1")
|
|
self.connectClient("nick2")
|
|
self.connectClient("nick3")
|
|
|
|
self.sendLine(2, "MODE nick2 -w")
|
|
self.getMessages(2)
|
|
self.sendLine(3, "MODE nick3 +w")
|
|
self.getMessages(3)
|
|
|
|
self.sendLine(1, "OPER operuser operpassword")
|
|
self.assertIn(
|
|
RPL_YOUREOPER,
|
|
[m.command for m in self.getMessages(1)],
|
|
fail_msg="OPER failed",
|
|
)
|
|
|
|
self.sendLine(1, "WALLOPS :hi everyone")
|
|
|
|
messages = self.getMessages(1)
|
|
if ERR_UNKNOWNCOMMAND in (message.command for message in messages):
|
|
raise runner.NotImplementedByController("WALLOPS")
|
|
for message in messages:
|
|
self.assertMessageMatch(
|
|
message,
|
|
prefix=StrRe("nick1!.*"),
|
|
command="WALLOPS",
|
|
params=[StrRe(".*hi everyone")],
|
|
)
|
|
|
|
messages = self.getMessages(3)
|
|
if messages:
|
|
self.assertMessageMatch(
|
|
messages[0],
|
|
prefix=StrRe("nick1!.*"),
|
|
command="WALLOPS",
|
|
params=[StrRe(".*hi everyone")],
|
|
)
|
|
self.assertEqual(
|
|
self.getMessages(2), [], fail_msg="Server sent WALLOPS to user without +w"
|
|
)
|
|
|
|
@cases.mark_specifications("Modern")
|
|
def testWallopsPrivileges(self):
|
|
"""
|
|
https://github.com/ircdocs/modern-irc/pull/118
|
|
"""
|
|
self.connectClient("nick1")
|
|
self.sendLine(1, "WALLOPS :hi everyone")
|
|
message = self.getMessage(1)
|
|
if message.command == ERR_UNKNOWNCOMMAND:
|
|
raise runner.NotImplementedByController("WALLOPS")
|
|
self.assertMessageMatch(
|
|
message, command=ERR_NOPRIVILEGES, params=["nick1", ANYSTR]
|
|
)
|