mirror of
https://github.com/progval/irctest.git
synced 2025-04-04 22:39:50 +00:00
Compare commits
1 Commits
c31aaf4d61
...
sopel-scra
Author | SHA1 | Date | |
---|---|---|---|
1d8d78e62a |
@ -27,7 +27,11 @@ auth_password = {password}
|
|||||||
|
|
||||||
class SopelController(BaseClientController):
|
class SopelController(BaseClientController):
|
||||||
software_name = "Sopel"
|
software_name = "Sopel"
|
||||||
supported_sasl_mechanisms = {"PLAIN"}
|
supported_sasl_mechanisms = {
|
||||||
|
"PLAIN",
|
||||||
|
"SCRAM-SHA-256",
|
||||||
|
"EXTERNAL",
|
||||||
|
}
|
||||||
supports_sts = False
|
supports_sts = False
|
||||||
|
|
||||||
def __init__(self, test_config: TestCaseControllerConfig):
|
def __init__(self, test_config: TestCaseControllerConfig):
|
||||||
@ -61,6 +65,8 @@ class SopelController(BaseClientController):
|
|||||||
# Runs a client with the config given as arguments
|
# Runs a client with the config given as arguments
|
||||||
if tls_config is not None:
|
if tls_config is not None:
|
||||||
raise NotImplementedByController("TLS configuration")
|
raise NotImplementedByController("TLS configuration")
|
||||||
|
if auth and len(auth.mechanisms) > 1:
|
||||||
|
raise NotImplementedByController("multiple SASL mechanisms")
|
||||||
assert self.proc is None
|
assert self.proc is None
|
||||||
self.create_config()
|
self.create_config()
|
||||||
with self.open_file(self.filename) as fd:
|
with self.open_file(self.filename) as fd:
|
||||||
@ -70,7 +76,12 @@ class SopelController(BaseClientController):
|
|||||||
port=port,
|
port=port,
|
||||||
username=auth.username if auth else "",
|
username=auth.username if auth else "",
|
||||||
password=auth.password if auth else "",
|
password=auth.password if auth else "",
|
||||||
auth_method="auth_method = sasl" if auth else "",
|
auth_method=(
|
||||||
|
f"auth_method = sasl\n"
|
||||||
|
f"auth_target = {auth.mechanisms[0].to_string()}"
|
||||||
|
)
|
||||||
|
if auth
|
||||||
|
else "",
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
self.proc = subprocess.Popen(["sopel", "--quiet", "-c", self.filename])
|
self.proc = subprocess.Popen(["sopel", "--quiet", "-c", self.filename])
|
||||||
|
Reference in New Issue
Block a user