mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-14 12:43:40 +02:00
add functional test for coinbase connection to db
This commit is contained in:
parent
e532664298
commit
d97920caa4
2 changed files with 42 additions and 1 deletions
40
test/functional/feature_connect_coinbase.py
Executable file
40
test/functional/feature_connect_coinbase.py
Executable file
|
|
@ -0,0 +1,40 @@
|
|||
#!/usr/bin/env python3
|
||||
# Copyright (c) 2014-2018 The Bitcoin Core developers
|
||||
# Distributed under the MIT software license, see the accompanying
|
||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
"""Test connecting genesis coinbase"""
|
||||
|
||||
from test_framework.test_framework import BitcoinTestFramework
|
||||
from test_framework.util import assert_equal, assert_raises_rpc_error
|
||||
|
||||
class ConnectGenesisTest(BitcoinTestFramework):
|
||||
def set_test_params(self):
|
||||
self.num_nodes = 2
|
||||
self.setup_clean_chain = True
|
||||
# First node doesn't connect coinbase output to db, second does
|
||||
self.extra_args = [["-con_connect_coinbase=0"], ["-con_connect_coinbase=1"]]
|
||||
|
||||
def run_test(self):
|
||||
# Same genesis block
|
||||
assert_equal(self.nodes[0].getblockhash(0), self.nodes[1].getblockhash(0))
|
||||
|
||||
# Different UTXO set
|
||||
node0_info = self.nodes[0].gettxoutsetinfo()
|
||||
node1_info = self.nodes[1].gettxoutsetinfo()
|
||||
print(node0_info)
|
||||
print(node1_info)
|
||||
assert_equal(node0_info["txouts"], 0)
|
||||
assert_equal(node0_info["transactions"], 0)
|
||||
assert_equal(node0_info["total_amount"], 0)
|
||||
assert_equal(node1_info["txouts"], 1)
|
||||
assert_equal(node1_info["transactions"], 1)
|
||||
assert_equal(node1_info["total_amount"], 50)
|
||||
|
||||
coinbase_tx = self.nodes[0].getblock(self.nodes[0].getblockhash(0))["tx"][0]
|
||||
|
||||
# Test rpc getraw functionality
|
||||
assert_raises_rpc_error(-5, "The genesis block coinbase is not considered an ordinary transaction and cannot be retrieved", self.nodes[0].getrawtransaction, coinbase_tx)
|
||||
self.nodes[1].getrawtransaction(coinbase_tx)
|
||||
|
||||
if __name__ == '__main__':
|
||||
ConnectGenesisTest().main()
|
||||
|
|
@ -154,7 +154,8 @@ BASE_SCRIPTS = [
|
|||
'feature_config_args.py',
|
||||
'feature_help.py',
|
||||
'feature_mandatory_coinbase.py',
|
||||
'feature_block_subsidy.py'
|
||||
'feature_block_subsidy.py',
|
||||
'feature_connect_coinbase.py',
|
||||
# Don't append tests at the end to avoid merge conflicts
|
||||
# Put them in a random line within the section that fits their approximate run-time
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue