Enable python 3.11 and resolve TLS issues #1
|
@ -69,12 +69,15 @@ class TestProcessProto(unittest.TestCase):
|
||||||
|
|
||||||
class TestProcessShutdown(TestProcessProto):
|
class TestProcessShutdown(TestProcessProto):
|
||||||
"""Separate test case for SIGTERM"""
|
"""Separate test case for SIGTERM"""
|
||||||
|
_wait_time = 30
|
||||||
|
# longer wait time because it's not a benchmark
|
||||||
|
|
||||||
def test_shutdown(self):
|
def test_shutdown(self):
|
||||||
"""Send to minode SIGTERM and ensure it stopped"""
|
"""Send to minode SIGTERM and ensure it stopped"""
|
||||||
# longer wait time because it's not a benchmark
|
|
||||||
self.assertTrue(
|
self.assertTrue(
|
||||||
self._stop_process(20),
|
self._stop_process(self._wait_time),
|
||||||
'%s has not stopped in 20 sec' % ' '.join(self._process_cmd))
|
'%s has not stopped in %i sec' % (
|
||||||
|
' '.join(self._process_cmd), self._wait_time))
|
||||||
|
|
||||||
|
|
||||||
class TestProcess(TestProcessProto):
|
class TestProcess(TestProcessProto):
|
||||||
|
@ -105,8 +108,8 @@ class TestProcess(TestProcessProto):
|
||||||
time.sleep(0.5)
|
time.sleep(0.5)
|
||||||
else:
|
else:
|
||||||
self.fail(
|
self.fail(
|
||||||
'Failed establish at least %s connections in %s sec'
|
'Failed establish at least %i connections in %s sec'
|
||||||
% (self._connection_limit / 2, self._wait_time))
|
% (int(self._connection_limit / 2), self._wait_time))
|
||||||
|
|
||||||
if self._check_limit:
|
if self._check_limit:
|
||||||
continue_check_limit(_time_to_connect)
|
continue_check_limit(_time_to_connect)
|
||||||
|
@ -128,7 +131,6 @@ class TestProcessI2P(TestProcess):
|
||||||
"""Test minode process with --i2p and no IP"""
|
"""Test minode process with --i2p and no IP"""
|
||||||
_process_cmd = ['minode', '--i2p', '--no-ip']
|
_process_cmd = ['minode', '--i2p', '--no-ip']
|
||||||
_connection_limit = 4
|
_connection_limit = 4
|
||||||
_wait_time = 120
|
|
||||||
_listen = True
|
_listen = True
|
||||||
_listening_port = 8448
|
_listening_port = 8448
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user