mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
Merge #16681: Tests: Use self.chain instead of 'regtest' in all current tests
1abcecc40c518a98b7d17880657ec0247abdf125 Tests: Use self.chain instead of 'regtest' in almost all current tests (Jorge Timón) Pull request description: Simply avoiding the hardcoded string in more places for consistency. It can also allow for more easily reusing tests for other chains other than regtest. Separated from #8994 . Continues #16509 . It is still not complete (ie to be complete, we need the -chain parameter in #16680 and make whether acceptnonstdtxs is allowed for that chain or not customizable for regtest [or for custom chains like in #8994 ] ). But while being incomplete like #16509 , it's quite simple to review and another step forward IMO. ACKs for top commit: Sjors: re-ACK 1abcecc. I think it's an improvement even if incomplete and if some PR's might accidentally bring "regtest" back. Subsequent improvements hopefully don't have to touch 16 files. elichai: Code review ACK 1abcecc40c518a98b7d17880657ec0247abdf125 ryanofsky: Code review ACK 1abcecc40c518a98b7d17880657ec0247abdf125. ryanofsky: Code review ACK 1abcecc40c518a98b7d17880657ec0247abdf125 Tree-SHA512: 5620de6dab235ca8bd8670d6366c7b9f04f0e3ca9c5e7f87765b38e16ed80c17d7d1630c0d5fd7c5526f070830d94dc74cc2096d8ede87dc7180ed20569509ee
This commit is contained in:
parent
ba73a3360a
commit
31a886aa7c
@ -29,7 +29,7 @@ class AbortNodeTest(BitcoinTestFramework):
|
|||||||
datadir = get_datadir_path(self.options.tmpdir, 0)
|
datadir = get_datadir_path(self.options.tmpdir, 0)
|
||||||
|
|
||||||
# Deleting the undo file will result in reorg failure
|
# Deleting the undo file will result in reorg failure
|
||||||
os.unlink(os.path.join(datadir, 'regtest', 'blocks', 'rev00000.dat'))
|
os.unlink(os.path.join(datadir, self.chain, 'blocks', 'rev00000.dat'))
|
||||||
|
|
||||||
# Connecting to a node with a more work chain will trigger a reorg
|
# Connecting to a node with a more work chain will trigger a reorg
|
||||||
# attempt.
|
# attempt.
|
||||||
|
@ -39,7 +39,7 @@ class ConfArgsTest(BitcoinTestFramework):
|
|||||||
if self.is_wallet_compiled():
|
if self.is_wallet_compiled():
|
||||||
with open(inc_conf_file_path, 'w', encoding='utf8') as conf:
|
with open(inc_conf_file_path, 'w', encoding='utf8') as conf:
|
||||||
conf.write("wallet=foo\n")
|
conf.write("wallet=foo\n")
|
||||||
self.nodes[0].assert_start_raises_init_error(expected_msg='Error: Config setting for -wallet only applied on regtest network when in [regtest] section.')
|
self.nodes[0].assert_start_raises_init_error(expected_msg='Error: Config setting for -wallet only applied on %s network when in [%s] section.' % (self.chain, self.chain))
|
||||||
|
|
||||||
with open(inc_conf_file_path, 'w', encoding='utf-8') as conf:
|
with open(inc_conf_file_path, 'w', encoding='utf-8') as conf:
|
||||||
conf.write('regtest=0\n') # mainnet
|
conf.write('regtest=0\n') # mainnet
|
||||||
|
@ -19,7 +19,7 @@ class FilelockTest(BitcoinTestFramework):
|
|||||||
self.nodes[0].wait_for_rpc_connection()
|
self.nodes[0].wait_for_rpc_connection()
|
||||||
|
|
||||||
def run_test(self):
|
def run_test(self):
|
||||||
datadir = os.path.join(self.nodes[0].datadir, 'regtest')
|
datadir = os.path.join(self.nodes[0].datadir, self.chain)
|
||||||
self.log.info("Using datadir {}".format(datadir))
|
self.log.info("Using datadir {}".format(datadir))
|
||||||
|
|
||||||
self.log.info("Check that we can't start a second dashd instance using the same datadir")
|
self.log.info("Check that we can't start a second dashd instance using the same datadir")
|
||||||
|
@ -38,7 +38,7 @@ class LoadblockTest(BitcoinTestFramework):
|
|||||||
cfg_file = os.path.join(data_dir, "linearize.cfg")
|
cfg_file = os.path.join(data_dir, "linearize.cfg")
|
||||||
bootstrap_file = os.path.join(self.options.tmpdir, "bootstrap.dat")
|
bootstrap_file = os.path.join(self.options.tmpdir, "bootstrap.dat")
|
||||||
genesis_block = self.nodes[0].getblockhash(0)
|
genesis_block = self.nodes[0].getblockhash(0)
|
||||||
blocks_dir = os.path.join(data_dir, "regtest", "blocks")
|
blocks_dir = os.path.join(data_dir, self.chain, "blocks")
|
||||||
hash_list = tempfile.NamedTemporaryFile(dir=data_dir,
|
hash_list = tempfile.NamedTemporaryFile(dir=data_dir,
|
||||||
mode='w',
|
mode='w',
|
||||||
delete=False,
|
delete=False,
|
||||||
|
@ -33,7 +33,7 @@ class RPCInterfaceTest(BitcoinTestFramework):
|
|||||||
command = info['active_commands'][0]
|
command = info['active_commands'][0]
|
||||||
assert_equal(command['method'], 'getrpcinfo')
|
assert_equal(command['method'], 'getrpcinfo')
|
||||||
assert_greater_than_or_equal(command['duration'], 0)
|
assert_greater_than_or_equal(command['duration'], 0)
|
||||||
assert_equal(info['logpath'], os.path.join(self.nodes[0].datadir, 'regtest', 'debug.log'))
|
assert_equal(info['logpath'], os.path.join(self.nodes[0].datadir, self.chain, 'debug.log'))
|
||||||
|
|
||||||
def test_batch_request(self):
|
def test_batch_request(self):
|
||||||
self.log.info("Testing basic JSON-RPC batch request...")
|
self.log.info("Testing basic JSON-RPC batch request...")
|
||||||
|
@ -54,7 +54,7 @@ class ScantxoutsetTest(BitcoinTestFramework):
|
|||||||
|
|
||||||
self.log.info("Stop node, remove wallet, mine again some blocks...")
|
self.log.info("Stop node, remove wallet, mine again some blocks...")
|
||||||
self.stop_node(0)
|
self.stop_node(0)
|
||||||
shutil.rmtree(os.path.join(self.nodes[0].datadir, "regtest", 'wallets'))
|
shutil.rmtree(os.path.join(self.nodes[0].datadir, self.chain, 'wallets'))
|
||||||
self.start_node(0)
|
self.start_node(0)
|
||||||
self.nodes[0].generate(110)
|
self.nodes[0].generate(110)
|
||||||
|
|
||||||
|
@ -223,7 +223,7 @@ class ToolWalletTest(BitcoinTestFramework):
|
|||||||
self.assert_tool_output('', '-wallet=salvage', 'salvage')
|
self.assert_tool_output('', '-wallet=salvage', 'salvage')
|
||||||
|
|
||||||
def run_test(self):
|
def run_test(self):
|
||||||
self.wallet_path = os.path.join(self.nodes[0].datadir, 'regtest', 'wallets', 'wallet.dat')
|
self.wallet_path = os.path.join(self.nodes[0].datadir, self.chain, 'wallets', 'wallet.dat')
|
||||||
self.test_invalid_tool_commands_and_args()
|
self.test_invalid_tool_commands_and_args()
|
||||||
# Warning: The following tests are order-dependent.
|
# Warning: The following tests are order-dependent.
|
||||||
self.test_tool_wallet_info()
|
self.test_tool_wallet_info()
|
||||||
|
@ -90,7 +90,7 @@ class ReorgsRestoreTest(BitcoinTestFramework):
|
|||||||
# Node0 wallet file is loaded on longest sync'ed node1
|
# Node0 wallet file is loaded on longest sync'ed node1
|
||||||
self.stop_node(1)
|
self.stop_node(1)
|
||||||
self.nodes[0].backupwallet(os.path.join(self.nodes[0].datadir, 'wallet.bak'))
|
self.nodes[0].backupwallet(os.path.join(self.nodes[0].datadir, 'wallet.bak'))
|
||||||
shutil.copyfile(os.path.join(self.nodes[0].datadir, 'wallet.bak'), os.path.join(self.nodes[1].datadir, 'regtest', 'wallet.dat'))
|
shutil.copyfile(os.path.join(self.nodes[0].datadir, 'wallet.bak'), os.path.join(self.nodes[1].datadir, self.chain, 'wallet.dat'))
|
||||||
self.start_node(1)
|
self.start_node(1)
|
||||||
tx_after_reorg = self.nodes[1].gettransaction(txid)
|
tx_after_reorg = self.nodes[1].gettransaction(txid)
|
||||||
# Check that normal confirmed tx is confirmed again but with different blockhash
|
# Check that normal confirmed tx is confirmed again but with different blockhash
|
||||||
|
Loading…
Reference in New Issue
Block a user