Skip to content

Commit

Permalink
[qa] TestNode: Add wait_until_stopped helper method
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoFalke committed Sep 6, 2017
1 parent 777519b commit faa8d95
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 22 deletions.
4 changes: 2 additions & 2 deletions test/functional/blockchain.py
Expand Up @@ -21,7 +21,7 @@
import http.client
import subprocess

from test_framework.test_framework import (BitcoinTestFramework, BITCOIND_PROC_WAIT_TIMEOUT)
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import (
assert_equal,
assert_raises,
Expand Down Expand Up @@ -141,7 +141,7 @@ def _test_stopatheight(self):
except (ConnectionError, http.client.BadStatusLine):
pass # The node already shut down before response
self.log.debug('Node should stop at this height...')
self.nodes[0].process.wait(timeout=BITCOIND_PROC_WAIT_TIMEOUT)
self.nodes[0].wait_until_stopped()
self.start_node(0)
assert_equal(self.nodes[0].getblockcount(), 207)

Expand Down
2 changes: 1 addition & 1 deletion test/functional/fundrawtransaction.py
Expand Up @@ -4,7 +4,7 @@
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
"""Test the fundrawtransaction RPC."""

from test_framework.test_framework import BitcoinTestFramework, BITCOIND_PROC_WAIT_TIMEOUT
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *


Expand Down
8 changes: 2 additions & 6 deletions test/functional/test_framework/test_framework.py
Expand Up @@ -43,8 +43,6 @@ class TestStatus(Enum):
TEST_EXIT_FAILED = 1
TEST_EXIT_SKIPPED = 77

BITCOIND_PROC_WAIT_TIMEOUT = 60

class BitcoinTestFramework(object):
"""Base class for a bitcoin test script.
Expand Down Expand Up @@ -263,8 +261,7 @@ def start_nodes(self, extra_args=None):
def stop_node(self, i):
"""Stop a bitcoind test node"""
self.nodes[i].stop_node()
while not self.nodes[i].is_node_stopped():
time.sleep(0.1)
self.nodes[i].wait_until_stopped()

def stop_nodes(self):
"""Stop multiple bitcoind test nodes"""
Expand All @@ -274,8 +271,7 @@ def stop_nodes(self):

for node in self.nodes:
# Wait for nodes to stop
while not node.is_node_stopped():
time.sleep(0.1)
node.wait_until_stopped()

def assert_start_raises_init_error(self, i, extra_args=None, expected_msg=None):
with tempfile.SpooledTemporaryFile(max_size=2**16) as log_stderr:
Expand Down
30 changes: 18 additions & 12 deletions test/functional/test_framework/test_node.py
Expand Up @@ -17,9 +17,12 @@
assert_equal,
get_rpc_proxy,
rpc_url,
wait_until,
)
from .authproxy import JSONRPCException

BITCOIND_PROC_WAIT_TIMEOUT = 60

class TestNode():
"""A class for representing a bitcoind node under test.
Expand Down Expand Up @@ -125,25 +128,28 @@ def is_node_stopped(self):
if not self.running:
return True
return_code = self.process.poll()
if return_code is not None:
# process has stopped. Assert that it didn't return an error code.
assert_equal(return_code, 0)
self.running = False
self.process = None
self.log.debug("Node stopped")
return True
return False
if return_code is None:
return False

# process has stopped. Assert that it didn't return an error code.
assert_equal(return_code, 0)
self.running = False
self.process = None
self.rpc_connected = False
self.rpc = None
self.log.debug("Node stopped")
return True

def wait_until_stopped(self, timeout=BITCOIND_PROC_WAIT_TIMEOUT):
wait_until(self.is_node_stopped, timeout=timeout)

def node_encrypt_wallet(self, passphrase):
""""Encrypts the wallet.
This causes bitcoind to shutdown, so this method takes
care of cleaning up resources."""
self.encryptwallet(passphrase)
while not self.is_node_stopped():
time.sleep(0.1)
self.rpc = None
self.rpc_connected = False
self.wait_until_stopped()

class TestNodeCLI():
"""Interface to bitcoin-cli for an individual node"""
Expand Down
2 changes: 1 addition & 1 deletion test/functional/wallet-encryption.py
Expand Up @@ -6,7 +6,7 @@

import time

from test_framework.test_framework import BitcoinTestFramework, BITCOIND_PROC_WAIT_TIMEOUT
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import (
assert_equal,
assert_raises_jsonrpc,
Expand Down

0 comments on commit faa8d95

Please sign in to comment.