mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-12 08:08:25 +00:00
Merge #10556: Move stop/start functions from utils.py into BitcoinTestFramework
5ba83c1
[tests] fix nits. (John Newbery)05b8c08
[tests] reorganize utils.py module (code move only) (John Newbery)0d473c5
[tests] move mocktime property and functions to BitcoinTestFramework (John Newbery)cad967a
[tests] Move stop_node and start_node methods to BitcoinTestFramework (John Newbery)f1fe536
[tests] fix flake8 warnings in test_framework.py and util.py (John Newbery)37065d2
[tests] remove unused imports from utils.py (John Newbery) Tree-SHA512: 461db412c57c4d0030e27fe3f78f17bcaf00b966f319a9e613460cca897508ff70a29db7138133fe1be8d447dad6702ba2778f9eddfe929016e560d71c20b09f
This commit is contained in:
commit
65cc7aacfb
@ -15,6 +15,10 @@ mine a further 143 blocks (LOCKED_IN)
|
|||||||
test that enforcement has not triggered (which triggers ACTIVE)
|
test that enforcement has not triggered (which triggers ACTIVE)
|
||||||
test that enforcement has triggered
|
test that enforcement has triggered
|
||||||
"""
|
"""
|
||||||
|
from io import BytesIO
|
||||||
|
import shutil
|
||||||
|
import time
|
||||||
|
import itertools
|
||||||
|
|
||||||
from test_framework.test_framework import ComparisonTestFramework
|
from test_framework.test_framework import ComparisonTestFramework
|
||||||
from test_framework.util import *
|
from test_framework.util import *
|
||||||
@ -22,9 +26,6 @@ from test_framework.mininode import CTransaction, NetworkThread
|
|||||||
from test_framework.blocktools import create_coinbase, create_block
|
from test_framework.blocktools import create_coinbase, create_block
|
||||||
from test_framework.comptool import TestInstance, TestManager
|
from test_framework.comptool import TestInstance, TestManager
|
||||||
from test_framework.script import CScript, OP_1NEGATE, OP_CHECKSEQUENCEVERIFY, OP_DROP
|
from test_framework.script import CScript, OP_1NEGATE, OP_CHECKSEQUENCEVERIFY, OP_DROP
|
||||||
from io import BytesIO
|
|
||||||
import time
|
|
||||||
import itertools
|
|
||||||
|
|
||||||
class BIP9SoftForksTest(ComparisonTestFramework):
|
class BIP9SoftForksTest(ComparisonTestFramework):
|
||||||
|
|
||||||
|
@ -21,15 +21,13 @@ from decimal import Decimal
|
|||||||
import http.client
|
import http.client
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
from test_framework.test_framework import BitcoinTestFramework
|
from test_framework.test_framework import (BitcoinTestFramework, BITCOIND_PROC_WAIT_TIMEOUT)
|
||||||
from test_framework.util import (
|
from test_framework.util import (
|
||||||
assert_equal,
|
assert_equal,
|
||||||
assert_raises,
|
assert_raises,
|
||||||
assert_raises_jsonrpc,
|
assert_raises_jsonrpc,
|
||||||
assert_is_hex_string,
|
assert_is_hex_string,
|
||||||
assert_is_hash_string,
|
assert_is_hash_string,
|
||||||
bitcoind_processes,
|
|
||||||
BITCOIND_PROC_WAIT_TIMEOUT,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -141,13 +139,13 @@ class BlockchainTest(BitcoinTestFramework):
|
|||||||
self.nodes[0].generate(6)
|
self.nodes[0].generate(6)
|
||||||
assert_equal(self.nodes[0].getblockcount(), 206)
|
assert_equal(self.nodes[0].getblockcount(), 206)
|
||||||
self.log.debug('Node should not stop at this height')
|
self.log.debug('Node should not stop at this height')
|
||||||
assert_raises(subprocess.TimeoutExpired, lambda: bitcoind_processes[0].wait(timeout=3))
|
assert_raises(subprocess.TimeoutExpired, lambda: self.bitcoind_processes[0].wait(timeout=3))
|
||||||
try:
|
try:
|
||||||
self.nodes[0].generate(1)
|
self.nodes[0].generate(1)
|
||||||
except (ConnectionError, http.client.BadStatusLine):
|
except (ConnectionError, http.client.BadStatusLine):
|
||||||
pass # The node already shut down before response
|
pass # The node already shut down before response
|
||||||
self.log.debug('Node should stop at this height...')
|
self.log.debug('Node should stop at this height...')
|
||||||
bitcoind_processes[0].wait(timeout=BITCOIND_PROC_WAIT_TIMEOUT)
|
self.bitcoind_processes[0].wait(timeout=BITCOIND_PROC_WAIT_TIMEOUT)
|
||||||
self.nodes[0] = self.start_node(0, self.options.tmpdir)
|
self.nodes[0] = self.start_node(0, self.options.tmpdir)
|
||||||
assert_equal(self.nodes[0].getblockcount(), 207)
|
assert_equal(self.nodes[0].getblockcount(), 207)
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ class BumpFeeTest(BitcoinTestFramework):
|
|||||||
|
|
||||||
# Encrypt wallet for test_locked_wallet_fails test
|
# Encrypt wallet for test_locked_wallet_fails test
|
||||||
self.nodes[1].encryptwallet(WALLET_PASSPHRASE)
|
self.nodes[1].encryptwallet(WALLET_PASSPHRASE)
|
||||||
bitcoind_processes[1].wait()
|
self.bitcoind_processes[1].wait()
|
||||||
self.nodes[1] = self.start_node(1, self.options.tmpdir, extra_args[1])
|
self.nodes[1] = self.start_node(1, self.options.tmpdir, extra_args[1])
|
||||||
self.nodes[1].walletpassphrase(WALLET_PASSPHRASE, WALLET_PASSPHRASE_TIMEOUT)
|
self.nodes[1].walletpassphrase(WALLET_PASSPHRASE, WALLET_PASSPHRASE_TIMEOUT)
|
||||||
|
|
||||||
|
@ -88,7 +88,7 @@ class ChainstateWriteCrashTest(BitcoinTestFramework):
|
|||||||
# An exception here should mean the node is about to crash.
|
# An exception here should mean the node is about to crash.
|
||||||
# If bitcoind exits, then try again. wait_for_node_exit()
|
# If bitcoind exits, then try again. wait_for_node_exit()
|
||||||
# should raise an exception if bitcoind doesn't exit.
|
# should raise an exception if bitcoind doesn't exit.
|
||||||
wait_for_node_exit(node_index, timeout=10)
|
self.wait_for_node_exit(node_index, timeout=10)
|
||||||
self.crashed_on_restart += 1
|
self.crashed_on_restart += 1
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
|
|
||||||
@ -140,7 +140,7 @@ class ChainstateWriteCrashTest(BitcoinTestFramework):
|
|||||||
if not self.submit_block_catch_error(i, block):
|
if not self.submit_block_catch_error(i, block):
|
||||||
# TODO: more carefully check that the crash is due to -dbcrashratio
|
# TODO: more carefully check that the crash is due to -dbcrashratio
|
||||||
# (change the exit code perhaps, and check that here?)
|
# (change the exit code perhaps, and check that here?)
|
||||||
wait_for_node_exit(i, timeout=30)
|
self.wait_for_node_exit(i, timeout=30)
|
||||||
self.log.debug("Restarting node %d after block hash %s", i, block_hash)
|
self.log.debug("Restarting node %d after block hash %s", i, block_hash)
|
||||||
nodei_utxo_hash = self.restart_node(i, block_hash)
|
nodei_utxo_hash = self.restart_node(i, block_hash)
|
||||||
assert nodei_utxo_hash is not None
|
assert nodei_utxo_hash is not None
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
"""Test the fundrawtransaction RPC."""
|
"""Test the fundrawtransaction RPC."""
|
||||||
|
|
||||||
from test_framework.test_framework import BitcoinTestFramework
|
from test_framework.test_framework import BitcoinTestFramework, BITCOIND_PROC_WAIT_TIMEOUT
|
||||||
from test_framework.util import *
|
from test_framework.util import *
|
||||||
|
|
||||||
|
|
||||||
@ -452,7 +452,7 @@ class RawTransactionsTest(BitcoinTestFramework):
|
|||||||
self.stop_node(2)
|
self.stop_node(2)
|
||||||
self.stop_node(3)
|
self.stop_node(3)
|
||||||
self.nodes[1].encryptwallet("test")
|
self.nodes[1].encryptwallet("test")
|
||||||
bitcoind_processes[1].wait(timeout=BITCOIND_PROC_WAIT_TIMEOUT)
|
self.bitcoind_processes[1].wait(timeout=BITCOIND_PROC_WAIT_TIMEOUT)
|
||||||
|
|
||||||
self.nodes = self.start_nodes(self.num_nodes, self.options.tmpdir)
|
self.nodes = self.start_nodes(self.num_nodes, self.options.tmpdir)
|
||||||
# This test is not meant to test fee estimation and we'd like
|
# This test is not meant to test fee estimation and we'd like
|
||||||
|
@ -18,7 +18,7 @@ class KeyPoolTest(BitcoinTestFramework):
|
|||||||
|
|
||||||
# Encrypt wallet and wait to terminate
|
# Encrypt wallet and wait to terminate
|
||||||
nodes[0].encryptwallet('test')
|
nodes[0].encryptwallet('test')
|
||||||
bitcoind_processes[0].wait()
|
self.bitcoind_processes[0].wait()
|
||||||
# Restart node 0
|
# Restart node 0
|
||||||
nodes[0] = self.start_node(0, self.options.tmpdir)
|
nodes[0] = self.start_node(0, self.options.tmpdir)
|
||||||
# Keep creating keys
|
# Keep creating keys
|
||||||
|
@ -23,7 +23,7 @@ class ListTransactionsTest(BitcoinTestFramework):
|
|||||||
|
|
||||||
def setup_nodes(self):
|
def setup_nodes(self):
|
||||||
#This test requires mocktime
|
#This test requires mocktime
|
||||||
enable_mocktime()
|
self.enable_mocktime()
|
||||||
self.nodes = self.start_nodes(self.num_nodes, self.options.tmpdir)
|
self.nodes = self.start_nodes(self.num_nodes, self.options.tmpdir)
|
||||||
|
|
||||||
def run_test(self):
|
def run_test(self):
|
||||||
|
@ -31,7 +31,7 @@ class ReceivedByTest(BitcoinTestFramework):
|
|||||||
|
|
||||||
def setup_nodes(self):
|
def setup_nodes(self):
|
||||||
#This test requires mocktime
|
#This test requires mocktime
|
||||||
enable_mocktime()
|
self.enable_mocktime()
|
||||||
self.nodes = self.start_nodes(self.num_nodes, self.options.tmpdir)
|
self.nodes = self.start_nodes(self.num_nodes, self.options.tmpdir)
|
||||||
|
|
||||||
def run_test(self):
|
def run_test(self):
|
||||||
|
@ -37,7 +37,7 @@ class RPCBindTest(BitcoinTestFramework):
|
|||||||
base_args += ['-rpcallowip=' + x for x in allow_ips]
|
base_args += ['-rpcallowip=' + x for x in allow_ips]
|
||||||
binds = ['-rpcbind='+addr for addr in addresses]
|
binds = ['-rpcbind='+addr for addr in addresses]
|
||||||
self.nodes = self.start_nodes(self.num_nodes, self.options.tmpdir, [base_args + binds], connect_to)
|
self.nodes = self.start_nodes(self.num_nodes, self.options.tmpdir, [base_args + binds], connect_to)
|
||||||
pid = bitcoind_processes[0].pid
|
pid = self.bitcoind_processes[0].pid
|
||||||
assert_equal(set(get_bind_addrs(pid)), set(expected))
|
assert_equal(set(get_bind_addrs(pid)), set(expected))
|
||||||
self.stop_nodes()
|
self.stop_nodes()
|
||||||
|
|
||||||
|
@ -5,7 +5,9 @@
|
|||||||
"""Base class for RPC testing."""
|
"""Base class for RPC testing."""
|
||||||
|
|
||||||
from collections import deque
|
from collections import deque
|
||||||
|
import errno
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
|
import http.client
|
||||||
import logging
|
import logging
|
||||||
import optparse
|
import optparse
|
||||||
import os
|
import os
|
||||||
@ -14,18 +16,17 @@ import subprocess
|
|||||||
import sys
|
import sys
|
||||||
import tempfile
|
import tempfile
|
||||||
import time
|
import time
|
||||||
|
import traceback
|
||||||
|
|
||||||
|
from .authproxy import JSONRPCException
|
||||||
|
from . import coverage
|
||||||
from .util import (
|
from .util import (
|
||||||
PortSeed,
|
|
||||||
MAX_NODES,
|
MAX_NODES,
|
||||||
bitcoind_processes,
|
PortSeed,
|
||||||
|
assert_equal,
|
||||||
check_json_precision,
|
check_json_precision,
|
||||||
connect_nodes_bi,
|
connect_nodes_bi,
|
||||||
disable_mocktime,
|
|
||||||
disconnect_nodes,
|
disconnect_nodes,
|
||||||
enable_coverage,
|
|
||||||
enable_mocktime,
|
|
||||||
get_mocktime,
|
|
||||||
get_rpc_proxy,
|
get_rpc_proxy,
|
||||||
initialize_datadir,
|
initialize_datadir,
|
||||||
get_datadir_path,
|
get_datadir_path,
|
||||||
@ -33,15 +34,9 @@ from .util import (
|
|||||||
p2p_port,
|
p2p_port,
|
||||||
rpc_url,
|
rpc_url,
|
||||||
set_node_times,
|
set_node_times,
|
||||||
_start_node,
|
|
||||||
_start_nodes,
|
|
||||||
_stop_node,
|
|
||||||
_stop_nodes,
|
|
||||||
sync_blocks,
|
sync_blocks,
|
||||||
sync_mempools,
|
sync_mempools,
|
||||||
wait_for_bitcoind_start,
|
|
||||||
)
|
)
|
||||||
from .authproxy import JSONRPCException
|
|
||||||
|
|
||||||
class TestStatus(Enum):
|
class TestStatus(Enum):
|
||||||
PASSED = 1
|
PASSED = 1
|
||||||
@ -52,6 +47,8 @@ TEST_EXIT_PASSED = 0
|
|||||||
TEST_EXIT_FAILED = 1
|
TEST_EXIT_FAILED = 1
|
||||||
TEST_EXIT_SKIPPED = 77
|
TEST_EXIT_SKIPPED = 77
|
||||||
|
|
||||||
|
BITCOIND_PROC_WAIT_TIMEOUT = 60
|
||||||
|
|
||||||
class BitcoinTestFramework(object):
|
class BitcoinTestFramework(object):
|
||||||
"""Base class for a bitcoin test script.
|
"""Base class for a bitcoin test script.
|
||||||
|
|
||||||
@ -71,13 +68,15 @@ class BitcoinTestFramework(object):
|
|||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.num_nodes = 4
|
self.num_nodes = 4
|
||||||
self.setup_clean_chain = False
|
self.setup_clean_chain = False
|
||||||
self.nodes = None
|
self.nodes = []
|
||||||
|
self.bitcoind_processes = {}
|
||||||
|
self.mocktime = 0
|
||||||
|
|
||||||
def add_options(self, parser):
|
def add_options(self, parser):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def setup_chain(self):
|
def setup_chain(self):
|
||||||
self.log.info("Initializing test directory "+self.options.tmpdir)
|
self.log.info("Initializing test directory " + self.options.tmpdir)
|
||||||
if self.setup_clean_chain:
|
if self.setup_clean_chain:
|
||||||
self._initialize_chain_clean(self.options.tmpdir, self.num_nodes)
|
self._initialize_chain_clean(self.options.tmpdir, self.num_nodes)
|
||||||
else:
|
else:
|
||||||
@ -97,7 +96,7 @@ class BitcoinTestFramework(object):
|
|||||||
extra_args = None
|
extra_args = None
|
||||||
if hasattr(self, "extra_args"):
|
if hasattr(self, "extra_args"):
|
||||||
extra_args = self.extra_args
|
extra_args = self.extra_args
|
||||||
self.nodes = _start_nodes(self.num_nodes, self.options.tmpdir, extra_args)
|
self.nodes = self.start_nodes(self.num_nodes, self.options.tmpdir, extra_args)
|
||||||
|
|
||||||
def run_test(self):
|
def run_test(self):
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
@ -111,9 +110,9 @@ class BitcoinTestFramework(object):
|
|||||||
help="Leave bitcoinds and test.* datadir on exit or error")
|
help="Leave bitcoinds and test.* datadir on exit or error")
|
||||||
parser.add_option("--noshutdown", dest="noshutdown", default=False, action="store_true",
|
parser.add_option("--noshutdown", dest="noshutdown", default=False, action="store_true",
|
||||||
help="Don't stop bitcoinds after the test execution")
|
help="Don't stop bitcoinds after the test execution")
|
||||||
parser.add_option("--srcdir", dest="srcdir", default=os.path.normpath(os.path.dirname(os.path.realpath(__file__))+"/../../../src"),
|
parser.add_option("--srcdir", dest="srcdir", default=os.path.normpath(os.path.dirname(os.path.realpath(__file__)) + "/../../../src"),
|
||||||
help="Source directory containing bitcoind/bitcoin-cli (default: %default)")
|
help="Source directory containing bitcoind/bitcoin-cli (default: %default)")
|
||||||
parser.add_option("--cachedir", dest="cachedir", default=os.path.normpath(os.path.dirname(os.path.realpath(__file__))+"/../../cache"),
|
parser.add_option("--cachedir", dest="cachedir", default=os.path.normpath(os.path.dirname(os.path.realpath(__file__)) + "/../../cache"),
|
||||||
help="Directory for caching pregenerated datadirs")
|
help="Directory for caching pregenerated datadirs")
|
||||||
parser.add_option("--tmpdir", dest="tmpdir", help="Root directory for datadirs")
|
parser.add_option("--tmpdir", dest="tmpdir", help="Root directory for datadirs")
|
||||||
parser.add_option("-l", "--loglevel", dest="loglevel", default="INFO",
|
parser.add_option("-l", "--loglevel", dest="loglevel", default="INFO",
|
||||||
@ -129,12 +128,9 @@ class BitcoinTestFramework(object):
|
|||||||
self.add_options(parser)
|
self.add_options(parser)
|
||||||
(self.options, self.args) = parser.parse_args()
|
(self.options, self.args) = parser.parse_args()
|
||||||
|
|
||||||
if self.options.coveragedir:
|
|
||||||
enable_coverage(self.options.coveragedir)
|
|
||||||
|
|
||||||
PortSeed.n = self.options.port_seed
|
PortSeed.n = self.options.port_seed
|
||||||
|
|
||||||
os.environ['PATH'] = self.options.srcdir+":"+self.options.srcdir+"/qt:"+os.environ['PATH']
|
os.environ['PATH'] = self.options.srcdir + ":" + self.options.srcdir + "/qt:" + os.environ['PATH']
|
||||||
|
|
||||||
check_json_precision()
|
check_json_precision()
|
||||||
|
|
||||||
@ -188,7 +184,7 @@ class BitcoinTestFramework(object):
|
|||||||
for fn in filenames:
|
for fn in filenames:
|
||||||
try:
|
try:
|
||||||
with open(fn, 'r') as f:
|
with open(fn, 'r') as f:
|
||||||
print("From" , fn, ":")
|
print("From", fn, ":")
|
||||||
print("".join(deque(f, MAX_LINES_TO_PRINT)))
|
print("".join(deque(f, MAX_LINES_TO_PRINT)))
|
||||||
except OSError:
|
except OSError:
|
||||||
print("Opening file %s failed." % fn)
|
print("Opening file %s failed." % fn)
|
||||||
@ -208,16 +204,88 @@ class BitcoinTestFramework(object):
|
|||||||
# Public helper methods. These can be accessed by the subclass test scripts.
|
# Public helper methods. These can be accessed by the subclass test scripts.
|
||||||
|
|
||||||
def start_node(self, i, dirname, extra_args=None, rpchost=None, timewait=None, binary=None, stderr=None):
|
def start_node(self, i, dirname, extra_args=None, rpchost=None, timewait=None, binary=None, stderr=None):
|
||||||
return _start_node(i, dirname, extra_args, rpchost, timewait, binary, stderr)
|
"""Start a bitcoind and return RPC connection to it"""
|
||||||
|
|
||||||
|
datadir = os.path.join(dirname, "node" + str(i))
|
||||||
|
if binary is None:
|
||||||
|
binary = os.getenv("BITCOIND", "bitcoind")
|
||||||
|
args = [binary, "-datadir=" + datadir, "-server", "-keypool=1", "-discover=0", "-rest", "-logtimemicros", "-debug", "-debugexclude=libevent", "-debugexclude=leveldb", "-mocktime=" + str(self.mocktime), "-uacomment=testnode%d" % i]
|
||||||
|
if extra_args is not None:
|
||||||
|
args.extend(extra_args)
|
||||||
|
self.bitcoind_processes[i] = subprocess.Popen(args, stderr=stderr)
|
||||||
|
self.log.debug("initialize_chain: bitcoind started, waiting for RPC to come up")
|
||||||
|
self._wait_for_bitcoind_start(self.bitcoind_processes[i], datadir, i, rpchost)
|
||||||
|
self.log.debug("initialize_chain: RPC successfully started")
|
||||||
|
proxy = get_rpc_proxy(rpc_url(datadir, i, rpchost), i, timeout=timewait)
|
||||||
|
|
||||||
|
if self.options.coveragedir:
|
||||||
|
coverage.write_all_rpc_commands(self.options.coveragedir, proxy)
|
||||||
|
|
||||||
|
return proxy
|
||||||
|
|
||||||
def start_nodes(self, num_nodes, dirname, extra_args=None, rpchost=None, timewait=None, binary=None):
|
def start_nodes(self, num_nodes, dirname, extra_args=None, rpchost=None, timewait=None, binary=None):
|
||||||
return _start_nodes(num_nodes, dirname, extra_args, rpchost, timewait, binary)
|
"""Start multiple bitcoinds, return RPC connections to them"""
|
||||||
|
|
||||||
def stop_node(self, num_node):
|
if extra_args is None:
|
||||||
_stop_node(self.nodes[num_node], num_node)
|
extra_args = [None] * num_nodes
|
||||||
|
if binary is None:
|
||||||
|
binary = [None] * num_nodes
|
||||||
|
assert_equal(len(extra_args), num_nodes)
|
||||||
|
assert_equal(len(binary), num_nodes)
|
||||||
|
rpcs = []
|
||||||
|
try:
|
||||||
|
for i in range(num_nodes):
|
||||||
|
rpcs.append(self.start_node(i, dirname, extra_args[i], rpchost, timewait=timewait, binary=binary[i]))
|
||||||
|
except:
|
||||||
|
# If one node failed to start, stop the others
|
||||||
|
# TODO: abusing self.nodes in this way is a little hacky.
|
||||||
|
# Eventually we should do a better job of tracking nodes
|
||||||
|
self.nodes.extend(rpcs)
|
||||||
|
self.stop_nodes()
|
||||||
|
self.nodes = []
|
||||||
|
raise
|
||||||
|
return rpcs
|
||||||
|
|
||||||
|
def stop_node(self, i):
|
||||||
|
"""Stop a bitcoind test node"""
|
||||||
|
|
||||||
|
self.log.debug("Stopping node %d" % i)
|
||||||
|
try:
|
||||||
|
self.nodes[i].stop()
|
||||||
|
except http.client.CannotSendRequest as e:
|
||||||
|
self.log.exception("Unable to stop node")
|
||||||
|
return_code = self.bitcoind_processes[i].wait(timeout=BITCOIND_PROC_WAIT_TIMEOUT)
|
||||||
|
del self.bitcoind_processes[i]
|
||||||
|
assert_equal(return_code, 0)
|
||||||
|
|
||||||
def stop_nodes(self):
|
def stop_nodes(self):
|
||||||
_stop_nodes(self.nodes)
|
"""Stop multiple bitcoind test nodes"""
|
||||||
|
|
||||||
|
for i in range(len(self.nodes)):
|
||||||
|
self.stop_node(i)
|
||||||
|
assert not self.bitcoind_processes.values() # All connections must be gone now
|
||||||
|
|
||||||
|
def assert_start_raises_init_error(self, i, dirname, extra_args=None, expected_msg=None):
|
||||||
|
with tempfile.SpooledTemporaryFile(max_size=2**16) as log_stderr:
|
||||||
|
try:
|
||||||
|
self.start_node(i, dirname, extra_args, stderr=log_stderr)
|
||||||
|
self.stop_node(i)
|
||||||
|
except Exception as e:
|
||||||
|
assert 'bitcoind exited' in str(e) # node must have shutdown
|
||||||
|
if expected_msg is not None:
|
||||||
|
log_stderr.seek(0)
|
||||||
|
stderr = log_stderr.read().decode('utf-8')
|
||||||
|
if expected_msg not in stderr:
|
||||||
|
raise AssertionError("Expected error \"" + expected_msg + "\" not found in:\n" + stderr)
|
||||||
|
else:
|
||||||
|
if expected_msg is None:
|
||||||
|
assert_msg = "bitcoind should have exited with an error"
|
||||||
|
else:
|
||||||
|
assert_msg = "bitcoind should have exited with expected error " + expected_msg
|
||||||
|
raise AssertionError(assert_msg)
|
||||||
|
|
||||||
|
def wait_for_node_exit(self, i, timeout):
|
||||||
|
self.bitcoind_processes[i].wait(timeout)
|
||||||
|
|
||||||
def split_network(self):
|
def split_network(self):
|
||||||
"""
|
"""
|
||||||
@ -242,6 +310,21 @@ class BitcoinTestFramework(object):
|
|||||||
sync_blocks(group)
|
sync_blocks(group)
|
||||||
sync_mempools(group)
|
sync_mempools(group)
|
||||||
|
|
||||||
|
def enable_mocktime(self):
|
||||||
|
"""Enable mocktime for the script.
|
||||||
|
|
||||||
|
mocktime may be needed for scripts that use the cached version of the
|
||||||
|
blockchain. If the cached version of the blockchain is used without
|
||||||
|
mocktime then the mempools will not sync due to IBD.
|
||||||
|
|
||||||
|
For backwared compatibility of the python scripts with previous
|
||||||
|
versions of the cache, this helper function sets mocktime to Jan 1,
|
||||||
|
2014 + (201 * 10 * 60)"""
|
||||||
|
self.mocktime = 1388534400 + (201 * 10 * 60)
|
||||||
|
|
||||||
|
def disable_mocktime(self):
|
||||||
|
self.mocktime = 0
|
||||||
|
|
||||||
# Private helper methods. These should not be accessed by the subclass test scripts.
|
# Private helper methods. These should not be accessed by the subclass test scripts.
|
||||||
|
|
||||||
def _start_logging(self):
|
def _start_logging(self):
|
||||||
@ -257,7 +340,7 @@ class BitcoinTestFramework(object):
|
|||||||
ll = int(self.options.loglevel) if self.options.loglevel.isdigit() else self.options.loglevel.upper()
|
ll = int(self.options.loglevel) if self.options.loglevel.isdigit() else self.options.loglevel.upper()
|
||||||
ch.setLevel(ll)
|
ch.setLevel(ll)
|
||||||
# Format logs the same as bitcoind's debug.log with microprecision (so log files can be concatenated and sorted)
|
# Format logs the same as bitcoind's debug.log with microprecision (so log files can be concatenated and sorted)
|
||||||
formatter = logging.Formatter(fmt = '%(asctime)s.%(msecs)03d000 %(name)s (%(levelname)s): %(message)s', datefmt='%Y-%m-%d %H:%M:%S')
|
formatter = logging.Formatter(fmt='%(asctime)s.%(msecs)03d000 %(name)s (%(levelname)s): %(message)s', datefmt='%Y-%m-%d %H:%M:%S')
|
||||||
formatter.converter = time.gmtime
|
formatter.converter = time.gmtime
|
||||||
fh.setFormatter(formatter)
|
fh.setFormatter(formatter)
|
||||||
ch.setFormatter(formatter)
|
ch.setFormatter(formatter)
|
||||||
@ -299,9 +382,9 @@ class BitcoinTestFramework(object):
|
|||||||
args = [os.getenv("BITCOIND", "bitcoind"), "-server", "-keypool=1", "-datadir=" + datadir, "-discover=0"]
|
args = [os.getenv("BITCOIND", "bitcoind"), "-server", "-keypool=1", "-datadir=" + datadir, "-discover=0"]
|
||||||
if i > 0:
|
if i > 0:
|
||||||
args.append("-connect=127.0.0.1:" + str(p2p_port(0)))
|
args.append("-connect=127.0.0.1:" + str(p2p_port(0)))
|
||||||
bitcoind_processes[i] = subprocess.Popen(args)
|
self.bitcoind_processes[i] = subprocess.Popen(args)
|
||||||
self.log.debug("initialize_chain: bitcoind started, waiting for RPC to come up")
|
self.log.debug("initialize_chain: bitcoind started, waiting for RPC to come up")
|
||||||
wait_for_bitcoind_start(bitcoind_processes[i], datadir, i)
|
self._wait_for_bitcoind_start(self.bitcoind_processes[i], datadir, i)
|
||||||
self.log.debug("initialize_chain: RPC successfully started")
|
self.log.debug("initialize_chain: RPC successfully started")
|
||||||
|
|
||||||
self.nodes = []
|
self.nodes = []
|
||||||
@ -319,8 +402,8 @@ class BitcoinTestFramework(object):
|
|||||||
#
|
#
|
||||||
# blocks are created with timestamps 10 minutes apart
|
# blocks are created with timestamps 10 minutes apart
|
||||||
# starting from 2010 minutes in the past
|
# starting from 2010 minutes in the past
|
||||||
enable_mocktime()
|
self.enable_mocktime()
|
||||||
block_time = get_mocktime() - (201 * 10 * 60)
|
block_time = self.mocktime - (201 * 10 * 60)
|
||||||
for i in range(2):
|
for i in range(2):
|
||||||
for peer in range(4):
|
for peer in range(4):
|
||||||
for j in range(25):
|
for j in range(25):
|
||||||
@ -333,7 +416,7 @@ class BitcoinTestFramework(object):
|
|||||||
# Shut them down, and clean up cache directories:
|
# Shut them down, and clean up cache directories:
|
||||||
self.stop_nodes()
|
self.stop_nodes()
|
||||||
self.nodes = []
|
self.nodes = []
|
||||||
disable_mocktime()
|
self.disable_mocktime()
|
||||||
for i in range(MAX_NODES):
|
for i in range(MAX_NODES):
|
||||||
os.remove(log_filename(cachedir, i, "debug.log"))
|
os.remove(log_filename(cachedir, i, "debug.log"))
|
||||||
os.remove(log_filename(cachedir, i, "db.log"))
|
os.remove(log_filename(cachedir, i, "db.log"))
|
||||||
@ -354,18 +437,37 @@ class BitcoinTestFramework(object):
|
|||||||
for i in range(num_nodes):
|
for i in range(num_nodes):
|
||||||
initialize_datadir(test_dir, i)
|
initialize_datadir(test_dir, i)
|
||||||
|
|
||||||
# Test framework for doing p2p comparison testing, which sets up some bitcoind
|
def _wait_for_bitcoind_start(self, process, datadir, i, rpchost=None):
|
||||||
# binaries:
|
"""Wait for bitcoind to start.
|
||||||
# 1 binary: test binary
|
|
||||||
# 2 binaries: 1 test binary, 1 ref binary
|
|
||||||
# n>2 binaries: 1 test binary, n-1 ref binaries
|
|
||||||
|
|
||||||
class SkipTest(Exception):
|
This means that RPC is accessible and fully initialized.
|
||||||
"""This exception is raised to skip a test"""
|
Raise an exception if bitcoind exits during initialization."""
|
||||||
def __init__(self, message):
|
while True:
|
||||||
self.message = message
|
if process.poll() is not None:
|
||||||
|
raise Exception('bitcoind exited with status %i during initialization' % process.returncode)
|
||||||
|
try:
|
||||||
|
# Check if .cookie file to be created
|
||||||
|
rpc = get_rpc_proxy(rpc_url(datadir, i, rpchost), i, coveragedir=self.options.coveragedir)
|
||||||
|
rpc.getblockcount()
|
||||||
|
break # break out of loop on success
|
||||||
|
except IOError as e:
|
||||||
|
if e.errno != errno.ECONNREFUSED: # Port not yet open?
|
||||||
|
raise # unknown IO error
|
||||||
|
except JSONRPCException as e: # Initialization phase
|
||||||
|
if e.error['code'] != -28: # RPC in warmup?
|
||||||
|
raise # unknown JSON RPC exception
|
||||||
|
except ValueError as e: # cookie file not found and no rpcuser or rpcassword. bitcoind still starting
|
||||||
|
if "No RPC credentials" not in str(e):
|
||||||
|
raise
|
||||||
|
time.sleep(0.25)
|
||||||
|
|
||||||
class ComparisonTestFramework(BitcoinTestFramework):
|
class ComparisonTestFramework(BitcoinTestFramework):
|
||||||
|
"""Test framework for doing p2p comparison testing
|
||||||
|
|
||||||
|
Sets up some bitcoind binaries:
|
||||||
|
- 1 binary: test binary
|
||||||
|
- 2 binaries: 1 test binary, 1 ref binary
|
||||||
|
- n>2 binaries: 1 test binary, n-1 ref binaries"""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
@ -387,4 +489,9 @@ class ComparisonTestFramework(BitcoinTestFramework):
|
|||||||
self.nodes = self.start_nodes(
|
self.nodes = self.start_nodes(
|
||||||
self.num_nodes, self.options.tmpdir, extra_args,
|
self.num_nodes, self.options.tmpdir, extra_args,
|
||||||
binary=[self.options.testbinary] +
|
binary=[self.options.testbinary] +
|
||||||
[self.options.refbinary]*(self.num_nodes-1))
|
[self.options.refbinary] * (self.num_nodes - 1))
|
||||||
|
|
||||||
|
class SkipTest(Exception):
|
||||||
|
"""This exception is raised to skip a test"""
|
||||||
|
def __init__(self, message):
|
||||||
|
self.message = message
|
||||||
|
@ -4,30 +4,162 @@
|
|||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
"""Helpful routines for regression testing."""
|
"""Helpful routines for regression testing."""
|
||||||
|
|
||||||
import os
|
|
||||||
import sys
|
|
||||||
|
|
||||||
from binascii import hexlify, unhexlify
|
|
||||||
from base64 import b64encode
|
from base64 import b64encode
|
||||||
|
from binascii import hexlify, unhexlify
|
||||||
from decimal import Decimal, ROUND_DOWN
|
from decimal import Decimal, ROUND_DOWN
|
||||||
import json
|
import json
|
||||||
import http.client
|
|
||||||
import random
|
|
||||||
import shutil
|
|
||||||
import subprocess
|
|
||||||
import tempfile
|
|
||||||
import time
|
|
||||||
import re
|
|
||||||
import errno
|
|
||||||
import logging
|
import logging
|
||||||
|
import os
|
||||||
|
import random
|
||||||
|
import re
|
||||||
|
import time
|
||||||
|
|
||||||
from . import coverage
|
from . import coverage
|
||||||
from .authproxy import AuthServiceProxy, JSONRPCException
|
from .authproxy import AuthServiceProxy, JSONRPCException
|
||||||
|
|
||||||
COVERAGE_DIR = None
|
|
||||||
|
|
||||||
logger = logging.getLogger("TestFramework.utils")
|
logger = logging.getLogger("TestFramework.utils")
|
||||||
|
|
||||||
|
# Assert functions
|
||||||
|
##################
|
||||||
|
|
||||||
|
def assert_fee_amount(fee, tx_size, fee_per_kB):
|
||||||
|
"""Assert the fee was in range"""
|
||||||
|
target_fee = tx_size * fee_per_kB / 1000
|
||||||
|
if fee < target_fee:
|
||||||
|
raise AssertionError("Fee of %s BTC too low! (Should be %s BTC)" % (str(fee), str(target_fee)))
|
||||||
|
# allow the wallet's estimation to be at most 2 bytes off
|
||||||
|
if fee > (tx_size + 2) * fee_per_kB / 1000:
|
||||||
|
raise AssertionError("Fee of %s BTC too high! (Should be %s BTC)" % (str(fee), str(target_fee)))
|
||||||
|
|
||||||
|
def assert_equal(thing1, thing2, *args):
|
||||||
|
if thing1 != thing2 or any(thing1 != arg for arg in args):
|
||||||
|
raise AssertionError("not(%s)" % " == ".join(str(arg) for arg in (thing1, thing2) + args))
|
||||||
|
|
||||||
|
def assert_greater_than(thing1, thing2):
|
||||||
|
if thing1 <= thing2:
|
||||||
|
raise AssertionError("%s <= %s" % (str(thing1), str(thing2)))
|
||||||
|
|
||||||
|
def assert_greater_than_or_equal(thing1, thing2):
|
||||||
|
if thing1 < thing2:
|
||||||
|
raise AssertionError("%s < %s" % (str(thing1), str(thing2)))
|
||||||
|
|
||||||
|
def assert_raises(exc, fun, *args, **kwds):
|
||||||
|
assert_raises_message(exc, None, fun, *args, **kwds)
|
||||||
|
|
||||||
|
def assert_raises_message(exc, message, fun, *args, **kwds):
|
||||||
|
try:
|
||||||
|
fun(*args, **kwds)
|
||||||
|
except exc as e:
|
||||||
|
if message is not None and message not in e.error['message']:
|
||||||
|
raise AssertionError("Expected substring not found:" + e.error['message'])
|
||||||
|
except Exception as e:
|
||||||
|
raise AssertionError("Unexpected exception raised: " + type(e).__name__)
|
||||||
|
else:
|
||||||
|
raise AssertionError("No exception raised")
|
||||||
|
|
||||||
|
def assert_raises_jsonrpc(code, message, fun, *args, **kwds):
|
||||||
|
"""Run an RPC and verify that a specific JSONRPC exception code and message is raised.
|
||||||
|
|
||||||
|
Calls function `fun` with arguments `args` and `kwds`. Catches a JSONRPCException
|
||||||
|
and verifies that the error code and message are as expected. Throws AssertionError if
|
||||||
|
no JSONRPCException was returned or if the error code/message are not as expected.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
code (int), optional: the error code returned by the RPC call (defined
|
||||||
|
in src/rpc/protocol.h). Set to None if checking the error code is not required.
|
||||||
|
message (string), optional: [a substring of] the error string returned by the
|
||||||
|
RPC call. Set to None if checking the error string is not required
|
||||||
|
fun (function): the function to call. This should be the name of an RPC.
|
||||||
|
args*: positional arguments for the function.
|
||||||
|
kwds**: named arguments for the function.
|
||||||
|
"""
|
||||||
|
try:
|
||||||
|
fun(*args, **kwds)
|
||||||
|
except JSONRPCException as e:
|
||||||
|
# JSONRPCException was thrown as expected. Check the code and message values are correct.
|
||||||
|
if (code is not None) and (code != e.error["code"]):
|
||||||
|
raise AssertionError("Unexpected JSONRPC error code %i" % e.error["code"])
|
||||||
|
if (message is not None) and (message not in e.error['message']):
|
||||||
|
raise AssertionError("Expected substring not found:" + e.error['message'])
|
||||||
|
except Exception as e:
|
||||||
|
raise AssertionError("Unexpected exception raised: " + type(e).__name__)
|
||||||
|
else:
|
||||||
|
raise AssertionError("No exception raised")
|
||||||
|
|
||||||
|
def assert_is_hex_string(string):
|
||||||
|
try:
|
||||||
|
int(string, 16)
|
||||||
|
except Exception as e:
|
||||||
|
raise AssertionError(
|
||||||
|
"Couldn't interpret %r as hexadecimal; raised: %s" % (string, e))
|
||||||
|
|
||||||
|
def assert_is_hash_string(string, length=64):
|
||||||
|
if not isinstance(string, str):
|
||||||
|
raise AssertionError("Expected a string, got type %r" % type(string))
|
||||||
|
elif length and len(string) != length:
|
||||||
|
raise AssertionError(
|
||||||
|
"String of length %d expected; got %d" % (length, len(string)))
|
||||||
|
elif not re.match('[abcdef0-9]+$', string):
|
||||||
|
raise AssertionError(
|
||||||
|
"String %r contains invalid characters for a hash." % string)
|
||||||
|
|
||||||
|
def assert_array_result(object_array, to_match, expected, should_not_find=False):
|
||||||
|
"""
|
||||||
|
Pass in array of JSON objects, a dictionary with key/value pairs
|
||||||
|
to match against, and another dictionary with expected key/value
|
||||||
|
pairs.
|
||||||
|
If the should_not_find flag is true, to_match should not be found
|
||||||
|
in object_array
|
||||||
|
"""
|
||||||
|
if should_not_find:
|
||||||
|
assert_equal(expected, {})
|
||||||
|
num_matched = 0
|
||||||
|
for item in object_array:
|
||||||
|
all_match = True
|
||||||
|
for key, value in to_match.items():
|
||||||
|
if item[key] != value:
|
||||||
|
all_match = False
|
||||||
|
if not all_match:
|
||||||
|
continue
|
||||||
|
elif should_not_find:
|
||||||
|
num_matched = num_matched + 1
|
||||||
|
for key, value in expected.items():
|
||||||
|
if item[key] != value:
|
||||||
|
raise AssertionError("%s : expected %s=%s" % (str(item), str(key), str(value)))
|
||||||
|
num_matched = num_matched + 1
|
||||||
|
if num_matched == 0 and not should_not_find:
|
||||||
|
raise AssertionError("No objects matched %s" % (str(to_match)))
|
||||||
|
if num_matched > 0 and should_not_find:
|
||||||
|
raise AssertionError("Objects were found %s" % (str(to_match)))
|
||||||
|
|
||||||
|
# Utility functions
|
||||||
|
###################
|
||||||
|
|
||||||
|
def check_json_precision():
|
||||||
|
"""Make sure json library being used does not lose precision converting BTC values"""
|
||||||
|
n = Decimal("20000000.00000003")
|
||||||
|
satoshis = int(json.loads(json.dumps(float(n))) * 1.0e8)
|
||||||
|
if satoshis != 2000000000000003:
|
||||||
|
raise RuntimeError("JSON encode/decode loses precision")
|
||||||
|
|
||||||
|
def count_bytes(hex_string):
|
||||||
|
return len(bytearray.fromhex(hex_string))
|
||||||
|
|
||||||
|
def bytes_to_hex_str(byte_str):
|
||||||
|
return hexlify(byte_str).decode('ascii')
|
||||||
|
|
||||||
|
def hex_str_to_bytes(hex_str):
|
||||||
|
return unhexlify(hex_str.encode('ascii'))
|
||||||
|
|
||||||
|
def str_to_b64str(string):
|
||||||
|
return b64encode(string.encode('utf-8')).decode('ascii')
|
||||||
|
|
||||||
|
def satoshi_round(amount):
|
||||||
|
return Decimal(amount).quantize(Decimal('0.00000001'), rounding=ROUND_DOWN)
|
||||||
|
|
||||||
|
# RPC/P2P connection constants and functions
|
||||||
|
############################################
|
||||||
|
|
||||||
# The maximum number of nodes a single test can spawn
|
# The maximum number of nodes a single test can spawn
|
||||||
MAX_NODES = 8
|
MAX_NODES = 8
|
||||||
# Don't assign rpc or p2p ports lower than this
|
# Don't assign rpc or p2p ports lower than this
|
||||||
@ -35,41 +167,11 @@ PORT_MIN = 11000
|
|||||||
# The number of ports to "reserve" for p2p and rpc, each
|
# The number of ports to "reserve" for p2p and rpc, each
|
||||||
PORT_RANGE = 5000
|
PORT_RANGE = 5000
|
||||||
|
|
||||||
BITCOIND_PROC_WAIT_TIMEOUT = 60
|
|
||||||
|
|
||||||
|
|
||||||
class PortSeed:
|
class PortSeed:
|
||||||
# Must be initialized with a unique integer for each process
|
# Must be initialized with a unique integer for each process
|
||||||
n = None
|
n = None
|
||||||
|
|
||||||
#Set Mocktime default to OFF.
|
def get_rpc_proxy(url, node_number, timeout=None, coveragedir=None):
|
||||||
#MOCKTIME is only needed for scripts that use the
|
|
||||||
#cached version of the blockchain. If the cached
|
|
||||||
#version of the blockchain is used without MOCKTIME
|
|
||||||
#then the mempools will not sync due to IBD.
|
|
||||||
MOCKTIME = 0
|
|
||||||
|
|
||||||
def enable_mocktime():
|
|
||||||
#For backwared compatibility of the python scripts
|
|
||||||
#with previous versions of the cache, set MOCKTIME
|
|
||||||
#to Jan 1, 2014 + (201 * 10 * 60)
|
|
||||||
global MOCKTIME
|
|
||||||
MOCKTIME = 1388534400 + (201 * 10 * 60)
|
|
||||||
|
|
||||||
def disable_mocktime():
|
|
||||||
global MOCKTIME
|
|
||||||
MOCKTIME = 0
|
|
||||||
|
|
||||||
def get_mocktime():
|
|
||||||
return MOCKTIME
|
|
||||||
|
|
||||||
def enable_coverage(dirname):
|
|
||||||
"""Maintain a log of which RPC calls are made during testing."""
|
|
||||||
global COVERAGE_DIR
|
|
||||||
COVERAGE_DIR = dirname
|
|
||||||
|
|
||||||
|
|
||||||
def get_rpc_proxy(url, node_number, timeout=None):
|
|
||||||
"""
|
"""
|
||||||
Args:
|
Args:
|
||||||
url (str): URL of the RPC server to call
|
url (str): URL of the RPC server to call
|
||||||
@ -90,11 +192,10 @@ def get_rpc_proxy(url, node_number, timeout=None):
|
|||||||
proxy.url = url # store URL on proxy for info
|
proxy.url = url # store URL on proxy for info
|
||||||
|
|
||||||
coverage_logfile = coverage.get_filename(
|
coverage_logfile = coverage.get_filename(
|
||||||
COVERAGE_DIR, node_number) if COVERAGE_DIR else None
|
coveragedir, node_number) if coveragedir else None
|
||||||
|
|
||||||
return coverage.AuthServiceProxyWrapper(proxy, coverage_logfile)
|
return coverage.AuthServiceProxyWrapper(proxy, coverage_logfile)
|
||||||
|
|
||||||
|
|
||||||
def p2p_port(n):
|
def p2p_port(n):
|
||||||
assert(n <= MAX_NODES)
|
assert(n <= MAX_NODES)
|
||||||
return PORT_MIN + n + (MAX_NODES * PortSeed.n) % (PORT_RANGE - 1 - MAX_NODES)
|
return PORT_MIN + n + (MAX_NODES * PortSeed.n) % (PORT_RANGE - 1 - MAX_NODES)
|
||||||
@ -102,24 +203,90 @@ def p2p_port(n):
|
|||||||
def rpc_port(n):
|
def rpc_port(n):
|
||||||
return PORT_MIN + PORT_RANGE + n + (MAX_NODES * PortSeed.n) % (PORT_RANGE - 1 - MAX_NODES)
|
return PORT_MIN + PORT_RANGE + n + (MAX_NODES * PortSeed.n) % (PORT_RANGE - 1 - MAX_NODES)
|
||||||
|
|
||||||
def check_json_precision():
|
def rpc_url(datadir, i, rpchost=None):
|
||||||
"""Make sure json library being used does not lose precision converting BTC values"""
|
rpc_u, rpc_p = get_auth_cookie(datadir, i)
|
||||||
n = Decimal("20000000.00000003")
|
host = '127.0.0.1'
|
||||||
satoshis = int(json.loads(json.dumps(float(n)))*1.0e8)
|
port = rpc_port(i)
|
||||||
if satoshis != 2000000000000003:
|
if rpchost:
|
||||||
raise RuntimeError("JSON encode/decode loses precision")
|
parts = rpchost.split(':')
|
||||||
|
if len(parts) == 2:
|
||||||
|
host, port = parts
|
||||||
|
else:
|
||||||
|
host = rpchost
|
||||||
|
return "http://%s:%s@%s:%d" % (rpc_u, rpc_p, host, int(port))
|
||||||
|
|
||||||
def count_bytes(hex_string):
|
# Node functions
|
||||||
return len(bytearray.fromhex(hex_string))
|
################
|
||||||
|
|
||||||
def bytes_to_hex_str(byte_str):
|
def initialize_datadir(dirname, n):
|
||||||
return hexlify(byte_str).decode('ascii')
|
datadir = os.path.join(dirname, "node" + str(n))
|
||||||
|
if not os.path.isdir(datadir):
|
||||||
|
os.makedirs(datadir)
|
||||||
|
with open(os.path.join(datadir, "bitcoin.conf"), 'w', encoding='utf8') as f:
|
||||||
|
f.write("regtest=1\n")
|
||||||
|
f.write("port=" + str(p2p_port(n)) + "\n")
|
||||||
|
f.write("rpcport=" + str(rpc_port(n)) + "\n")
|
||||||
|
f.write("listenonion=0\n")
|
||||||
|
return datadir
|
||||||
|
|
||||||
def hex_str_to_bytes(hex_str):
|
def get_datadir_path(dirname, n):
|
||||||
return unhexlify(hex_str.encode('ascii'))
|
return os.path.join(dirname, "node" + str(n))
|
||||||
|
|
||||||
def str_to_b64str(string):
|
def get_auth_cookie(datadir, n):
|
||||||
return b64encode(string.encode('utf-8')).decode('ascii')
|
user = None
|
||||||
|
password = None
|
||||||
|
if os.path.isfile(os.path.join(datadir, "bitcoin.conf")):
|
||||||
|
with open(os.path.join(datadir, "bitcoin.conf"), 'r') as f:
|
||||||
|
for line in f:
|
||||||
|
if line.startswith("rpcuser="):
|
||||||
|
assert user is None # Ensure that there is only one rpcuser line
|
||||||
|
user = line.split("=")[1].strip("\n")
|
||||||
|
if line.startswith("rpcpassword="):
|
||||||
|
assert password is None # Ensure that there is only one rpcpassword line
|
||||||
|
password = line.split("=")[1].strip("\n")
|
||||||
|
if os.path.isfile(os.path.join(datadir, "regtest", ".cookie")):
|
||||||
|
with open(os.path.join(datadir, "regtest", ".cookie"), 'r') as f:
|
||||||
|
userpass = f.read()
|
||||||
|
split_userpass = userpass.split(':')
|
||||||
|
user = split_userpass[0]
|
||||||
|
password = split_userpass[1]
|
||||||
|
if user is None or password is None:
|
||||||
|
raise ValueError("No RPC credentials")
|
||||||
|
return user, password
|
||||||
|
|
||||||
|
def log_filename(dirname, n_node, logname):
|
||||||
|
return os.path.join(dirname, "node" + str(n_node), "regtest", logname)
|
||||||
|
|
||||||
|
def get_bip9_status(node, key):
|
||||||
|
info = node.getblockchaininfo()
|
||||||
|
return info['bip9_softforks'][key]
|
||||||
|
|
||||||
|
def set_node_times(nodes, t):
|
||||||
|
for node in nodes:
|
||||||
|
node.setmocktime(t)
|
||||||
|
|
||||||
|
def disconnect_nodes(from_connection, node_num):
|
||||||
|
for peer_id in [peer['id'] for peer in from_connection.getpeerinfo() if "testnode%d" % node_num in peer['subver']]:
|
||||||
|
from_connection.disconnectnode(nodeid=peer_id)
|
||||||
|
|
||||||
|
for _ in range(50):
|
||||||
|
if [peer['id'] for peer in from_connection.getpeerinfo() if "testnode%d" % node_num in peer['subver']] == []:
|
||||||
|
break
|
||||||
|
time.sleep(0.1)
|
||||||
|
else:
|
||||||
|
raise AssertionError("timed out waiting for disconnect")
|
||||||
|
|
||||||
|
def connect_nodes(from_connection, node_num):
|
||||||
|
ip_port = "127.0.0.1:" + str(p2p_port(node_num))
|
||||||
|
from_connection.addnode(ip_port, "onetry")
|
||||||
|
# poll until version handshake complete to avoid race conditions
|
||||||
|
# with transaction relaying
|
||||||
|
while any(peer['version'] == 0 for peer in from_connection.getpeerinfo()):
|
||||||
|
time.sleep(0.1)
|
||||||
|
|
||||||
|
def connect_nodes_bi(nodes, a, b):
|
||||||
|
connect_nodes(nodes[a], b)
|
||||||
|
connect_nodes(nodes[b], a)
|
||||||
|
|
||||||
def sync_blocks(rpc_connections, *, wait=1, timeout=60):
|
def sync_blocks(rpc_connections, *, wait=1, timeout=60):
|
||||||
"""
|
"""
|
||||||
@ -152,7 +319,7 @@ def sync_chain(rpc_connections, *, wait=1, timeout=60):
|
|||||||
"""
|
"""
|
||||||
while timeout > 0:
|
while timeout > 0:
|
||||||
best_hash = [x.getbestblockhash() for x in rpc_connections]
|
best_hash = [x.getbestblockhash() for x in rpc_connections]
|
||||||
if best_hash == [best_hash[0]]*len(best_hash):
|
if best_hash == [best_hash[0]] * len(best_hash):
|
||||||
return
|
return
|
||||||
time.sleep(wait)
|
time.sleep(wait)
|
||||||
timeout -= wait
|
timeout -= wait
|
||||||
@ -168,200 +335,15 @@ def sync_mempools(rpc_connections, *, wait=1, timeout=60):
|
|||||||
num_match = 1
|
num_match = 1
|
||||||
for i in range(1, len(rpc_connections)):
|
for i in range(1, len(rpc_connections)):
|
||||||
if set(rpc_connections[i].getrawmempool()) == pool:
|
if set(rpc_connections[i].getrawmempool()) == pool:
|
||||||
num_match = num_match+1
|
num_match = num_match + 1
|
||||||
if num_match == len(rpc_connections):
|
if num_match == len(rpc_connections):
|
||||||
return
|
return
|
||||||
time.sleep(wait)
|
time.sleep(wait)
|
||||||
timeout -= wait
|
timeout -= wait
|
||||||
raise AssertionError("Mempool sync failed")
|
raise AssertionError("Mempool sync failed")
|
||||||
|
|
||||||
bitcoind_processes = {}
|
# Transaction/Block functions
|
||||||
|
#############################
|
||||||
def initialize_datadir(dirname, n):
|
|
||||||
datadir = os.path.join(dirname, "node"+str(n))
|
|
||||||
if not os.path.isdir(datadir):
|
|
||||||
os.makedirs(datadir)
|
|
||||||
with open(os.path.join(datadir, "bitcoin.conf"), 'w', encoding='utf8') as f:
|
|
||||||
f.write("regtest=1\n")
|
|
||||||
f.write("port="+str(p2p_port(n))+"\n")
|
|
||||||
f.write("rpcport="+str(rpc_port(n))+"\n")
|
|
||||||
f.write("listenonion=0\n")
|
|
||||||
return datadir
|
|
||||||
|
|
||||||
def get_datadir_path(dirname, n):
|
|
||||||
return os.path.join(dirname, "node"+str(n))
|
|
||||||
|
|
||||||
def get_auth_cookie(datadir, n):
|
|
||||||
user = None
|
|
||||||
password = None
|
|
||||||
if os.path.isfile(os.path.join(datadir, "bitcoin.conf")):
|
|
||||||
with open(os.path.join(datadir, "bitcoin.conf"), 'r') as f:
|
|
||||||
for line in f:
|
|
||||||
if line.startswith("rpcuser="):
|
|
||||||
assert user is None # Ensure that there is only one rpcuser line
|
|
||||||
user = line.split("=")[1].strip("\n")
|
|
||||||
if line.startswith("rpcpassword="):
|
|
||||||
assert password is None # Ensure that there is only one rpcpassword line
|
|
||||||
password = line.split("=")[1].strip("\n")
|
|
||||||
if os.path.isfile(os.path.join(datadir, "regtest", ".cookie")):
|
|
||||||
with open(os.path.join(datadir, "regtest", ".cookie"), 'r') as f:
|
|
||||||
userpass = f.read()
|
|
||||||
split_userpass = userpass.split(':')
|
|
||||||
user = split_userpass[0]
|
|
||||||
password = split_userpass[1]
|
|
||||||
if user is None or password is None:
|
|
||||||
raise ValueError("No RPC credentials")
|
|
||||||
return user, password
|
|
||||||
|
|
||||||
def rpc_url(datadir, i, rpchost=None):
|
|
||||||
rpc_u, rpc_p = get_auth_cookie(datadir, i)
|
|
||||||
host = '127.0.0.1'
|
|
||||||
port = rpc_port(i)
|
|
||||||
if rpchost:
|
|
||||||
parts = rpchost.split(':')
|
|
||||||
if len(parts) == 2:
|
|
||||||
host, port = parts
|
|
||||||
else:
|
|
||||||
host = rpchost
|
|
||||||
return "http://%s:%s@%s:%d" % (rpc_u, rpc_p, host, int(port))
|
|
||||||
|
|
||||||
def wait_for_bitcoind_start(process, datadir, i, rpchost=None):
|
|
||||||
'''
|
|
||||||
Wait for bitcoind to start. This means that RPC is accessible and fully initialized.
|
|
||||||
Raise an exception if bitcoind exits during initialization.
|
|
||||||
'''
|
|
||||||
while True:
|
|
||||||
if process.poll() is not None:
|
|
||||||
raise Exception('bitcoind exited with status %i during initialization' % process.returncode)
|
|
||||||
try:
|
|
||||||
# Check if .cookie file to be created
|
|
||||||
rpc = get_rpc_proxy(rpc_url(datadir, i, rpchost), i)
|
|
||||||
blocks = rpc.getblockcount()
|
|
||||||
break # break out of loop on success
|
|
||||||
except IOError as e:
|
|
||||||
if e.errno != errno.ECONNREFUSED: # Port not yet open?
|
|
||||||
raise # unknown IO error
|
|
||||||
except JSONRPCException as e: # Initialization phase
|
|
||||||
if e.error['code'] != -28: # RPC in warmup?
|
|
||||||
raise # unknown JSON RPC exception
|
|
||||||
except ValueError as e: # cookie file not found and no rpcuser or rpcassword. bitcoind still starting
|
|
||||||
if "No RPC credentials" not in str(e):
|
|
||||||
raise
|
|
||||||
time.sleep(0.25)
|
|
||||||
|
|
||||||
def wait_for_node_exit(node_index, timeout):
|
|
||||||
bitcoind_processes[node_index].wait(timeout)
|
|
||||||
|
|
||||||
def _start_node(i, dirname, extra_args=None, rpchost=None, timewait=None, binary=None, stderr=None):
|
|
||||||
"""Start a bitcoind and return RPC connection to it
|
|
||||||
|
|
||||||
This function should only be called from within test_framework, not by individual test scripts."""
|
|
||||||
|
|
||||||
datadir = os.path.join(dirname, "node"+str(i))
|
|
||||||
if binary is None:
|
|
||||||
binary = os.getenv("BITCOIND", "bitcoind")
|
|
||||||
args = [binary, "-datadir=" + datadir, "-server", "-keypool=1", "-discover=0", "-rest", "-logtimemicros", "-debug", "-debugexclude=libevent", "-debugexclude=leveldb", "-mocktime=" + str(get_mocktime()), "-uacomment=testnode%d" % i]
|
|
||||||
if extra_args is not None: args.extend(extra_args)
|
|
||||||
bitcoind_processes[i] = subprocess.Popen(args, stderr=stderr)
|
|
||||||
logger.debug("initialize_chain: bitcoind started, waiting for RPC to come up")
|
|
||||||
wait_for_bitcoind_start(bitcoind_processes[i], datadir, i, rpchost)
|
|
||||||
logger.debug("initialize_chain: RPC successfully started")
|
|
||||||
proxy = get_rpc_proxy(rpc_url(datadir, i, rpchost), i, timeout=timewait)
|
|
||||||
|
|
||||||
if COVERAGE_DIR:
|
|
||||||
coverage.write_all_rpc_commands(COVERAGE_DIR, proxy)
|
|
||||||
|
|
||||||
return proxy
|
|
||||||
|
|
||||||
def assert_start_raises_init_error(i, dirname, extra_args=None, expected_msg=None):
|
|
||||||
with tempfile.SpooledTemporaryFile(max_size=2**16) as log_stderr:
|
|
||||||
try:
|
|
||||||
node = _start_node(i, dirname, extra_args, stderr=log_stderr)
|
|
||||||
_stop_node(node, i)
|
|
||||||
except Exception as e:
|
|
||||||
assert 'bitcoind exited' in str(e) #node must have shutdown
|
|
||||||
if expected_msg is not None:
|
|
||||||
log_stderr.seek(0)
|
|
||||||
stderr = log_stderr.read().decode('utf-8')
|
|
||||||
if expected_msg not in stderr:
|
|
||||||
raise AssertionError("Expected error \"" + expected_msg + "\" not found in:\n" + stderr)
|
|
||||||
else:
|
|
||||||
if expected_msg is None:
|
|
||||||
assert_msg = "bitcoind should have exited with an error"
|
|
||||||
else:
|
|
||||||
assert_msg = "bitcoind should have exited with expected error " + expected_msg
|
|
||||||
raise AssertionError(assert_msg)
|
|
||||||
|
|
||||||
def _start_nodes(num_nodes, dirname, extra_args=None, rpchost=None, timewait=None, binary=None):
|
|
||||||
"""Start multiple bitcoinds, return RPC connections to them
|
|
||||||
|
|
||||||
This function should only be called from within test_framework, not by individual test scripts."""
|
|
||||||
|
|
||||||
if extra_args is None: extra_args = [ None for _ in range(num_nodes) ]
|
|
||||||
if binary is None: binary = [ None for _ in range(num_nodes) ]
|
|
||||||
assert_equal(len(extra_args), num_nodes)
|
|
||||||
assert_equal(len(binary), num_nodes)
|
|
||||||
rpcs = []
|
|
||||||
try:
|
|
||||||
for i in range(num_nodes):
|
|
||||||
rpcs.append(_start_node(i, dirname, extra_args[i], rpchost, timewait=timewait, binary=binary[i]))
|
|
||||||
except: # If one node failed to start, stop the others
|
|
||||||
_stop_nodes(rpcs)
|
|
||||||
raise
|
|
||||||
return rpcs
|
|
||||||
|
|
||||||
def log_filename(dirname, n_node, logname):
|
|
||||||
return os.path.join(dirname, "node"+str(n_node), "regtest", logname)
|
|
||||||
|
|
||||||
def _stop_node(node, i):
|
|
||||||
"""Stop a bitcoind test node
|
|
||||||
|
|
||||||
This function should only be called from within test_framework, not by individual test scripts."""
|
|
||||||
|
|
||||||
logger.debug("Stopping node %d" % i)
|
|
||||||
try:
|
|
||||||
node.stop()
|
|
||||||
except http.client.CannotSendRequest as e:
|
|
||||||
logger.exception("Unable to stop node")
|
|
||||||
return_code = bitcoind_processes[i].wait(timeout=BITCOIND_PROC_WAIT_TIMEOUT)
|
|
||||||
del bitcoind_processes[i]
|
|
||||||
assert_equal(return_code, 0)
|
|
||||||
|
|
||||||
def _stop_nodes(nodes):
|
|
||||||
"""Stop multiple bitcoind test nodes
|
|
||||||
|
|
||||||
This function should only be called from within test_framework, not by individual test scripts."""
|
|
||||||
|
|
||||||
for i, node in enumerate(nodes):
|
|
||||||
_stop_node(node, i)
|
|
||||||
assert not bitcoind_processes.values() # All connections must be gone now
|
|
||||||
|
|
||||||
def set_node_times(nodes, t):
|
|
||||||
for node in nodes:
|
|
||||||
node.setmocktime(t)
|
|
||||||
|
|
||||||
def disconnect_nodes(from_connection, node_num):
|
|
||||||
for peer_id in [peer['id'] for peer in from_connection.getpeerinfo() if "testnode%d" % node_num in peer['subver']]:
|
|
||||||
from_connection.disconnectnode(nodeid=peer_id)
|
|
||||||
|
|
||||||
for _ in range(50):
|
|
||||||
if [peer['id'] for peer in from_connection.getpeerinfo() if "testnode%d" % node_num in peer['subver']] == []:
|
|
||||||
break
|
|
||||||
time.sleep(0.1)
|
|
||||||
else:
|
|
||||||
raise AssertionError("timed out waiting for disconnect")
|
|
||||||
|
|
||||||
def connect_nodes(from_connection, node_num):
|
|
||||||
ip_port = "127.0.0.1:"+str(p2p_port(node_num))
|
|
||||||
from_connection.addnode(ip_port, "onetry")
|
|
||||||
# poll until version handshake complete to avoid race conditions
|
|
||||||
# with transaction relaying
|
|
||||||
while any(peer['version'] == 0 for peer in from_connection.getpeerinfo()):
|
|
||||||
time.sleep(0.1)
|
|
||||||
|
|
||||||
def connect_nodes_bi(nodes, a, b):
|
|
||||||
connect_nodes(nodes[a], b)
|
|
||||||
connect_nodes(nodes[b], a)
|
|
||||||
|
|
||||||
def find_output(node, txid, amount):
|
def find_output(node, txid, amount):
|
||||||
"""
|
"""
|
||||||
@ -372,14 +354,13 @@ def find_output(node, txid, amount):
|
|||||||
for i in range(len(txdata["vout"])):
|
for i in range(len(txdata["vout"])):
|
||||||
if txdata["vout"][i]["value"] == amount:
|
if txdata["vout"][i]["value"] == amount:
|
||||||
return i
|
return i
|
||||||
raise RuntimeError("find_output txid %s : %s not found"%(txid,str(amount)))
|
raise RuntimeError("find_output txid %s : %s not found" % (txid, str(amount)))
|
||||||
|
|
||||||
|
|
||||||
def gather_inputs(from_node, amount_needed, confirmations_required=1):
|
def gather_inputs(from_node, amount_needed, confirmations_required=1):
|
||||||
"""
|
"""
|
||||||
Return a random set of unspent txouts that are enough to pay amount_needed
|
Return a random set of unspent txouts that are enough to pay amount_needed
|
||||||
"""
|
"""
|
||||||
assert(confirmations_required >=0)
|
assert(confirmations_required >= 0)
|
||||||
utxo = from_node.listunspent(confirmations_required)
|
utxo = from_node.listunspent(confirmations_required)
|
||||||
random.shuffle(utxo)
|
random.shuffle(utxo)
|
||||||
inputs = []
|
inputs = []
|
||||||
@ -387,9 +368,9 @@ def gather_inputs(from_node, amount_needed, confirmations_required=1):
|
|||||||
while total_in < amount_needed and len(utxo) > 0:
|
while total_in < amount_needed and len(utxo) > 0:
|
||||||
t = utxo.pop()
|
t = utxo.pop()
|
||||||
total_in += t["amount"]
|
total_in += t["amount"]
|
||||||
inputs.append({ "txid" : t["txid"], "vout" : t["vout"], "address" : t["address"] } )
|
inputs.append({"txid": t["txid"], "vout": t["vout"], "address": t["address"]})
|
||||||
if total_in < amount_needed:
|
if total_in < amount_needed:
|
||||||
raise RuntimeError("Insufficient funds: need %d, have %d"%(amount_needed, total_in))
|
raise RuntimeError("Insufficient funds: need %d, have %d" % (amount_needed, total_in))
|
||||||
return (total_in, inputs)
|
return (total_in, inputs)
|
||||||
|
|
||||||
def make_change(from_node, amount_in, amount_out, fee):
|
def make_change(from_node, amount_in, amount_out, fee):
|
||||||
@ -397,13 +378,13 @@ def make_change(from_node, amount_in, amount_out, fee):
|
|||||||
Create change output(s), return them
|
Create change output(s), return them
|
||||||
"""
|
"""
|
||||||
outputs = {}
|
outputs = {}
|
||||||
amount = amount_out+fee
|
amount = amount_out + fee
|
||||||
change = amount_in - amount
|
change = amount_in - amount
|
||||||
if change > amount*2:
|
if change > amount * 2:
|
||||||
# Create an extra change output to break up big inputs
|
# Create an extra change output to break up big inputs
|
||||||
change_address = from_node.getnewaddress()
|
change_address = from_node.getnewaddress()
|
||||||
# Split change in two, being careful of rounding:
|
# Split change in two, being careful of rounding:
|
||||||
outputs[change_address] = Decimal(change/2).quantize(Decimal('0.00000001'), rounding=ROUND_DOWN)
|
outputs[change_address] = Decimal(change / 2).quantize(Decimal('0.00000001'), rounding=ROUND_DOWN)
|
||||||
change = amount_in - amount - outputs[change_address]
|
change = amount_in - amount - outputs[change_address]
|
||||||
if change > 0:
|
if change > 0:
|
||||||
outputs[from_node.getnewaddress()] = change
|
outputs[from_node.getnewaddress()] = change
|
||||||
@ -416,9 +397,9 @@ def random_transaction(nodes, amount, min_fee, fee_increment, fee_variants):
|
|||||||
"""
|
"""
|
||||||
from_node = random.choice(nodes)
|
from_node = random.choice(nodes)
|
||||||
to_node = random.choice(nodes)
|
to_node = random.choice(nodes)
|
||||||
fee = min_fee + fee_increment*random.randint(0,fee_variants)
|
fee = min_fee + fee_increment * random.randint(0, fee_variants)
|
||||||
|
|
||||||
(total_in, inputs) = gather_inputs(from_node, amount+fee)
|
(total_in, inputs) = gather_inputs(from_node, amount + fee)
|
||||||
outputs = make_change(from_node, total_in, amount, fee)
|
outputs = make_change(from_node, total_in, amount, fee)
|
||||||
outputs[to_node.getnewaddress()] = float(amount)
|
outputs[to_node.getnewaddress()] = float(amount)
|
||||||
|
|
||||||
@ -428,123 +409,10 @@ def random_transaction(nodes, amount, min_fee, fee_increment, fee_variants):
|
|||||||
|
|
||||||
return (txid, signresult["hex"], fee)
|
return (txid, signresult["hex"], fee)
|
||||||
|
|
||||||
def assert_fee_amount(fee, tx_size, fee_per_kB):
|
|
||||||
"""Assert the fee was in range"""
|
|
||||||
target_fee = tx_size * fee_per_kB / 1000
|
|
||||||
if fee < target_fee:
|
|
||||||
raise AssertionError("Fee of %s BTC too low! (Should be %s BTC)"%(str(fee), str(target_fee)))
|
|
||||||
# allow the wallet's estimation to be at most 2 bytes off
|
|
||||||
if fee > (tx_size + 2) * fee_per_kB / 1000:
|
|
||||||
raise AssertionError("Fee of %s BTC too high! (Should be %s BTC)"%(str(fee), str(target_fee)))
|
|
||||||
|
|
||||||
def assert_equal(thing1, thing2, *args):
|
|
||||||
if thing1 != thing2 or any(thing1 != arg for arg in args):
|
|
||||||
raise AssertionError("not(%s)" % " == ".join(str(arg) for arg in (thing1, thing2) + args))
|
|
||||||
|
|
||||||
def assert_greater_than(thing1, thing2):
|
|
||||||
if thing1 <= thing2:
|
|
||||||
raise AssertionError("%s <= %s"%(str(thing1),str(thing2)))
|
|
||||||
|
|
||||||
def assert_greater_than_or_equal(thing1, thing2):
|
|
||||||
if thing1 < thing2:
|
|
||||||
raise AssertionError("%s < %s"%(str(thing1),str(thing2)))
|
|
||||||
|
|
||||||
def assert_raises(exc, fun, *args, **kwds):
|
|
||||||
assert_raises_message(exc, None, fun, *args, **kwds)
|
|
||||||
|
|
||||||
def assert_raises_message(exc, message, fun, *args, **kwds):
|
|
||||||
try:
|
|
||||||
fun(*args, **kwds)
|
|
||||||
except exc as e:
|
|
||||||
if message is not None and message not in e.error['message']:
|
|
||||||
raise AssertionError("Expected substring not found:"+e.error['message'])
|
|
||||||
except Exception as e:
|
|
||||||
raise AssertionError("Unexpected exception raised: "+type(e).__name__)
|
|
||||||
else:
|
|
||||||
raise AssertionError("No exception raised")
|
|
||||||
|
|
||||||
def assert_raises_jsonrpc(code, message, fun, *args, **kwds):
|
|
||||||
"""Run an RPC and verify that a specific JSONRPC exception code and message is raised.
|
|
||||||
|
|
||||||
Calls function `fun` with arguments `args` and `kwds`. Catches a JSONRPCException
|
|
||||||
and verifies that the error code and message are as expected. Throws AssertionError if
|
|
||||||
no JSONRPCException was returned or if the error code/message are not as expected.
|
|
||||||
|
|
||||||
Args:
|
|
||||||
code (int), optional: the error code returned by the RPC call (defined
|
|
||||||
in src/rpc/protocol.h). Set to None if checking the error code is not required.
|
|
||||||
message (string), optional: [a substring of] the error string returned by the
|
|
||||||
RPC call. Set to None if checking the error string is not required
|
|
||||||
fun (function): the function to call. This should be the name of an RPC.
|
|
||||||
args*: positional arguments for the function.
|
|
||||||
kwds**: named arguments for the function.
|
|
||||||
"""
|
|
||||||
try:
|
|
||||||
fun(*args, **kwds)
|
|
||||||
except JSONRPCException as e:
|
|
||||||
# JSONRPCException was thrown as expected. Check the code and message values are correct.
|
|
||||||
if (code is not None) and (code != e.error["code"]):
|
|
||||||
raise AssertionError("Unexpected JSONRPC error code %i" % e.error["code"])
|
|
||||||
if (message is not None) and (message not in e.error['message']):
|
|
||||||
raise AssertionError("Expected substring not found:"+e.error['message'])
|
|
||||||
except Exception as e:
|
|
||||||
raise AssertionError("Unexpected exception raised: "+type(e).__name__)
|
|
||||||
else:
|
|
||||||
raise AssertionError("No exception raised")
|
|
||||||
|
|
||||||
def assert_is_hex_string(string):
|
|
||||||
try:
|
|
||||||
int(string, 16)
|
|
||||||
except Exception as e:
|
|
||||||
raise AssertionError(
|
|
||||||
"Couldn't interpret %r as hexadecimal; raised: %s" % (string, e))
|
|
||||||
|
|
||||||
def assert_is_hash_string(string, length=64):
|
|
||||||
if not isinstance(string, str):
|
|
||||||
raise AssertionError("Expected a string, got type %r" % type(string))
|
|
||||||
elif length and len(string) != length:
|
|
||||||
raise AssertionError(
|
|
||||||
"String of length %d expected; got %d" % (length, len(string)))
|
|
||||||
elif not re.match('[abcdef0-9]+$', string):
|
|
||||||
raise AssertionError(
|
|
||||||
"String %r contains invalid characters for a hash." % string)
|
|
||||||
|
|
||||||
def assert_array_result(object_array, to_match, expected, should_not_find = False):
|
|
||||||
"""
|
|
||||||
Pass in array of JSON objects, a dictionary with key/value pairs
|
|
||||||
to match against, and another dictionary with expected key/value
|
|
||||||
pairs.
|
|
||||||
If the should_not_find flag is true, to_match should not be found
|
|
||||||
in object_array
|
|
||||||
"""
|
|
||||||
if should_not_find == True:
|
|
||||||
assert_equal(expected, { })
|
|
||||||
num_matched = 0
|
|
||||||
for item in object_array:
|
|
||||||
all_match = True
|
|
||||||
for key,value in to_match.items():
|
|
||||||
if item[key] != value:
|
|
||||||
all_match = False
|
|
||||||
if not all_match:
|
|
||||||
continue
|
|
||||||
elif should_not_find == True:
|
|
||||||
num_matched = num_matched+1
|
|
||||||
for key,value in expected.items():
|
|
||||||
if item[key] != value:
|
|
||||||
raise AssertionError("%s : expected %s=%s"%(str(item), str(key), str(value)))
|
|
||||||
num_matched = num_matched+1
|
|
||||||
if num_matched == 0 and should_not_find != True:
|
|
||||||
raise AssertionError("No objects matched %s"%(str(to_match)))
|
|
||||||
if num_matched > 0 and should_not_find == True:
|
|
||||||
raise AssertionError("Objects were found %s"%(str(to_match)))
|
|
||||||
|
|
||||||
def satoshi_round(amount):
|
|
||||||
return Decimal(amount).quantize(Decimal('0.00000001'), rounding=ROUND_DOWN)
|
|
||||||
|
|
||||||
# Helper to create at least "count" utxos
|
# Helper to create at least "count" utxos
|
||||||
# Pass in a fee that is sufficient for relay and mining new transactions.
|
# Pass in a fee that is sufficient for relay and mining new transactions.
|
||||||
def create_confirmed_utxos(fee, node, count):
|
def create_confirmed_utxos(fee, node, count):
|
||||||
node.generate(int(0.5*count)+101)
|
node.generate(int(0.5 * count) + 101)
|
||||||
utxos = node.listunspent()
|
utxos = node.listunspent()
|
||||||
iterations = count - len(utxos)
|
iterations = count - len(utxos)
|
||||||
addr1 = node.getnewaddress()
|
addr1 = node.getnewaddress()
|
||||||
@ -554,14 +422,14 @@ def create_confirmed_utxos(fee, node, count):
|
|||||||
for i in range(iterations):
|
for i in range(iterations):
|
||||||
t = utxos.pop()
|
t = utxos.pop()
|
||||||
inputs = []
|
inputs = []
|
||||||
inputs.append({ "txid" : t["txid"], "vout" : t["vout"]})
|
inputs.append({"txid": t["txid"], "vout": t["vout"]})
|
||||||
outputs = {}
|
outputs = {}
|
||||||
send_value = t['amount'] - fee
|
send_value = t['amount'] - fee
|
||||||
outputs[addr1] = satoshi_round(send_value/2)
|
outputs[addr1] = satoshi_round(send_value / 2)
|
||||||
outputs[addr2] = satoshi_round(send_value/2)
|
outputs[addr2] = satoshi_round(send_value / 2)
|
||||||
raw_tx = node.createrawtransaction(inputs, outputs)
|
raw_tx = node.createrawtransaction(inputs, outputs)
|
||||||
signed_tx = node.signrawtransaction(raw_tx)["hex"]
|
signed_tx = node.signrawtransaction(raw_tx)["hex"]
|
||||||
txid = node.sendrawtransaction(signed_tx)
|
node.sendrawtransaction(signed_tx)
|
||||||
|
|
||||||
while (node.getmempoolinfo()['size'] > 0):
|
while (node.getmempoolinfo()['size'] > 0):
|
||||||
node.generate(1)
|
node.generate(1)
|
||||||
@ -576,8 +444,8 @@ def gen_return_txouts():
|
|||||||
# Some pre-processing to create a bunch of OP_RETURN txouts to insert into transactions we create
|
# Some pre-processing to create a bunch of OP_RETURN txouts to insert into transactions we create
|
||||||
# So we have big transactions (and therefore can't fit very many into each block)
|
# So we have big transactions (and therefore can't fit very many into each block)
|
||||||
# create one script_pubkey
|
# create one script_pubkey
|
||||||
script_pubkey = "6a4d0200" #OP_RETURN OP_PUSH2 512 bytes
|
script_pubkey = "6a4d0200" # OP_RETURN OP_PUSH2 512 bytes
|
||||||
for i in range (512):
|
for i in range(512):
|
||||||
script_pubkey = script_pubkey + "01"
|
script_pubkey = script_pubkey + "01"
|
||||||
# concatenate 128 txouts of above script_pubkey which we'll insert before the txout for change
|
# concatenate 128 txouts of above script_pubkey which we'll insert before the txout for change
|
||||||
txouts = "81"
|
txouts = "81"
|
||||||
@ -591,8 +459,8 @@ def gen_return_txouts():
|
|||||||
return txouts
|
return txouts
|
||||||
|
|
||||||
def create_tx(node, coinbase, to_address, amount):
|
def create_tx(node, coinbase, to_address, amount):
|
||||||
inputs = [{ "txid" : coinbase, "vout" : 0}]
|
inputs = [{"txid": coinbase, "vout": 0}]
|
||||||
outputs = { to_address : amount }
|
outputs = {to_address: amount}
|
||||||
rawtx = node.createrawtransaction(inputs, outputs)
|
rawtx = node.createrawtransaction(inputs, outputs)
|
||||||
signresult = node.signrawtransaction(rawtx)
|
signresult = node.signrawtransaction(rawtx)
|
||||||
assert_equal(signresult["complete"], True)
|
assert_equal(signresult["complete"], True)
|
||||||
@ -605,7 +473,7 @@ def create_lots_of_big_transactions(node, txouts, utxos, num, fee):
|
|||||||
txids = []
|
txids = []
|
||||||
for _ in range(num):
|
for _ in range(num):
|
||||||
t = utxos.pop()
|
t = utxos.pop()
|
||||||
inputs=[{ "txid" : t["txid"], "vout" : t["vout"]}]
|
inputs = [{"txid": t["txid"], "vout": t["vout"]}]
|
||||||
outputs = {}
|
outputs = {}
|
||||||
change = t['amount'] - fee
|
change = t['amount'] - fee
|
||||||
outputs[addr] = satoshi_round(change)
|
outputs[addr] = satoshi_round(change)
|
||||||
@ -630,7 +498,3 @@ def mine_large_block(node, utxos=None):
|
|||||||
fee = 100 * node.getnetworkinfo()["relayfee"]
|
fee = 100 * node.getnetworkinfo()["relayfee"]
|
||||||
create_lots_of_big_transactions(node, txouts, utxos, num, fee=fee)
|
create_lots_of_big_transactions(node, txouts, utxos, num, fee=fee)
|
||||||
node.generate(1)
|
node.generate(1)
|
||||||
|
|
||||||
def get_bip9_status(node, key):
|
|
||||||
info = node.getblockchaininfo()
|
|
||||||
return info['bip9_softforks'][key]
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
from test_framework.test_framework import BitcoinTestFramework
|
from test_framework.test_framework import BitcoinTestFramework
|
||||||
from test_framework.util import (assert_equal, bitcoind_processes)
|
from test_framework.util import assert_equal
|
||||||
|
|
||||||
|
|
||||||
def read_dump(file_name, addrs, hd_master_addr_old):
|
def read_dump(file_name, addrs, hd_master_addr_old):
|
||||||
@ -95,7 +95,7 @@ class WalletDumpTest(BitcoinTestFramework):
|
|||||||
|
|
||||||
#encrypt wallet, restart, unlock and dump
|
#encrypt wallet, restart, unlock and dump
|
||||||
self.nodes[0].encryptwallet('test')
|
self.nodes[0].encryptwallet('test')
|
||||||
bitcoind_processes[0].wait()
|
self.bitcoind_processes[0].wait()
|
||||||
self.nodes[0] = self.start_node(0, self.options.tmpdir, self.extra_args[0])
|
self.nodes[0] = self.start_node(0, self.options.tmpdir, self.extra_args[0])
|
||||||
self.nodes[0].walletpassphrase('test', 10)
|
self.nodes[0].walletpassphrase('test', 10)
|
||||||
# Should be a no-op:
|
# Should be a no-op:
|
||||||
|
@ -6,12 +6,10 @@
|
|||||||
|
|
||||||
import time
|
import time
|
||||||
|
|
||||||
from test_framework.test_framework import BitcoinTestFramework
|
from test_framework.test_framework import BitcoinTestFramework, BITCOIND_PROC_WAIT_TIMEOUT
|
||||||
from test_framework.util import (
|
from test_framework.util import (
|
||||||
assert_equal,
|
assert_equal,
|
||||||
assert_raises_jsonrpc,
|
assert_raises_jsonrpc,
|
||||||
bitcoind_processes,
|
|
||||||
BITCOIND_PROC_WAIT_TIMEOUT,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
class WalletEncryptionTest(BitcoinTestFramework):
|
class WalletEncryptionTest(BitcoinTestFramework):
|
||||||
@ -33,7 +31,7 @@ class WalletEncryptionTest(BitcoinTestFramework):
|
|||||||
|
|
||||||
# Encrypt the wallet
|
# Encrypt the wallet
|
||||||
self.nodes[0].encryptwallet(passphrase)
|
self.nodes[0].encryptwallet(passphrase)
|
||||||
bitcoind_processes[0].wait(timeout=BITCOIND_PROC_WAIT_TIMEOUT)
|
self.bitcoind_processes[0].wait(timeout=BITCOIND_PROC_WAIT_TIMEOUT)
|
||||||
self.nodes[0] = self.start_node(0, self.options.tmpdir)
|
self.nodes[0] = self.start_node(0, self.options.tmpdir)
|
||||||
|
|
||||||
# Test that the wallet is encrypted
|
# Test that the wallet is encrypted
|
||||||
|
@ -8,7 +8,6 @@ from test_framework.test_framework import BitcoinTestFramework
|
|||||||
from test_framework.util import (
|
from test_framework.util import (
|
||||||
assert_equal,
|
assert_equal,
|
||||||
connect_nodes_bi,
|
connect_nodes_bi,
|
||||||
assert_start_raises_init_error
|
|
||||||
)
|
)
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
@ -27,7 +26,7 @@ class WalletHDTest(BitcoinTestFramework):
|
|||||||
|
|
||||||
# Make sure can't switch off usehd after wallet creation
|
# Make sure can't switch off usehd after wallet creation
|
||||||
self.stop_node(1)
|
self.stop_node(1)
|
||||||
assert_start_raises_init_error(1, self.options.tmpdir, ['-usehd=0'], 'already existing HD wallet')
|
self.assert_start_raises_init_error(1, self.options.tmpdir, ['-usehd=0'], 'already existing HD wallet')
|
||||||
self.nodes[1] = self.start_node(1, self.options.tmpdir, self.extra_args[1])
|
self.nodes[1] = self.start_node(1, self.options.tmpdir, self.extra_args[1])
|
||||||
connect_nodes_bi(self.nodes, 0, 1)
|
connect_nodes_bi(self.nodes, 0, 1)
|
||||||
|
|
||||||
|
@ -30,10 +30,11 @@ confirm 1/2/3/4 balances are same as before.
|
|||||||
Shutdown again, restore using importwallet,
|
Shutdown again, restore using importwallet,
|
||||||
and confirm again balances are correct.
|
and confirm again balances are correct.
|
||||||
"""
|
"""
|
||||||
|
from random import randint
|
||||||
|
import shutil
|
||||||
|
|
||||||
from test_framework.test_framework import BitcoinTestFramework
|
from test_framework.test_framework import BitcoinTestFramework
|
||||||
from test_framework.util import *
|
from test_framework.util import *
|
||||||
from random import randint
|
|
||||||
|
|
||||||
class WalletBackupTest(BitcoinTestFramework):
|
class WalletBackupTest(BitcoinTestFramework):
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user