Merge #12810: [Tests] Fix a typo at assert_start_raises_init_error() and use specific exception for initialization error
8394300859
[Tests] fix a typo in TestNode.assert_start_raises_init_error() (Roman Zeyde)
Pull request description:
`self.wait_util_stopped()` should be `self.wait_until_stopped()`.
Also, use a specific Exception subclass for indicating node failure to start (instead of using `AssetionError` and an `except Exception` clause).
Following https://travis-ci.org/bitcoin/bitcoin/jobs/359066226#L2726 and depending on #12806 (which fixes the root cause of the Travis test failure).
Tree-SHA512: 7bd5a95586a412472ef9dffdb086789d7275ddaf862724e21cebb3418d0c97e6d89b4d1a58375e42114060d028403d6eab89e3a1e9a833ffe8dadf3439ab1fe2
This commit is contained in:
commit
de7e586841
1 changed files with 10 additions and 4 deletions
|
@ -30,6 +30,11 @@ JSONDecodeError = getattr(json, "JSONDecodeError", ValueError)
|
||||||
|
|
||||||
BITCOIND_PROC_WAIT_TIMEOUT = 60
|
BITCOIND_PROC_WAIT_TIMEOUT = 60
|
||||||
|
|
||||||
|
|
||||||
|
class FailedToStartError(Exception):
|
||||||
|
"""Raised when a node fails to start correctly."""
|
||||||
|
|
||||||
|
|
||||||
class TestNode():
|
class TestNode():
|
||||||
"""A class for representing a bitcoind node under test.
|
"""A class for representing a bitcoind node under test.
|
||||||
|
|
||||||
|
@ -102,7 +107,8 @@ class TestNode():
|
||||||
# Poll at a rate of four times per second
|
# Poll at a rate of four times per second
|
||||||
poll_per_s = 4
|
poll_per_s = 4
|
||||||
for _ in range(poll_per_s * self.rpc_timeout):
|
for _ in range(poll_per_s * self.rpc_timeout):
|
||||||
assert self.process.poll() is None, "bitcoind exited with status %i during initialization" % self.process.returncode
|
if self.process.poll() is not None:
|
||||||
|
raise FailedToStartError('bitcoind exited with status {} during initialization'.format(self.process.returncode))
|
||||||
try:
|
try:
|
||||||
self.rpc = get_rpc_proxy(rpc_url(self.datadir, self.index, self.rpchost), self.index, timeout=self.rpc_timeout, coveragedir=self.coverage_dir)
|
self.rpc = get_rpc_proxy(rpc_url(self.datadir, self.index, self.rpchost), self.index, timeout=self.rpc_timeout, coveragedir=self.coverage_dir)
|
||||||
self.rpc.getblockcount()
|
self.rpc.getblockcount()
|
||||||
|
@ -179,9 +185,9 @@ class TestNode():
|
||||||
self.start(extra_args, stderr=log_stderr, *args, **kwargs)
|
self.start(extra_args, stderr=log_stderr, *args, **kwargs)
|
||||||
self.wait_for_rpc_connection()
|
self.wait_for_rpc_connection()
|
||||||
self.stop_node()
|
self.stop_node()
|
||||||
self.wait_util_stopped()
|
self.wait_until_stopped()
|
||||||
except Exception as e:
|
except FailedToStartError as e:
|
||||||
assert 'bitcoind exited' in str(e) # node must have shutdown
|
self.log.debug('bitcoind failed to start: %s', e)
|
||||||
self.running = False
|
self.running = False
|
||||||
self.process = None
|
self.process = None
|
||||||
# Check stderr for expected message
|
# Check stderr for expected message
|
||||||
|
|
Loading…
Reference in a new issue