Browse Source

Merge pull request #6097

7b7f258 rpc-tests: remove python-bitcoinrpc directory (Jonas Schnelli)
a85b2e2 pull-tester/rpc-tests.sh: disable script_test.py test (Jonas Schnelli)
3e875b1 pull-tester/rpc-tests.sh: allow passing throug of arguments (Jonas Schnelli)
00706a5 update rpc-tests readme.md (Jonas Schnelli)
344e08e extend rpc-tests.sh control script with non-travis tests (Jonas Schnelli)
64937fe [QA] restructure rpc tests directory (Jonas Schnelli)
0.13
Wladimir J. van der Laan 9 years ago
parent
commit
c608b6daf9
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 31
      qa/pull-tester/rpc-tests.sh
  2. 28
      qa/rpc-tests/README.md
  3. 12
      qa/rpc-tests/bipdersig-p2p.py
  4. 5
      qa/rpc-tests/bipdersig.py
  5. 5
      qa/rpc-tests/forknotify.py
  6. 5
      qa/rpc-tests/getblocktemplate_longpoll.py
  7. 5
      qa/rpc-tests/getblocktemplate_proposals.py
  8. 4
      qa/rpc-tests/getchaintips.py
  9. 4
      qa/rpc-tests/httpbasics.py
  10. 5
      qa/rpc-tests/invalidateblock.py
  11. 10
      qa/rpc-tests/invalidblockrequest.py
  12. 4
      qa/rpc-tests/keypool.py
  13. 5
      qa/rpc-tests/listtransactions.py
  14. 6
      qa/rpc-tests/maxblocksinflight.py
  15. 5
      qa/rpc-tests/mempool_coinbase_spends.py
  16. 6
      qa/rpc-tests/mempool_resurrect_test.py
  17. 5
      qa/rpc-tests/mempool_spendcoinbase.py
  18. 5
      qa/rpc-tests/merkle_blocks.py
  19. 6
      qa/rpc-tests/proxy_test.py
  20. 5
      qa/rpc-tests/pruning.py
  21. 1
      qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/.gitignore
  22. 15
      qa/rpc-tests/python-bitcoinrpc/setup.py
  23. 4
      qa/rpc-tests/rawtransactions.py
  24. 5
      qa/rpc-tests/receivedby.py
  25. 5
      qa/rpc-tests/reindex.py
  26. 5
      qa/rpc-tests/rest.py
  27. 6
      qa/rpc-tests/rpcbind_test.py
  28. 14
      qa/rpc-tests/script_test.py
  29. 4
      qa/rpc-tests/signrawtransactions.py
  30. 5
      qa/rpc-tests/smartfees.py
  31. 0
      qa/rpc-tests/test_framework/__init__.py
  32. 0
      qa/rpc-tests/test_framework/authproxy.py
  33. 0
      qa/rpc-tests/test_framework/bignum.py
  34. 0
      qa/rpc-tests/test_framework/blockstore.py
  35. 0
      qa/rpc-tests/test_framework/blocktools.py
  36. 0
      qa/rpc-tests/test_framework/comptool.py
  37. 0
      qa/rpc-tests/test_framework/mininode.py
  38. 0
      qa/rpc-tests/test_framework/netutil.py
  39. 4
      qa/rpc-tests/test_framework/script.py
  40. 0
      qa/rpc-tests/test_framework/socks5.py
  41. 3
      qa/rpc-tests/test_framework/test_framework.py
  42. 3
      qa/rpc-tests/test_framework/util.py
  43. 5
      qa/rpc-tests/txn_doublespend.py
  44. 5
      qa/rpc-tests/wallet.py
  45. 4
      qa/rpc-tests/zapwallettxes.py

31
qa/pull-tester/rpc-tests.sh

@ -31,18 +31,45 @@ testScripts=( @@ -31,18 +31,45 @@ testScripts=(
'proxy_test.py'
'merkle_blocks.py'
'signrawtransactions.py'
);
testScriptsExt=(
'bipdersig-p2p.py'
'bipdersig.py'
'getblocktemplate_longpoll.py'
'getblocktemplate_proposals.py'
'pruning.py'
'forknotify.py'
'invalidateblock.py'
'keypool.py'
'receivedby.py'
'reindex.py'
'rpcbind_test.py'
# 'script_test.py'
'smartfees.py'
'maxblocksinflight.py'
'invalidblockrequest.py'
'rawtransactions.py'
# 'forknotify.py'
);
extArg="-extended"
passOn=${@#$extArg}
if [ "x${ENABLE_BITCOIND}${ENABLE_UTILS}${ENABLE_WALLET}" = "x111" ]; then
for (( i = 0; i < ${#testScripts[@]}; i++ ))
do
if [ -z "$1" ] || [ "$1" == "${testScripts[$i]}" ] || [ "$1.py" == "${testScripts[$i]}" ]
if [ -z "$1" ] || [ "${1:0:1}" == "-" ] || [ "$1" == "${testScripts[$i]}" ] || [ "$1.py" == "${testScripts[$i]}" ]
then
echo -e "Running testscript \033[1m${testScripts[$i]}...\033[0m"
${BUILDDIR}/qa/rpc-tests/${testScripts[$i]} --srcdir "${BUILDDIR}/src"
${BUILDDIR}/qa/rpc-tests/${testScripts[$i]} --srcdir "${BUILDDIR}/src" ${passOn}
fi
done
for (( i = 0; i < ${#testScriptsExt[@]}; i++ ))
do
if [ "$1" == $extArg ] || [ "$1" == "${testScriptsExt[$i]}" ] || [ "$1.py" == "${testScriptsExt[$i]}" ]
then
echo -e "Running \033[1m2nd level\033[0m testscript \033[1m${testScriptsExt[$i]}...\033[0m"
${BUILDDIR}/qa/rpc-tests/${testScriptsExt[$i]} --srcdir "${BUILDDIR}/src" ${passOn}
fi
done
else

28
qa/rpc-tests/README.md

@ -6,25 +6,37 @@ Git subtree of [https://github.com/jgarzik/python-bitcoinrpc](https://github.com @@ -6,25 +6,37 @@ Git subtree of [https://github.com/jgarzik/python-bitcoinrpc](https://github.com
Changes to python-bitcoinrpc should be made upstream, and then
pulled here using git subtree.
### [test_framework.py](test_framework.py)
### [test_framework/test_framework.py](test_framework/test_framework.py)
Base class for new regression tests.
### [listtransactions.py](listtransactions.py)
Tests for the listtransactions RPC call.
### [util.py](util.py)
### [test_framework/util.py](test_framework/util.py)
Generally useful functions.
Bash-based tests, to be ported to Python:
-----------------------------------------
- wallet.sh : Exercise wallet send/receive code.
- walletbackup.sh : Exercise wallet backup / dump / import
- txnmall.sh : Test proper accounting of malleable transactions
- conflictedbalance.sh : More testing of malleable transaction handling
Notes
=====
You can run a single test by calling `qa/pull-tester/rpc-tests.sh <testname>`.
Run all possible tests with `qa/pull-tester/rpc-tests.sh -extended`.
Possible options:
````
-h, --help show this help message and exit
--nocleanup Leave bitcoinds and test.* datadir on exit or error
--noshutdown Don't stop bitcoinds after the test execution
--srcdir=SRCDIR Source directory containing bitcoind/bitcoin-cli (default:
../../src)
--tmpdir=TMPDIR Root directory for datadirs
--tracerpc Print out all RPC calls as they are made
```
If you set the environment variable `PYTHON_DEBUG=1` you will get some debug output (example: `PYTHON_DEBUG=1 qa/pull-tester/rpc-tests.sh wallet`).
A 200-block -regtest blockchain and wallets for four nodes
is created the first time a regression test is run and
is stored in the cache/ directory. Each node has 25 mature

12
qa/rpc-tests/bipdersig-p2p.py

@ -4,14 +4,14 @@ @@ -4,14 +4,14 @@
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
#
from test_framework import ComparisonTestFramework
from util import *
from mininode import CTransaction, NetworkThread
from blocktools import create_coinbase, create_block
from test_framework.test_framework import ComparisonTestFramework
from test_framework.util import *
from test_framework.mininode import CTransaction, NetworkThread
from test_framework.blocktools import create_coinbase, create_block
from test_framework.comptool import TestInstance, TestManager
from test_framework.script import CScript
from binascii import hexlify, unhexlify
import cStringIO
from comptool import TestInstance, TestManager
from script import CScript
import time
# A canonical signature consists of:

5
qa/rpc-tests/bipdersig.py

@ -7,9 +7,8 @@ @@ -7,9 +7,8 @@
# Test the BIP66 changeover logic
#
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
import os
import shutil

5
qa/rpc-tests/forknotify.py

@ -7,9 +7,8 @@ @@ -7,9 +7,8 @@
# Test -alertnotify
#
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
import os
import shutil

5
qa/rpc-tests/getblocktemplate_longpoll.py

@ -3,9 +3,8 @@ @@ -3,9 +3,8 @@
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
def check_array_result(object_array, to_match, expected):

5
qa/rpc-tests/getblocktemplate_proposals.py

@ -3,9 +3,8 @@ @@ -3,9 +3,8 @@
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
from binascii import a2b_hex, b2a_hex
from hashlib import sha256

4
qa/rpc-tests/getchaintips.py

@ -7,8 +7,8 @@ @@ -7,8 +7,8 @@
# on chains of different lengths, and join the network together again.
# This gives us two tips, verify that it works.
from test_framework import BitcoinTestFramework
from util import assert_equal
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import assert_equal
class GetChainTipsTest (BitcoinTestFramework):

4
qa/rpc-tests/httpbasics.py

@ -7,8 +7,8 @@ @@ -7,8 +7,8 @@
# Test REST interface
#
from test_framework import BitcoinTestFramework
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
import base64
try:

5
qa/rpc-tests/invalidateblock.py

@ -7,9 +7,8 @@ @@ -7,9 +7,8 @@
# Test InvalidateBlock code
#
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
class InvalidateTest(BitcoinTestFramework):

10
qa/rpc-tests/invalidblockrequest.py

@ -4,11 +4,11 @@ @@ -4,11 +4,11 @@
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
#
from test_framework import ComparisonTestFramework
from util import *
from comptool import TestManager, TestInstance
from mininode import *
from blocktools import *
from test_framework.test_framework import ComparisonTestFramework
from test_framework.util import *
from test_framework.comptool import TestManager, TestInstance
from test_framework.mininode import *
from test_framework.blocktools import *
import logging
import copy
import time

4
qa/rpc-tests/keypool.py

@ -8,7 +8,6 @@ @@ -8,7 +8,6 @@
# Add python-bitcoinrpc to module search path:
import os
import sys
sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), "python-bitcoinrpc"))
import json
import shutil
@ -16,8 +15,7 @@ import subprocess @@ -16,8 +15,7 @@ import subprocess
import tempfile
import traceback
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.util import *
def check_array_result(object_array, to_match, expected):

5
qa/rpc-tests/listtransactions.py

@ -5,9 +5,8 @@ @@ -5,9 +5,8 @@
# Exercise the listtransactions API
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
def check_array_result(object_array, to_match, expected):

6
qa/rpc-tests/maxblocksinflight.py

@ -4,9 +4,9 @@ @@ -4,9 +4,9 @@
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
#
from mininode import *
from test_framework import BitcoinTestFramework
from util import *
from test_framework.mininode import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
import logging
'''

5
qa/rpc-tests/mempool_coinbase_spends.py

@ -8,9 +8,8 @@ @@ -8,9 +8,8 @@
# that spend (directly or indirectly) coinbase transactions.
#
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
import os
import shutil

6
qa/rpc-tests/mempool_resurrect_test.py

@ -8,9 +8,8 @@ @@ -8,9 +8,8 @@
# the blockchain is re-organized.
#
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
import os
import shutil
@ -34,7 +33,6 @@ class MempoolCoinbaseTest(BitcoinTestFramework): @@ -34,7 +33,6 @@ class MempoolCoinbaseTest(BitcoinTestFramework):
def run_test(self):
node0_address = self.nodes[0].getnewaddress()
# Spend block 1/2/3's coinbase transactions
# Mine a block.
# Create three more transactions, spending the spends

5
qa/rpc-tests/mempool_spendcoinbase.py

@ -13,9 +13,8 @@ @@ -13,9 +13,8 @@
# but less mature coinbase spends are NOT.
#
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
import os
import shutil

5
qa/rpc-tests/merkle_blocks.py

@ -7,9 +7,8 @@ @@ -7,9 +7,8 @@
# Test merkleblock fetch/validation
#
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
import os
import shutil

6
qa/rpc-tests/proxy_test.py

@ -7,9 +7,9 @@ import traceback, sys @@ -7,9 +7,9 @@ import traceback, sys
from binascii import hexlify
import time, os
from socks5 import Socks5Configuration, Socks5Command, Socks5Server, AddressType
from test_framework import BitcoinTestFramework
from util import *
from test_framework.socks5 import Socks5Configuration, Socks5Command, Socks5Server, AddressType
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
'''
Test plan:
- Start bitcoind's with different proxy configurations

5
qa/rpc-tests/pruning.py

@ -11,9 +11,8 @@ @@ -11,9 +11,8 @@
# This test takes 30 mins or more (up to 2 hours)
# ********
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
import os.path
def calc_usage(blockdir):

1
qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/.gitignore vendored

@ -1 +0,0 @@ @@ -1 +0,0 @@
*.pyc

15
qa/rpc-tests/python-bitcoinrpc/setup.py

@ -1,15 +0,0 @@ @@ -1,15 +0,0 @@
#!/usr/bin/env python2
from distutils.core import setup
setup(name='python-bitcoinrpc',
version='0.1',
description='Enhanced version of python-jsonrpc for use with Bitcoin',
long_description=open('README').read(),
author='Jeff Garzik',
author_email='<jgarzik@exmulti.com>',
maintainer='Jeff Garzik',
maintainer_email='<jgarzik@exmulti.com>',
url='http://www.github.com/jgarzik/python-bitcoinrpc',
packages=['bitcoinrpc'],
classifiers=['License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 'Operating System :: OS Independent'])

4
qa/rpc-tests/rawtransactions.py

@ -8,8 +8,8 @@ @@ -8,8 +8,8 @@
# that spend (directly or indirectly) coinbase transactions.
#
from test_framework import BitcoinTestFramework
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
from pprint import pprint
from time import sleep

5
qa/rpc-tests/receivedby.py

@ -5,9 +5,8 @@ @@ -5,9 +5,8 @@
# Exercise the listreceivedbyaddress API
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
def get_sub_array_from_array(object_array, to_match):

5
qa/rpc-tests/reindex.py

@ -6,9 +6,8 @@ @@ -6,9 +6,8 @@
#
# Test -reindex with CheckBlockIndex
#
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
import os.path
class ReindexTest(BitcoinTestFramework):

5
qa/rpc-tests/rest.py

@ -7,8 +7,9 @@ @@ -7,8 +7,9 @@
# Test REST interface
#
from test_framework import BitcoinTestFramework
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
from struct import *
import binascii
import json

6
qa/rpc-tests/rpcbind_test.py

@ -8,7 +8,6 @@ @@ -8,7 +8,6 @@
# Add python-bitcoinrpc to module search path:
import os
import sys
sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), "python-bitcoinrpc"))
import json
import shutil
@ -16,9 +15,8 @@ import subprocess @@ -16,9 +15,8 @@ import subprocess
import tempfile
import traceback
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from netutil import *
from test_framework.util import *
from test_framework.netutil import *
def run_bind_test(tmpdir, allow_ips, connect_to, addresses, expected):
'''

14
qa/rpc-tests/script_test.py

@ -19,12 +19,12 @@ that flag, we use a block time before the switchover date). @@ -19,12 +19,12 @@ that flag, we use a block time before the switchover date).
NOTE: This test is very slow and may take more than 40 minutes to run.
'''
from test_framework import ComparisonTestFramework
from util import *
from comptool import TestInstance, TestManager
from mininode import *
from blocktools import *
from script import *
from test_framework.test_framework import ComparisonTestFramework
from test_framework.util import *
from test_framework.comptool import TestInstance, TestManager
from test_framework.mininode import *
from test_framework.blocktools import *
from test_framework.script import *
import logging
import copy
import json
@ -42,7 +42,7 @@ class ScriptTestFile(object): @@ -42,7 +42,7 @@ class ScriptTestFile(object):
def load_files(self):
for f in self.files:
self.data.extend(json.loads(open(f).read()))
self.data.extend(json.loads(open(os.path.dirname(os.path.abspath(__file__))+"/"+f).read()))
# Skip over records that are not long enough to be tests
def get_records(self):

4
qa/rpc-tests/signrawtransactions.py

@ -3,8 +3,8 @@ @@ -3,8 +3,8 @@
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
from test_framework import BitcoinTestFramework
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
class SignRawTransactionsTest(BitcoinTestFramework):

5
qa/rpc-tests/smartfees.py

@ -7,9 +7,8 @@ @@ -7,9 +7,8 @@
# Test fee estimation code
#
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
# Construct 2 trivial P2SH's and the ScriptSigs that spend them
# So we can create many many transactions without needing to spend

0
qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/__init__.py → qa/rpc-tests/test_framework/__init__.py

0
qa/rpc-tests/python-bitcoinrpc/bitcoinrpc/authproxy.py → qa/rpc-tests/test_framework/authproxy.py

0
qa/rpc-tests/bignum.py → qa/rpc-tests/test_framework/bignum.py

0
qa/rpc-tests/blockstore.py → qa/rpc-tests/test_framework/blockstore.py

0
qa/rpc-tests/blocktools.py → qa/rpc-tests/test_framework/blocktools.py

0
qa/rpc-tests/comptool.py → qa/rpc-tests/test_framework/comptool.py

0
qa/rpc-tests/mininode.py → qa/rpc-tests/test_framework/mininode.py

0
qa/rpc-tests/netutil.py → qa/rpc-tests/test_framework/netutil.py

4
qa/rpc-tests/script.py → qa/rpc-tests/test_framework/script.py

@ -14,7 +14,7 @@ Functionality to build scripts, as well as SignatureHash(). @@ -14,7 +14,7 @@ Functionality to build scripts, as well as SignatureHash().
from __future__ import absolute_import, division, print_function, unicode_literals
from mininode import CTransaction, CTxOut, hash256
from test_framework.mininode import CTransaction, CTxOut, hash256
import sys
bchr = chr
@ -27,7 +27,7 @@ if sys.version > '3': @@ -27,7 +27,7 @@ if sys.version > '3':
import copy
import struct
import bignum
import test_framework.bignum
MAX_SCRIPT_SIZE = 10000
MAX_SCRIPT_ELEMENT_SIZE = 520

0
qa/rpc-tests/socks5.py → qa/rpc-tests/test_framework/socks5.py

3
qa/rpc-tests/test_framework.py → qa/rpc-tests/test_framework/test_framework.py

@ -8,13 +8,12 @@ @@ -8,13 +8,12 @@
# Add python-bitcoinrpc to module search path:
import os
import sys
sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), "python-bitcoinrpc"))
import shutil
import tempfile
import traceback
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from authproxy import AuthServiceProxy, JSONRPCException
from util import *

3
qa/rpc-tests/util.py → qa/rpc-tests/test_framework/util.py

@ -8,7 +8,6 @@ @@ -8,7 +8,6 @@
# Add python-bitcoinrpc to module search path:
import os
import sys
sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), "python-bitcoinrpc"))
from decimal import Decimal, ROUND_DOWN
import json
@ -18,7 +17,7 @@ import subprocess @@ -18,7 +17,7 @@ import subprocess
import time
import re
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from authproxy import AuthServiceProxy, JSONRPCException
from util import *
def p2p_port(n):

5
qa/rpc-tests/txn_doublespend.py

@ -7,10 +7,9 @@ @@ -7,10 +7,9 @@
# Test proper accounting with malleable transactions
#
from test_framework import BitcoinTestFramework
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
from decimal import Decimal
from util import *
import os
import shutil

5
qa/rpc-tests/wallet.py

@ -19,9 +19,8 @@ @@ -19,9 +19,8 @@
# k) test ResendWalletTransactions - create transactions, startup fourth node, make sure it syncs
#
from test_framework import BitcoinTestFramework
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
class WalletTest (BitcoinTestFramework):

4
qa/rpc-tests/zapwallettxes.py

@ -3,8 +3,8 @@ @@ -3,8 +3,8 @@
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
from test_framework import BitcoinTestFramework
from util import *
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import *
class ZapWalletTXesTest (BitcoinTestFramework):

Loading…
Cancel
Save