|
@ -50,12 +50,13 @@ def directory(request, test_base_dir, test_name): |
|
|
# Auto set value if it isn't in the dict yet |
|
|
# Auto set value if it isn't in the dict yet |
|
|
__attempts[test_name] = __attempts.get(test_name, 0) + 1 |
|
|
__attempts[test_name] = __attempts.get(test_name, 0) + 1 |
|
|
directory = os.path.join(test_base_dir, "{}_{}".format(test_name, __attempts[test_name])) |
|
|
directory = os.path.join(test_base_dir, "{}_{}".format(test_name, __attempts[test_name])) |
|
|
|
|
|
request.node.has_errors = False |
|
|
|
|
|
|
|
|
yield directory |
|
|
yield directory |
|
|
|
|
|
|
|
|
# This uses the status set in conftest.pytest_runtest_makereport to |
|
|
# This uses the status set in conftest.pytest_runtest_makereport to |
|
|
# determine whether we succeeded or failed. |
|
|
# determine whether we succeeded or failed. |
|
|
if request.node.rep_call.outcome == 'passed': |
|
|
if not request.node.has_errors and request.node.rep_call.outcome == 'passed': |
|
|
shutil.rmtree(directory) |
|
|
shutil.rmtree(directory) |
|
|
else: |
|
|
else: |
|
|
logging.debug("Test execution failed, leaving the test directory {} intact.".format(directory)) |
|
|
logging.debug("Test execution failed, leaving the test directory {} intact.".format(directory)) |
|
@ -100,36 +101,42 @@ def bitcoind(directory): |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture |
|
|
@pytest.fixture |
|
|
def node_factory(directory, test_name, bitcoind, executor): |
|
|
def node_factory(request, directory, test_name, bitcoind, executor): |
|
|
nf = NodeFactory(test_name, bitcoind, executor, directory=directory) |
|
|
nf = NodeFactory(test_name, bitcoind, executor, directory=directory) |
|
|
yield nf |
|
|
yield nf |
|
|
err_count = 0 |
|
|
err_count = 0 |
|
|
ok = nf.killall([not n.may_fail for n in nf.nodes]) |
|
|
ok = nf.killall([not n.may_fail for n in nf.nodes]) |
|
|
|
|
|
|
|
|
|
|
|
def check_errors(request, err_count, msg): |
|
|
|
|
|
"""Just a simple helper to format a message, set flags on request and then raise |
|
|
|
|
|
""" |
|
|
|
|
|
if err_count: |
|
|
|
|
|
request.node.has_errors = True |
|
|
|
|
|
raise ValueError(msg.format(err_count)) |
|
|
|
|
|
|
|
|
if VALGRIND: |
|
|
if VALGRIND: |
|
|
for node in nf.nodes: |
|
|
for node in nf.nodes: |
|
|
err_count += printValgrindErrors(node) |
|
|
err_count += printValgrindErrors(node) |
|
|
if err_count: |
|
|
check_errors(request, err_count, "{} nodes reported valgrind errors") |
|
|
raise ValueError("{} nodes reported valgrind errors".format(err_count)) |
|
|
|
|
|
|
|
|
|
|
|
for node in nf.nodes: |
|
|
for node in nf.nodes: |
|
|
err_count += printCrashLog(node) |
|
|
err_count += printCrashLog(node) |
|
|
if err_count: |
|
|
check_errors(request, err_count, "{} nodes had crash.log files") |
|
|
raise ValueError("{} nodes had crash.log files".format(err_count)) |
|
|
|
|
|
for node in nf.nodes: |
|
|
for node in nf.nodes: |
|
|
err_count += checkReconnect(node) |
|
|
err_count += checkReconnect(node) |
|
|
if err_count: |
|
|
check_errors(request, err_count, "{} nodes had unexpected reconnections") |
|
|
raise ValueError("{} nodes had unexpected reconnections".format(err_count)) |
|
|
|
|
|
for node in nf.nodes: |
|
|
for node in nf.nodes: |
|
|
err_count += checkBadGossipOrder(node) |
|
|
err_count += checkBadGossipOrder(node) |
|
|
if err_count: |
|
|
check_errors(request, err_count, "{} nodes had bad gossip order") |
|
|
raise ValueError("{} nodes had bad gossip order".format(err_count)) |
|
|
|
|
|
|
|
|
|
|
|
for node in nf.nodes: |
|
|
for node in nf.nodes: |
|
|
err_count += checkBadReestablish(node) |
|
|
err_count += checkBadReestablish(node) |
|
|
if err_count: |
|
|
check_errors(request, err_count, "{} nodes had bad reestablish") |
|
|
raise ValueError("{} nodes had bad reestablish".format(err_count)) |
|
|
|
|
|
|
|
|
|
|
|
if not ok: |
|
|
if not ok: |
|
|
|
|
|
request.node.has_errors = True |
|
|
raise Exception("At least one lightning exited with unexpected non-zero return code") |
|
|
raise Exception("At least one lightning exited with unexpected non-zero return code") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|