irctest/irctest/cases.py

664 lines
23 KiB
Python
Raw Normal View History

2021-02-22 18:04:23 +00:00
import functools
2015-12-19 00:11:57 +00:00
import socket
2021-02-22 18:04:23 +00:00
import ssl
import tempfile
2021-02-22 18:04:23 +00:00
import time
2015-12-19 00:11:57 +00:00
import unittest
import pytest
2021-02-22 18:04:23 +00:00
from . import client_mock, runner
from .exceptions import ConnectionClosed
from .irc_utils import capabilities, message_parser
2020-10-21 15:08:14 +00:00
from .irc_utils.junkdrawer import normalizeWhitespace, random_name
2020-02-17 09:05:21 +00:00
from .irc_utils.sasl import sasl_plain_blob
2021-02-22 18:02:13 +00:00
from .numerics import (
ERR_BADCHANNELKEY,
ERR_BANNEDFROMCHAN,
2021-02-22 18:04:23 +00:00
ERR_INVITEONLYCHAN,
2021-02-22 18:02:13 +00:00
ERR_NEEDREGGEDNICK,
2021-02-22 18:04:23 +00:00
ERR_NOSUCHCHANNEL,
ERR_TOOMANYCHANNELS,
2021-02-22 18:02:13 +00:00
)
from .specifications import Capabilities, IsupportTokens, Specifications
2021-02-22 18:02:13 +00:00
CHANNEL_JOIN_FAIL_NUMERICS = frozenset(
[
ERR_NOSUCHCHANNEL,
ERR_TOOMANYCHANNELS,
ERR_BADCHANNELKEY,
ERR_INVITEONLYCHAN,
ERR_BANNEDFROMCHAN,
ERR_NEEDREGGEDNICK,
]
)
2021-02-18 04:27:48 +00:00
class ChannelJoinException(Exception):
def __init__(self, code, params):
2021-02-22 18:02:13 +00:00
super().__init__(f"Failed to join channel ({code}): {params}")
2021-02-18 04:27:48 +00:00
self.code = code
self.params = params
2021-02-22 18:02:13 +00:00
2015-12-19 00:11:57 +00:00
class _IrcTestCase(unittest.TestCase):
2015-12-20 12:47:30 +00:00
"""Base class for test cases."""
2021-02-22 18:02:13 +00:00
controllerClass = None # Will be set by __main__.py
2015-12-19 00:11:57 +00:00
@staticmethod
def config():
"""Some configuration to pass to the controllers.
For example, Oragono only enables its MySQL support if
config()["chathistory"]=True.
"""
return {}
def description(self):
method_doc = self._testMethodDoc
if not method_doc:
2021-02-22 18:02:13 +00:00
return ""
return "\t" + normalizeWhitespace(
method_doc, removeNewline=False
).strip().replace("\n ", "\n\t")
2015-12-20 00:48:56 +00:00
def setUp(self):
super().setUp()
self.controller = self.controllerClass(self.config())
self.inbuffer = []
2015-12-20 00:48:56 +00:00
if self.show_io:
2021-02-22 18:02:13 +00:00
print("---- new test ----")
def assertMessageEqual(self, msg, **kwargs):
"""Helper for partially comparing a message.
Takes the message as first arguments, and comparisons to be made
as keyword arguments.
Deals with subcommands (eg. `CAP`) if any of `subcommand`,
`subparams`, and `target` are given."""
error = self.messageDiffers(msg, **kwargs)
if error:
2021-02-27 13:14:08 +00:00
raise self.failureException(error)
def messageEqual(self, msg, **kwargs):
"""Boolean negation of `messageDiffers` (returns a boolean,
not an optional string)."""
return not self.messageDiffers(msg, **kwargs)
def messageDiffers(
2021-02-22 18:02:13 +00:00
self,
msg,
subcommand=None,
subparams=None,
target=None,
nick=None,
fail_msg=None,
extra_format=(),
**kwargs,
):
"""Returns an error message if the message doesn't match the given arguments,
or None if it matches."""
2015-12-19 23:47:06 +00:00
for (key, value) in kwargs.items():
if getattr(msg, key) != value:
fail_msg = (
fail_msg or "expected {param} to be {expects}, got {got}: {msg}"
)
return fail_msg.format(
*extra_format,
got=getattr(msg, key),
expects=value,
param=key,
msg=msg,
)
if nick:
got_nick = msg.prefix.split("!")[0]
if msg.prefix is None:
fail_msg = (
fail_msg or "expected nick to be {expects}, got {got} prefix: {msg}"
)
return fail_msg.format(
*extra_format, got=got_nick, expects=nick, param=key, msg=msg
)
2015-12-19 23:47:06 +00:00
if subcommand is not None or subparams is not None:
self.assertGreater(len(msg.params), 2, fail_msg)
if len(msg.params) <= 2:
fail_msg = (
fail_msg or "expected subcommand with params, got only {params}"
)
return fail_msg.format(
*extra_format,
got=msg.params,
expects=[subcommand] + subparams,
params=msg.params,
msg=msg,
)
2021-02-22 18:02:13 +00:00
# msg_target = msg.params[0]
2015-12-19 23:47:06 +00:00
msg_subcommand = msg.params[1]
msg_subparams = msg.params[2:]
if subcommand:
if msg_subcommand != subcommand:
fail_msg = (
fail_msg or "expected subcommand {expects}, got {got}: {msg}"
)
return fail_msg.format(
*extra_format, got=msg_subcommand, expects=subcommand, msg=msg
)
2015-12-19 23:47:06 +00:00
if subparams is not None:
if msg_subparams != subparams:
fail_msg = (
fail_msg or "expected subparams {expects}, got {got}: {msg}"
)
return fail_msg.format(
*extra_format, got=msg_subparams, expects=subparams, msg=msg
)
return None
def assertIn(self, item, list_, msg=None, fail_msg=None, extra_format=()):
if fail_msg:
2021-02-22 18:02:13 +00:00
fail_msg = fail_msg.format(*extra_format, item=item, list=list_, msg=msg)
super().assertIn(item, list_, fail_msg)
2021-02-22 18:02:13 +00:00
2015-12-22 21:33:23 +00:00
def assertNotIn(self, item, list_, msg=None, fail_msg=None, extra_format=()):
if fail_msg:
2021-02-22 18:02:13 +00:00
fail_msg = fail_msg.format(*extra_format, item=item, list=list_, msg=msg)
2015-12-22 21:33:23 +00:00
super().assertNotIn(item, list_, fail_msg)
2021-02-22 18:02:13 +00:00
def assertEqual(self, got, expects, msg=None, fail_msg=None, extra_format=()):
if fail_msg:
2021-02-22 18:02:13 +00:00
fail_msg = fail_msg.format(*extra_format, got=got, expects=expects, msg=msg)
super().assertEqual(got, expects, fail_msg)
2021-02-22 18:02:13 +00:00
def assertNotEqual(self, got, expects, msg=None, fail_msg=None, extra_format=()):
if fail_msg:
2021-02-22 18:02:13 +00:00
fail_msg = fail_msg.format(*extra_format, got=got, expects=expects, msg=msg)
super().assertNotEqual(got, expects, fail_msg)
def assertGreater(self, got, expects, msg=None, fail_msg=None, extra_format=()):
if fail_msg:
fail_msg = fail_msg.format(*extra_format, got=got, expects=expects, msg=msg)
super().assertGreater(got, expects, fail_msg)
def assertGreaterEqual(
self, got, expects, msg=None, fail_msg=None, extra_format=()
):
if fail_msg:
fail_msg = fail_msg.format(*extra_format, got=got, expects=expects, msg=msg)
super().assertGreaterEqual(got, expects, fail_msg)
def assertLess(self, got, expects, msg=None, fail_msg=None, extra_format=()):
if fail_msg:
fail_msg = fail_msg.format(*extra_format, got=got, expects=expects, msg=msg)
super().assertLess(got, expects, fail_msg)
def assertLessEqual(self, got, expects, msg=None, fail_msg=None, extra_format=()):
if fail_msg:
fail_msg = fail_msg.format(*extra_format, got=got, expects=expects, msg=msg)
super().assertLessEqual(got, expects, fail_msg)
2021-02-22 18:02:13 +00:00
class BaseClientTestCase(_IrcTestCase):
2015-12-19 22:09:06 +00:00
"""Basic class for client tests. Handles spawning a client and exchanging
messages with it."""
2021-02-22 18:02:13 +00:00
2015-12-19 16:52:38 +00:00
nick = None
user = None
2021-02-22 18:02:13 +00:00
2015-12-19 00:11:57 +00:00
def setUp(self):
2015-12-20 00:48:56 +00:00
super().setUp()
2015-12-20 14:11:56 +00:00
self.conn = None
2015-12-19 00:11:57 +00:00
self._setUpServer()
2021-02-22 18:02:13 +00:00
2015-12-19 00:11:57 +00:00
def tearDown(self):
2015-12-20 14:11:56 +00:00
if self.conn:
try:
2021-02-22 18:02:13 +00:00
self.conn.sendall(b"QUIT :end of test.")
except BrokenPipeError:
2021-02-22 18:02:13 +00:00
pass # client already disconnected
2019-12-08 20:26:21 +00:00
except OSError:
2021-02-22 18:02:13 +00:00
pass # the conn was already closed by the test, or something
self.controller.kill()
2015-12-20 14:11:56 +00:00
if self.conn:
self.conn_file.close()
self.conn.close()
2015-12-19 00:11:57 +00:00
self.server.close()
def _setUpServer(self):
"""Creates the server and make it listen."""
self.server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
2021-02-22 18:02:13 +00:00
self.server.bind(("", 0)) # Bind any free port
2015-12-19 00:11:57 +00:00
self.server.listen(1)
2021-02-22 18:02:13 +00:00
# Used to check if the client is alive from time to time
self.server.settimeout(1)
2019-12-08 20:26:21 +00:00
def acceptClient(self, tls_cert=None, tls_key=None, server=None):
2015-12-19 00:11:57 +00:00
"""Make the server accept a client connection. Blocking."""
2019-12-08 20:26:21 +00:00
server = server or self.server
# Wait for the client to connect
while True:
try:
(self.conn, addr) = server.accept()
except socket.timeout:
self.controller.check_is_alive()
else:
break
if tls_cert is None and tls_key is None:
pass
else:
2021-02-22 18:02:13 +00:00
assert (
tls_cert and tls_key
), "tls_cert must be provided if and only if tls_key is."
with tempfile.NamedTemporaryFile(
"at"
) as certfile, tempfile.NamedTemporaryFile("at") as keyfile:
certfile.write(tls_cert)
certfile.seek(0)
keyfile.write(tls_key)
keyfile.seek(0)
context = ssl.create_default_context(ssl.Purpose.CLIENT_AUTH)
context.load_cert_chain(certfile=certfile.name, keyfile=keyfile.name)
self.conn = context.wrap_socket(self.conn, server_side=True)
2021-02-22 18:02:13 +00:00
self.conn_file = self.conn.makefile(newline="\r\n", encoding="utf8")
2015-12-19 00:11:57 +00:00
def getLine(self):
line = self.conn_file.readline()
if self.show_io:
2021-02-22 18:02:13 +00:00
print("{:.3f} C: {}".format(time.time(), line.strip()))
return line
2021-02-22 18:02:13 +00:00
def getMessages(self, *args):
lines = self.getLines(*args)
return map(message_parser.parse_message, lines)
2021-02-22 18:02:13 +00:00
def getMessage(self, *args, filter_pred=None):
"""Gets a message and returns it. If a filter predicate is given,
fetches messages until the predicate returns a False on a message,
and returns this message."""
while True:
line = self.getLine(*args)
if not line:
raise ConnectionClosed()
msg = message_parser.parse_message(line)
if not filter_pred or filter_pred(msg):
return msg
2021-02-22 18:02:13 +00:00
def sendLine(self, line):
self.conn.sendall(line.encode())
2021-02-22 18:02:13 +00:00
if not line.endswith("\r\n"):
self.conn.sendall(b"\r\n")
2015-12-19 16:52:38 +00:00
if self.show_io:
2021-02-22 18:02:13 +00:00
print("{:.3f} S: {}".format(time.time(), line.strip()))
class ClientNegociationHelper:
"""Helper class for tests handling capabilities negociation."""
2021-02-22 18:02:13 +00:00
def readCapLs(self, auth=None, tls_config=None):
(hostname, port) = self.server.getsockname()
self.controller.run(
hostname=hostname, port=port, auth=auth, tls_config=tls_config
2021-02-22 18:02:13 +00:00
)
self.acceptClient()
m = self.getMessage()
2021-02-22 18:02:13 +00:00
self.assertEqual(m.command, "CAP", "First message is not CAP LS.")
if m.params == ["LS"]:
self.protocol_version = 301
2021-02-22 18:02:13 +00:00
elif m.params == ["LS", "302"]:
self.protocol_version = 302
2021-02-22 18:02:13 +00:00
elif m.params == ["END"]:
self.protocol_version = None
else:
2021-02-22 18:02:13 +00:00
raise AssertionError("Unknown CAP params: {}".format(m.params))
def userNickPredicate(self, msg):
"""Predicate to be used with getMessage to handle NICK/USER
transparently."""
2021-02-22 18:02:13 +00:00
if msg.command == "NICK":
self.assertEqual(len(msg.params), 1, msg)
self.nick = msg.params[0]
return False
2021-02-22 18:02:13 +00:00
elif msg.command == "USER":
self.assertEqual(len(msg.params), 4, msg)
2015-12-19 16:52:38 +00:00
self.user = msg.params
return False
else:
return True
2015-12-20 14:11:56 +00:00
def negotiateCapabilities(self, caps, cap_ls=True, auth=None):
2015-12-20 12:47:30 +00:00
"""Performes a complete capability negociation process, without
ending it, so the caller can continue the negociation."""
2015-12-19 16:52:38 +00:00
if cap_ls:
self.readCapLs(auth)
if not self.protocol_version:
# No negotiation.
return
2021-02-22 18:02:13 +00:00
self.sendLine("CAP * LS :{}".format(" ".join(caps)))
2015-12-20 14:11:56 +00:00
capability_names = frozenset(capabilities.cap_list_to_dict(caps))
2015-12-19 20:17:06 +00:00
self.acked_capabilities = set()
while True:
m = self.getMessage(filter_pred=self.userNickPredicate)
2021-02-22 18:02:13 +00:00
if m.command != "CAP":
2015-12-19 16:52:38 +00:00
return m
self.assertGreater(len(m.params), 0, m)
2021-02-22 18:02:13 +00:00
if m.params[0] == "REQ":
self.assertEqual(len(m.params), 2, m)
requested = frozenset(m.params[1].split())
2015-12-19 20:17:06 +00:00
if not requested.issubset(capability_names):
2021-02-22 18:02:13 +00:00
self.sendLine(
"CAP {} NAK :{}".format(self.nick or "*", m.params[1][0:100])
)
2015-12-19 16:52:38 +00:00
else:
2021-02-22 18:02:13 +00:00
self.sendLine(
"CAP {} ACK :{}".format(self.nick or "*", m.params[1])
)
2015-12-19 20:17:06 +00:00
self.acked_capabilities.update(requested)
else:
return m
2015-12-19 22:09:06 +00:00
class BaseServerTestCase(_IrcTestCase):
"""Basic class for server tests. Handles spawning a server and exchanging
messages with it."""
2021-02-22 18:02:13 +00:00
password = None
2015-12-25 14:45:06 +00:00
ssl = False
2015-12-22 21:33:23 +00:00
valid_metadata_keys = frozenset()
invalid_metadata_keys = frozenset()
2021-02-22 18:02:13 +00:00
2015-12-19 22:09:06 +00:00
def setUp(self):
2015-12-20 00:48:56 +00:00
super().setUp()
2015-12-25 21:47:11 +00:00
self.server_support = {}
2015-12-19 22:09:06 +00:00
self.find_hostname_and_port()
2021-02-22 18:02:13 +00:00
self.controller.run(
self.hostname,
self.port,
password=self.password,
valid_metadata_keys=self.valid_metadata_keys,
invalid_metadata_keys=self.invalid_metadata_keys,
ssl=self.ssl,
)
2015-12-19 22:09:06 +00:00
self.clients = {}
2021-02-22 18:02:13 +00:00
2015-12-19 22:09:06 +00:00
def tearDown(self):
self.controller.kill()
for client in list(self.clients):
self.removeClient(client)
2021-02-22 18:02:13 +00:00
2015-12-19 22:09:06 +00:00
def find_hostname_and_port(self):
"""Find available hostname/port to listen on."""
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
2021-02-22 18:02:13 +00:00
s.bind(("", 0))
2015-12-19 22:09:06 +00:00
(self.hostname, self.port) = s.getsockname()
s.close()
def addClient(self, name=None, show_io=None):
2015-12-19 22:09:06 +00:00
"""Connects a client to the server and adds it to the dict.
If 'name' is not given, uses the lowest unused non-negative integer."""
self.controller.wait_for_port()
2015-12-19 22:09:06 +00:00
if not name:
2021-02-22 18:02:13 +00:00
name = max(map(int, list(self.clients) + [0])) + 1
show_io = show_io if show_io is not None else self.show_io
2021-02-22 18:02:13 +00:00
self.clients[name] = client_mock.ClientMock(name=name, show_io=show_io)
self.clients[name].connect(self.hostname, self.port)
2015-12-20 12:12:54 +00:00
return name
2015-12-19 22:09:06 +00:00
def removeClient(self, name):
2015-12-20 12:47:30 +00:00
"""Disconnects the client, without QUIT."""
2015-12-19 22:09:06 +00:00
assert name in self.clients
self.clients[name].disconnect()
2015-12-19 22:09:06 +00:00
del self.clients[name]
def getMessages(self, client, **kwargs):
return self.clients[client].getMessages(**kwargs)
2021-02-22 18:02:13 +00:00
def getMessage(self, client, **kwargs):
return self.clients[client].getMessage(**kwargs)
2021-02-22 18:02:13 +00:00
def getRegistrationMessage(self, client):
"""Filter notices, do not send pings."""
2021-02-22 18:02:13 +00:00
return self.getMessage(
client, synchronize=False, filter_pred=lambda m: m.command != "NOTICE"
)
2015-12-19 22:09:06 +00:00
def sendLine(self, client, line):
return self.clients[client].sendLine(line)
2015-12-20 00:48:56 +00:00
2015-12-20 14:11:56 +00:00
def getCapLs(self, client, as_list=False):
2015-12-20 12:47:30 +00:00
"""Waits for a CAP LS block, parses all CAP LS messages, and return
2015-12-20 14:11:56 +00:00
the dict capabilities, with their values.
If as_list is given, returns the raw list (ie. key/value not split)
in case the order matters (but it shouldn't)."""
caps = []
2015-12-20 00:48:56 +00:00
while True:
m = self.getRegistrationMessage(client)
2021-02-22 18:02:13 +00:00
self.assertMessageEqual(m, command="CAP", subcommand="LS")
if m.params[2] == "*":
2015-12-20 14:11:56 +00:00
caps.extend(m.params[3].split())
2015-12-20 00:48:56 +00:00
else:
2015-12-20 14:11:56 +00:00
caps.extend(m.params[2].split())
if not as_list:
caps = capabilities.cap_list_to_dict(caps)
return caps
def assertDisconnected(self, client):
try:
2018-12-31 00:05:13 +00:00
self.getMessages(client)
self.getMessages(client)
except (socket.error, ConnectionClosed):
del self.clients[client]
return
else:
2021-02-22 18:02:13 +00:00
raise AssertionError("Client not disconnected.")
def skipToWelcome(self, client):
"""Skip to the point where we are registered
<https://tools.ietf.org/html/rfc2812#section-3.1>
"""
2018-12-28 18:42:47 +00:00
result = []
while True:
m = self.getMessage(client, synchronize=False)
2018-12-28 18:42:47 +00:00
result.append(m)
2021-02-22 18:02:13 +00:00
if m.command == "001":
2018-12-28 18:42:47 +00:00
return result
2021-02-22 18:02:13 +00:00
def connectClient(
self,
nick,
name=None,
capabilities=None,
skip_if_cap_nak=False,
show_io=None,
password=None,
ident="username",
):
2018-12-28 18:42:47 +00:00
client = self.addClient(name, show_io=show_io)
2017-11-01 23:33:43 +00:00
if capabilities is not None and 0 < len(capabilities):
2021-02-22 18:02:13 +00:00
self.sendLine(client, "CAP REQ :{}".format(" ".join(capabilities)))
m = self.getRegistrationMessage(client)
2015-12-29 11:54:09 +00:00
try:
2021-02-22 18:02:13 +00:00
self.assertMessageEqual(
m, command="CAP", fail_msg="Expected CAP ACK, got: {msg}"
)
self.assertEqual(
m.params[1], "ACK", m, fail_msg="Expected CAP ACK, got: {msg}"
)
2015-12-29 11:54:09 +00:00
except AssertionError:
if skip_if_cap_nak:
raise runner.CapabilityNotSupported(" or ".join(capabilities))
2015-12-29 11:54:09 +00:00
else:
raise
2021-02-22 18:02:13 +00:00
self.sendLine(client, "CAP END")
2020-03-11 10:51:23 +00:00
if password is not None:
2021-02-22 18:02:13 +00:00
self.sendLine(client, "AUTHENTICATE PLAIN")
2020-03-11 10:51:23 +00:00
self.sendLine(client, sasl_plain_blob(nick, password))
2021-02-22 18:02:13 +00:00
self.sendLine(client, "NICK {}".format(nick))
self.sendLine(client, "USER %s * * :Realname" % (ident,))
2018-12-28 18:42:47 +00:00
welcome = self.skipToWelcome(client)
2021-02-22 18:02:13 +00:00
self.sendLine(client, "PING foo")
# Skip all that happy welcoming stuff
while True:
m = self.getMessage(client)
2021-02-22 18:02:13 +00:00
if m.command == "PONG":
break
2021-02-22 18:02:13 +00:00
elif m.command == "005":
2015-12-25 21:47:11 +00:00
for param in m.params[1:-1]:
2021-02-22 18:02:13 +00:00
if "=" in param:
(key, value) = param.split("=")
2015-12-25 21:47:11 +00:00
else:
(key, value) = (param, None)
self.server_support[key] = value
2018-12-28 18:42:47 +00:00
welcome.append(m)
return welcome
def joinClient(self, client, channel):
2021-02-22 18:02:13 +00:00
self.sendLine(client, "JOIN {}".format(channel))
received = {m.command for m in self.getMessages(client)}
2021-02-22 18:02:13 +00:00
self.assertIn(
"366",
received,
fail_msg="Join to {} failed, {item} is not in the set of "
"received responses: {list}",
extra_format=(channel,),
)
def joinChannel(self, client, channel):
2021-02-22 18:02:13 +00:00
self.sendLine(client, "JOIN {}".format(channel))
# wait until we see them join the channel
joined = False
while not joined:
for msg in self.getMessages(client):
2021-02-22 18:02:13 +00:00
if (
msg.command == "JOIN"
and 0 < len(msg.params)
and msg.params[0].lower() == channel.lower()
):
joined = True
break
2021-02-18 04:27:48 +00:00
elif msg.command in CHANNEL_JOIN_FAIL_NUMERICS:
raise ChannelJoinException(msg.command, msg.params)
2020-10-21 15:08:14 +00:00
def getISupport(self):
2021-02-22 18:02:13 +00:00
cn = random_name("bar")
2020-10-21 15:08:14 +00:00
self.addClient(name=cn)
2021-02-22 18:02:13 +00:00
self.sendLine(cn, "NICK %s" % (cn,))
self.sendLine(cn, "USER u s e r")
2020-10-21 15:08:14 +00:00
messages = self.getMessages(cn)
isupport = {}
for message in messages:
2021-02-22 18:02:13 +00:00
if message.command != "005":
2020-10-21 15:08:14 +00:00
continue
# 005 nick <tokens...> :are supported by this server
tokens = message.params[1:-1]
for token in tokens:
2021-02-22 18:02:13 +00:00
name, _, value = token.partition("=")
2020-10-21 15:08:14 +00:00
isupport[name] = value
2021-02-22 18:02:13 +00:00
self.sendLine(cn, "QUIT")
2020-10-21 15:08:14 +00:00
self.assertDisconnected(cn)
return isupport
2021-02-22 18:02:13 +00:00
2015-12-20 14:11:56 +00:00
class OptionalityHelper:
def checkSaslSupport(self):
if self.controller.supported_sasl_mechanisms:
return
2021-02-22 18:02:13 +00:00
raise runner.NotImplementedByController("SASL")
2015-12-20 14:11:56 +00:00
def checkMechanismSupport(self, mechanism):
if mechanism in self.controller.supported_sasl_mechanisms:
return
raise runner.OptionalSaslMechanismNotSupported(mechanism)
2015-12-20 14:11:56 +00:00
def skipUnlessHasMechanism(mech):
def decorator(f):
@functools.wraps(f)
def newf(self):
self.checkMechanismSupport(mech)
return f(self)
2021-02-22 18:02:13 +00:00
2015-12-20 14:11:56 +00:00
return newf
2021-02-22 18:02:13 +00:00
2015-12-20 14:11:56 +00:00
return decorator
def skipUnlessHasSasl(f):
@functools.wraps(f)
def newf(self):
self.checkSaslSupport()
return f(self)
2021-02-22 18:02:13 +00:00
return newf
2019-12-08 20:26:21 +00:00
def checkCapabilitySupport(self, cap):
if cap in self.controller.supported_capabilities:
return
raise runner.CapabilityNotSupported(cap)
def skipUnlessSupportsCapability(cap):
def decorator(f):
@functools.wraps(f)
def newf(self):
self.checkCapabilitySupport(cap)
return f(self)
2021-02-22 18:02:13 +00:00
2019-12-08 20:26:21 +00:00
return newf
2021-02-22 18:02:13 +00:00
2019-12-08 20:26:21 +00:00
return decorator
def mark_specifications(*specifications, deprecated=False, strict=False):
specifications = frozenset(
Specifications.from_name(s) if isinstance(s, str) else s for s in specifications
)
if None in specifications:
raise ValueError("Invalid set of specifications: {}".format(specifications))
def decorator(f):
for specification in specifications:
f = getattr(pytest.mark, specification.value)(f)
if strict:
f = pytest.mark.strict(f)
if deprecated:
f = pytest.mark.deprecated(f)
return f
return decorator
def mark_capabilities(*capabilities, deprecated=False, strict=False):
capabilities = frozenset(
Capabilities.from_name(c) if isinstance(c, str) else c for c in capabilities
)
if None in capabilities:
raise ValueError("Invalid set of capabilities: {}".format(capabilities))
def decorator(f):
for capability in capabilities:
f = getattr(pytest.mark, capability.value)(f)
# Support for any capability implies IRCv3
f = pytest.mark.IRCv3(f)
return f
return decorator
def mark_isupport(*tokens, deprecated=False, strict=False):
tokens = frozenset(
IsupportTokens.from_name(c) if isinstance(c, str) else c for c in tokens
)
if None in tokens:
raise ValueError("Invalid set of isupport tokens: {}".format(tokens))
def decorator(f):
for token in tokens:
f = getattr(pytest.mark, token.value)(f)
return f
return decorator