mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
* [WIP] Add support for Sable * tweak sable controller * echo_message: Add missing synchronization for Sable * update sable * whois: Simplify test * WHO: Remove test for oper flag from testWhoChan So it won't fail on Sable, which hides oper status * WHO: Skip/xfail tests for Sable as needed * Skip NakWhole when multi-prefix is not supported * [WIP] Run Sable on CI * working-directory is not setable on actions * this isn't ergo * this really isn't ergo * minimize rust install and cache cargo deps * Need to specify packages to install... * Phony target * Give up on 'cargo install', it seems to ignore the cache * try again to cache the target dir * This isn't Solanum * Comment out BaseServicesController * Parallelize Sable tests * target is relative... * sigh * Fix prefix * Re-add the other software * chathistory: Test TOPIC is not sent unless event-playable is enabled * sable: Dynamically generate certificates This allows using custom server/services names * sable: Enable services * sable: Add support for account registration Sable doesn't support REGISTER via NickServ * sable: Lower log verbosity * Fix lint * Re-add Sable to CI * Fix/skip tests on Sable * Kill sable_services' subprocesses * Bump Sable to include the labeled-response fix * Bump Sable to the channel-rename downgrade fix
47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
import datetime
|
|
import re
|
|
import secrets
|
|
import socket
|
|
from typing import Dict, Tuple
|
|
|
|
# thanks jess!
|
|
IRCV3_FORMAT_STRFTIME = "%Y-%m-%dT%H:%M:%S.%f%z"
|
|
|
|
|
|
def ircv3_timestamp_to_unixtime(timestamp: str) -> float:
|
|
return datetime.datetime.strptime(timestamp, IRCV3_FORMAT_STRFTIME).timestamp()
|
|
|
|
|
|
def random_name(base: str) -> str:
|
|
return base + "-" + secrets.token_hex(5)
|
|
|
|
|
|
def find_hostname_and_port() -> Tuple[str, int]:
|
|
"""Find available hostname/port to listen on."""
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
s.bind(("", 0))
|
|
(hostname, port) = s.getsockname()
|
|
s.close()
|
|
return (hostname, port)
|
|
|
|
|
|
"""
|
|
Stolen from supybot:
|
|
"""
|
|
|
|
|
|
class MultipleReplacer:
|
|
"""Return a callable that replaces all dict keys by the associated
|
|
value. More efficient than multiple .replace()."""
|
|
|
|
# We use an object instead of a lambda function because it avoids the
|
|
# need for using the staticmethod() on the lambda function if assigning
|
|
# it to a class in Python 3.
|
|
def __init__(self, dict_: Dict[str, str]):
|
|
self._dict = dict_
|
|
dict_ = dict([(re.escape(key), val) for key, val in dict_.items()])
|
|
self._matcher = re.compile("|".join(dict_.keys()))
|
|
|
|
def __call__(self, s: str) -> str:
|
|
return self._matcher.sub(lambda m: self._dict[m.group(0)], s)
|