mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
oragono: Allow TLS tests
This commit is contained in:
@ -13,6 +13,7 @@ server:
|
|||||||
name: oragono.test
|
name: oragono.test
|
||||||
listen:
|
listen:
|
||||||
- "{hostname}:{port}"
|
- "{hostname}:{port}"
|
||||||
|
{tls}
|
||||||
|
|
||||||
check-ident: false
|
check-ident: false
|
||||||
|
|
||||||
@ -46,6 +47,7 @@ accounts:
|
|||||||
verify-timeout: "120h"
|
verify-timeout: "120h"
|
||||||
enabled-callbacks:
|
enabled-callbacks:
|
||||||
- none # no verification needed, will instantly register successfully
|
- none # no verification needed, will instantly register successfully
|
||||||
|
allow-multiple-per-connection: true
|
||||||
|
|
||||||
authentication-enabled: true
|
authentication-enabled: true
|
||||||
|
|
||||||
@ -92,17 +94,24 @@ class OragonoController(BaseServerController, DirectoryBasedController):
|
|||||||
if password is not None:
|
if password is not None:
|
||||||
#TODO(dan): fix dis
|
#TODO(dan): fix dis
|
||||||
raise NotImplementedByController('PASS command')
|
raise NotImplementedByController('PASS command')
|
||||||
|
self.create_config()
|
||||||
|
tls_config = ""
|
||||||
if ssl:
|
if ssl:
|
||||||
#TODO(dan): fix dis
|
self.key_path = os.path.join(self.directory, 'ssl.key')
|
||||||
raise NotImplementedByController('SSL')
|
self.pem_path = os.path.join(self.directory, 'ssl.pem')
|
||||||
|
tls_config = 'tls-listeners:\n ":{port}":\n key: {key}\n cert: {pem}'.format(
|
||||||
|
port=port,
|
||||||
|
key=self.key_path,
|
||||||
|
pem=self.pem_path,
|
||||||
|
)
|
||||||
assert self.proc is None
|
assert self.proc is None
|
||||||
self.port = port
|
self.port = port
|
||||||
self.create_config()
|
|
||||||
with self.open_file('server.yml') as fd:
|
with self.open_file('server.yml') as fd:
|
||||||
fd.write(TEMPLATE_CONFIG.format(
|
fd.write(TEMPLATE_CONFIG.format(
|
||||||
directory=self.directory,
|
directory=self.directory,
|
||||||
hostname=hostname,
|
hostname=hostname,
|
||||||
port=port,
|
port=port,
|
||||||
|
tls=tls_config,
|
||||||
))
|
))
|
||||||
subprocess.call(['oragono', 'initdb',
|
subprocess.call(['oragono', 'initdb',
|
||||||
'--conf', os.path.join(self.directory, 'server.yml'), '--quiet'])
|
'--conf', os.path.join(self.directory, 'server.yml'), '--quiet'])
|
||||||
|
Reference in New Issue
Block a user