mirror of
https://github.com/progval/irctest.git
synced 2025-04-04 22:39:50 +00:00
144 lines
4.8 KiB
Python
144 lines
4.8 KiB
Python
from irctest import cases, runner
|
|
from irctest.numerics import ERR_UNKNOWNCOMMAND, RPL_ENDOFLINKS, RPL_LINKS
|
|
from irctest.patma import ANYSTR, StrRe
|
|
|
|
|
|
def _server_info_regexp(case: cases.BaseServerTestCase) -> str:
|
|
if case.controller.software_name == "Sable":
|
|
return ".+"
|
|
else:
|
|
return "test server"
|
|
|
|
|
|
class LinksTestCase(cases.BaseServerTestCase):
|
|
@cases.mark_specifications("RFC1459", "RFC2812", "Modern")
|
|
def testLinksSingleServer(self):
|
|
"""
|
|
Only testing the parameter-less case.
|
|
|
|
https://datatracker.ietf.org/doc/html/rfc1459#section-4.3.3
|
|
https://datatracker.ietf.org/doc/html/rfc2812#section-3.4.5
|
|
https://github.com/ircdocs/modern-irc/pull/175
|
|
|
|
"
|
|
364 RPL_LINKS
|
|
"<mask> <server> :<hopcount> <server info>"
|
|
365 RPL_ENDOFLINKS
|
|
"<mask> :End of /LINKS list"
|
|
|
|
- In replying to the LINKS message, a server must send
|
|
replies back using the RPL_LINKS numeric and mark the
|
|
end of the list using an RPL_ENDOFLINKS reply.
|
|
"
|
|
-- https://datatracker.ietf.org/doc/html/rfc1459#page-51
|
|
-- https://datatracker.ietf.org/doc/html/rfc2812#page-48
|
|
|
|
RPL_LINKS: "<client> * <server> :<hopcount> <server info>"
|
|
RPL_ENDOFLINKS: "<client> * :End of /LINKS list"
|
|
-- https://github.com/ircdocs/modern-irc/pull/175/files
|
|
"""
|
|
self.connectClient("nick")
|
|
self.sendLine(1, "LINKS")
|
|
messages = self.getMessages(1)
|
|
if messages[0].command == ERR_UNKNOWNCOMMAND:
|
|
raise runner.OptionalCommandNotSupported("LINKS")
|
|
|
|
# Ignore '/LINKS has been disabled' from ircu2
|
|
messages = [m for m in messages if m.command != "NOTICE"]
|
|
|
|
self.assertMessageMatch(
|
|
messages.pop(-1),
|
|
command=RPL_ENDOFLINKS,
|
|
params=["nick", "*", ANYSTR],
|
|
)
|
|
|
|
if not messages:
|
|
# This server probably redacts links
|
|
return
|
|
|
|
self.assertMessageMatch(
|
|
messages[0],
|
|
command=RPL_LINKS,
|
|
params=[
|
|
"nick",
|
|
"My.Little.Server",
|
|
"My.Little.Server",
|
|
StrRe(f"0 (0042 )?{_server_info_regexp(self)}"),
|
|
],
|
|
)
|
|
|
|
|
|
@cases.mark_services
|
|
class ServicesLinksTestCase(cases.BaseServerTestCase):
|
|
# On every IRCd but Ergo, services are linked.
|
|
# Ergo does not implement LINKS at all, so this test is skipped.
|
|
@cases.mark_specifications("RFC1459", "RFC2812", "Modern")
|
|
def testLinksWithServices(self):
|
|
"""
|
|
Only testing the parameter-less case.
|
|
|
|
https://datatracker.ietf.org/doc/html/rfc1459#section-4.3.3
|
|
https://datatracker.ietf.org/doc/html/rfc2812#section-3.4.5
|
|
|
|
"
|
|
364 RPL_LINKS
|
|
"<mask> <server> :<hopcount> <server info>"
|
|
365 RPL_ENDOFLINKS
|
|
"<mask> :End of /LINKS list"
|
|
|
|
- In replying to the LINKS message, a server must send
|
|
replies back using the RPL_LINKS numeric and mark the
|
|
end of the list using an RPL_ENDOFLINKS reply.
|
|
"
|
|
-- https://datatracker.ietf.org/doc/html/rfc1459#page-51
|
|
-- https://datatracker.ietf.org/doc/html/rfc2812#page-48
|
|
|
|
RPL_LINKS: "<client> * <server> :<hopcount> <server info>"
|
|
RPL_ENDOFLINKS: "<client> * :End of /LINKS list"
|
|
-- https://github.com/ircdocs/modern-irc/pull/175/files
|
|
"""
|
|
self.connectClient("nick")
|
|
self.sendLine(1, "LINKS")
|
|
messages = self.getMessages(1)
|
|
|
|
if messages[0].command == ERR_UNKNOWNCOMMAND:
|
|
raise runner.OptionalCommandNotSupported("LINKS")
|
|
|
|
# Ignore '/LINKS has been disabled' from ircu2
|
|
messages = [m for m in messages if m.command != "NOTICE"]
|
|
|
|
self.assertMessageMatch(
|
|
messages.pop(-1),
|
|
command=RPL_ENDOFLINKS,
|
|
params=["nick", "*", ANYSTR],
|
|
)
|
|
|
|
if not messages:
|
|
# This server redacts links
|
|
return
|
|
|
|
messages.sort(key=lambda m: m.params[-1])
|
|
|
|
self.assertMessageMatch(
|
|
messages.pop(0),
|
|
command=RPL_LINKS,
|
|
params=[
|
|
"nick",
|
|
"My.Little.Server",
|
|
"My.Little.Server",
|
|
StrRe(f"0 (0042 )?{_server_info_regexp(self)}"),
|
|
],
|
|
)
|
|
self.assertMessageMatch(
|
|
messages.pop(0),
|
|
command=RPL_LINKS,
|
|
params=[
|
|
"nick",
|
|
"My.Little.Services",
|
|
"My.Little.Server",
|
|
StrRe("1 .+"), # SID instead of description for Anope...
|
|
],
|
|
)
|
|
|
|
self.assertEqual(messages, [])
|