2016-09-22 10:20:44 +02:00
#!/usr/bin/env python3
2023-08-16 19:27:31 +02:00
# Copyright (c) 2016-2020 The Bitcoin Core developers
2016-09-22 10:20:44 +02:00
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
2019-01-07 10:55:35 +01:00
""" Test NULLDUMMY softfork.
Connect to a single node .
Generate 2 blocks ( save the coinbases for later ) .
2021-04-01 13:17:07 +02:00
Generate COINBASE_MATURITY ( CB ) more blocks to ensure the coinbases are mature .
[ Policy / Consensus ] Check that NULLDUMMY compliant transactions are accepted in block CB + 3.
2019-01-07 10:55:35 +01:00
[ Policy ] Check that non - NULLDUMMY transactions are rejected before activation .
2021-04-01 13:17:07 +02:00
[ Consensus ] Check that the new NULLDUMMY rules are not enforced on block CB + 4.
[ Policy / Consensus ] Check that the new NULLDUMMY rules are enforced on block CB + 5.
2019-01-07 10:55:35 +01:00
"""
2016-09-22 10:20:44 +02:00
2021-04-01 13:17:07 +02:00
from test_framework . blocktools import (
COINBASE_MATURITY ,
NORMAL_GBT_REQUEST_PARAMS ,
create_block ,
create_transaction ,
)
Merge #13054: tests: Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
68400d8b96 tests: Use explicit imports (practicalswift)
Pull request description:
Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
Wildcard imports make it unclear which names are present in the namespace, confusing both readers and many automated tools.
An additional benefit of not using wildcard imports in tests scripts is that readers of a test script then can infer the rough testing scope just by looking at the imports.
Before this commit:
```
$ contrib/devtools/lint-python.sh | head -10
./test/functional/feature_rbf.py:8:1: F403 'from test_framework.util import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:9:1: F403 'from test_framework.script import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:10:1: F403 'from test_framework.mininode import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:15:12: F405 bytes_to_hex_str may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:17:58: F405 CScript may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:25:13: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:31: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:60: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:41: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:68: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
$
```
After this commit:
```
$ contrib/devtools/lint-python.sh | head -10
$
```
Tree-SHA512: 3f826d39cffb6438388e5efcb20a9622ff8238247e882d68f7b38609877421b2a8e10e9229575f8eb6a8fa42dec4256986692e92922c86171f750a0e887438d9
2018-08-13 14:24:43 +02:00
from test_framework . messages import CTransaction
2016-09-22 10:20:44 +02:00
from test_framework . script import CScript
Merge #13054: tests: Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
68400d8b96 tests: Use explicit imports (practicalswift)
Pull request description:
Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
Wildcard imports make it unclear which names are present in the namespace, confusing both readers and many automated tools.
An additional benefit of not using wildcard imports in tests scripts is that readers of a test script then can infer the rough testing scope just by looking at the imports.
Before this commit:
```
$ contrib/devtools/lint-python.sh | head -10
./test/functional/feature_rbf.py:8:1: F403 'from test_framework.util import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:9:1: F403 'from test_framework.script import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:10:1: F403 'from test_framework.mininode import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:15:12: F405 bytes_to_hex_str may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:17:58: F405 CScript may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:25:13: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:31: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:60: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:41: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:68: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
$
```
After this commit:
```
$ contrib/devtools/lint-python.sh | head -10
$
```
Tree-SHA512: 3f826d39cffb6438388e5efcb20a9622ff8238247e882d68f7b38609877421b2a8e10e9229575f8eb6a8fa42dec4256986692e92922c86171f750a0e887438d9
2018-08-13 14:24:43 +02:00
from test_framework . test_framework import BitcoinTestFramework
2021-08-27 21:03:02 +02:00
from test_framework . util import assert_equal , assert_raises_rpc_error
Merge #13054: tests: Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
68400d8b96 tests: Use explicit imports (practicalswift)
Pull request description:
Enable automatic detection of undefined names in Python tests scripts. Remove wildcard imports.
Wildcard imports make it unclear which names are present in the namespace, confusing both readers and many automated tools.
An additional benefit of not using wildcard imports in tests scripts is that readers of a test script then can infer the rough testing scope just by looking at the imports.
Before this commit:
```
$ contrib/devtools/lint-python.sh | head -10
./test/functional/feature_rbf.py:8:1: F403 'from test_framework.util import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:9:1: F403 'from test_framework.script import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:10:1: F403 'from test_framework.mininode import *' used; unable to detect undefined names
./test/functional/feature_rbf.py:15:12: F405 bytes_to_hex_str may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:17:58: F405 CScript may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:25:13: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:31: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:26:60: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:41: F405 satoshi_round may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
./test/functional/feature_rbf.py:30:68: F405 COIN may be undefined, or defined from star imports: test_framework.mininode, test_framework.script, test_framework.util
$
```
After this commit:
```
$ contrib/devtools/lint-python.sh | head -10
$
```
Tree-SHA512: 3f826d39cffb6438388e5efcb20a9622ff8238247e882d68f7b38609877421b2a8e10e9229575f8eb6a8fa42dec4256986692e92922c86171f750a0e887438d9
2018-08-13 14:24:43 +02:00
2019-10-24 10:43:02 +02:00
NULLDUMMY_ERROR = " non-mandatory-script-verify-flag (Dummy CHECKMULTISIG argument must be zero) "
2016-09-22 10:20:44 +02:00
def trueDummy ( tx ) :
scriptSig = CScript ( tx . vin [ 0 ] . scriptSig )
newscript = [ ]
for i in scriptSig :
2021-04-01 13:17:07 +02:00
if len ( newscript ) == 0 :
2021-08-27 21:03:02 +02:00
assert len ( i ) == 0
2016-09-22 10:20:44 +02:00
newscript . append ( b ' \x51 ' )
else :
newscript . append ( i )
tx . vin [ 0 ] . scriptSig = CScript ( newscript )
tx . rehash ( )
2016-09-29 16:45:42 +02:00
class NULLDUMMYTest ( BitcoinTestFramework ) :
2016-09-22 10:20:44 +02:00
2017-09-01 18:47:13 +02:00
def set_test_params ( self ) :
2021-04-01 13:17:07 +02:00
# Need two nodes so GBT (getblocktemplate) doesn't complain that it's not connected.
2024-01-25 14:30:00 +01:00
self . num_nodes = 2
2016-09-29 16:45:42 +02:00
self . setup_clean_chain = True
2021-04-01 13:17:07 +02:00
self . extra_args = [ [ ' -whitelist=127.0.0.1 ' , ' -dip3params=105:105 ' , ' -bip147height=105 ' ] ] * 2
2016-09-22 10:20:44 +02:00
2018-09-13 12:33:15 +02:00
def skip_test_if_missing_module ( self ) :
self . skip_if_no_wallet ( )
2016-09-22 10:20:44 +02:00
def run_test ( self ) :
2020-11-02 16:54:06 +01:00
self . nodes [ 0 ] . createwallet ( wallet_name = ' wmulti ' , disable_private_keys = True )
wmulti = self . nodes [ 0 ] . get_wallet_rpc ( ' wmulti ' )
w0 = self . nodes [ 0 ] . get_wallet_rpc ( self . default_wallet_name )
self . address = w0 . getnewaddress ( )
self . pubkey = w0 . getaddressinfo ( self . address ) [ ' pubkey ' ]
self . ms_address = wmulti . addmultisigaddress ( 1 , [ self . pubkey ] ) [ ' address ' ]
if not self . options . descriptors :
# Legacy wallets need to import these so that they are watched by the wallet. This is unnecssary (and does not need to be tested) for descriptor wallets
wmulti . importaddress ( self . ms_address )
2016-09-22 10:20:44 +02:00
2021-04-01 13:17:07 +02:00
self . coinbase_blocks = self . nodes [ 0 ] . generate ( 2 ) # block height = 2
2016-09-22 10:20:44 +02:00
coinbase_txid = [ ]
for i in self . coinbase_blocks :
coinbase_txid . append ( self . nodes [ 0 ] . getblock ( i ) [ ' tx ' ] [ 0 ] )
2021-04-01 13:17:07 +02:00
self . nodes [ 0 ] . generate ( COINBASE_MATURITY ) # block height = COINBASE_MATURITY + 2
2016-09-22 10:20:44 +02:00
self . lastblockhash = self . nodes [ 0 ] . getbestblockhash ( )
2021-04-01 13:17:07 +02:00
self . lastblockheight = COINBASE_MATURITY + 2
self . lastblocktime = self . mocktime + self . lastblockheight
2016-09-22 10:20:44 +02:00
2021-04-01 13:17:07 +02:00
self . log . info ( f " Test 1: NULLDUMMY compliant base transactions should be accepted to mempool and mined before activation [ { COINBASE_MATURITY + 3 } ] " )
2018-08-13 13:29:32 +02:00
test1txs = [ create_transaction ( self . nodes [ 0 ] , coinbase_txid [ 0 ] , self . ms_address , amount = 49 ) ]
2021-12-12 07:27:44 +01:00
txid1 = self . nodes [ 0 ] . sendrawtransaction ( test1txs [ 0 ] . serialize ( ) . hex ( ) , 0 )
2018-08-13 13:29:32 +02:00
test1txs . append ( create_transaction ( self . nodes [ 0 ] , txid1 , self . ms_address , amount = 48 ) )
2021-12-12 07:27:44 +01:00
txid2 = self . nodes [ 0 ] . sendrawtransaction ( test1txs [ 1 ] . serialize ( ) . hex ( ) , 0 )
2018-01-30 20:18:17 +01:00
self . block_submit ( self . nodes [ 0 ] , test1txs , True )
2016-09-22 10:20:44 +02:00
2017-03-09 21:16:20 +01:00
self . log . info ( " Test 2: Non-NULLDUMMY base multisig transaction should not be accepted to mempool before activation " )
2018-08-13 13:29:32 +02:00
test2tx = create_transaction ( self . nodes [ 0 ] , txid2 , self . ms_address , amount = 47 )
2016-09-22 10:20:44 +02:00
trueDummy ( test2tx )
2021-12-12 07:27:44 +01:00
assert_raises_rpc_error ( - 26 , NULLDUMMY_ERROR , self . nodes [ 0 ] . sendrawtransaction , test2tx . serialize ( ) . hex ( ) , 0 )
2016-09-22 10:20:44 +02:00
2021-04-01 13:17:07 +02:00
self . log . info ( f " Test 3: Non-NULLDUMMY base transactions should be accepted in a block before activation [ { COINBASE_MATURITY + 4 } ] " )
2018-01-30 20:18:17 +01:00
self . block_submit ( self . nodes [ 0 ] , [ test2tx ] , True )
2016-09-22 10:20:44 +02:00
2017-03-19 10:13:45 +01:00
self . log . info ( " Test 4: Non-NULLDUMMY base multisig transaction is invalid after activation " )
2018-08-13 13:29:32 +02:00
test4tx = create_transaction ( self . nodes [ 0 ] , test2tx . hash , self . address , amount = 46 )
2016-09-22 10:20:44 +02:00
test6txs = [ CTransaction ( test4tx ) ]
trueDummy ( test4tx )
2021-12-12 07:27:44 +01:00
assert_raises_rpc_error ( - 26 , NULLDUMMY_ERROR , self . nodes [ 0 ] . sendrawtransaction , test4tx . serialize ( ) . hex ( ) , 0 )
2016-09-22 10:20:44 +02:00
self . block_submit ( self . nodes [ 0 ] , [ test4tx ] )
2021-04-01 13:17:07 +02:00
self . log . info ( f " Test 6: NULLDUMMY compliant base/witness transactions should be accepted to mempool and in block after activation [ { COINBASE_MATURITY + 5 } ] " )
2016-09-22 10:20:44 +02:00
for i in test6txs :
2021-12-12 07:27:44 +01:00
self . nodes [ 0 ] . sendrawtransaction ( i . serialize ( ) . hex ( ) , 0 )
2018-01-30 20:18:17 +01:00
self . block_submit ( self . nodes [ 0 ] , test6txs , True )
2016-09-22 10:20:44 +02:00
2017-03-17 14:30:48 +01:00
def block_submit ( self , node , txs , accept = False ) :
2021-04-01 13:17:07 +02:00
dip4_activated = self . lastblockheight + 1 > = COINBASE_MATURITY + 5
2024-01-25 14:30:00 +01:00
tmpl = node . getblocktemplate ( NORMAL_GBT_REQUEST_PARAMS )
assert_equal ( tmpl [ ' previousblockhash ' ] , self . lastblockhash )
assert_equal ( tmpl [ ' height ' ] , self . lastblockheight + 1 )
block = create_block ( tmpl = tmpl , ntime = self . lastblocktime + 1 , dip4_activated = dip4_activated )
2016-09-22 10:20:44 +02:00
for tx in txs :
tx . rehash ( )
block . vtx . append ( tx )
block . hashMerkleRoot = block . calc_merkle_root ( )
block . rehash ( )
block . solve ( )
2020-04-24 22:34:38 +02:00
assert_equal ( None if accept else ' block-validation-failed ' , node . submitblock ( block . serialize ( ) . hex ( ) ) )
2016-09-22 10:20:44 +02:00
if ( accept ) :
assert_equal ( node . getbestblockhash ( ) , block . hash )
self . lastblockhash = block . hash
self . lastblocktime + = 1
self . lastblockheight + = 1
else :
assert_equal ( node . getbestblockhash ( ) , self . lastblockhash )
2021-04-01 13:17:07 +02:00
2016-09-22 10:20:44 +02:00
if __name__ == ' __main__ ' :
2016-09-29 16:45:42 +02:00
NULLDUMMYTest ( ) . main ( )