2016-06-16 16:57:48 +02:00
#!/usr/bin/env python3
2018-07-27 00:36:45 +02:00
# Copyright (c) 2014-2018 The Bitcoin Core developers
2016-06-16 16:57:48 +02:00
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
2018-12-06 19:29:32 +01:00
""" Test the importmulti RPC.
Test importmulti by generating keys on node0 , importing the scriptPubKeys and
addresses on node1 and then testing the address info for the different address
variants .
- ` get_key ( ) ` and ` get_multisig ( ) ` are called to generate keys on node0 and
return the privkeys , pubkeys and all variants of scriptPubKey and address .
- ` test_importmulti ( ) ` is called to send an importmulti call to node1 , test
success , and ( if unsuccessful ) test the error code and error message returned .
- ` test_address ( ) ` is called to call getaddressinfo for an address on node1
and test the values returned . """
2018-12-13 18:43:35 +01:00
2018-11-30 23:49:03 +01:00
from test_framework . script import (
CScript ,
OP_NOP ,
)
2016-06-16 16:57:48 +02:00
from test_framework . test_framework import BitcoinTestFramework
2018-09-10 19:08:13 +02:00
from test_framework . util import (
assert_equal ,
assert_greater_than ,
assert_raises_rpc_error ,
bytes_to_hex_str ,
)
2018-12-13 18:43:35 +01:00
from test_framework . wallet_util import (
get_key ,
get_multisig ,
test_address ,
)
2018-12-06 00:28:32 +01:00
2018-09-10 19:08:13 +02:00
class ImportMultiTest ( BitcoinTestFramework ) :
2017-06-10 00:21:21 +02:00
def set_test_params ( self ) :
2016-06-16 16:57:48 +02:00
self . num_nodes = 2
2017-12-01 01:49:11 +01:00
self . extra_args = [ [ " -addresstype=legacy " ] , [ " -addresstype=legacy " ] ]
2016-06-16 16:57:48 +02:00
self . setup_clean_chain = True
2018-09-09 19:32:37 +02:00
def skip_test_if_missing_module ( self ) :
self . skip_if_no_wallet ( )
2017-04-03 15:34:04 +02:00
def setup_network ( self ) :
self . setup_nodes ( )
2016-06-16 16:57:48 +02:00
2018-10-25 03:28:17 +02:00
def test_importmulti ( self , req , success , error_code = None , error_message = None , warnings = [ ] ) :
2018-12-06 15:52:38 +01:00
""" Run importmulti and assert success """
result = self . nodes [ 1 ] . importmulti ( [ req ] )
2018-10-25 03:28:17 +02:00
observed_warnings = [ ]
if ' warnings ' in result [ 0 ] :
observed_warnings = result [ 0 ] [ ' warnings ' ]
assert_equal ( " \n " . join ( sorted ( warnings ) ) , " \n " . join ( sorted ( observed_warnings ) ) )
2018-12-06 15:52:38 +01:00
assert_equal ( result [ 0 ] [ ' success ' ] , success )
if error_code is not None :
assert_equal ( result [ 0 ] [ ' error ' ] [ ' code ' ] , error_code )
assert_equal ( result [ 0 ] [ ' error ' ] [ ' message ' ] , error_message )
2018-11-30 23:47:46 +01:00
def run_test ( self ) :
2017-03-08 00:46:17 +01:00
self . log . info ( " Mining blocks... " )
2016-06-16 16:57:48 +02:00
self . nodes [ 0 ] . generate ( 1 )
self . nodes [ 1 ] . generate ( 1 )
2016-11-08 22:55:02 +01:00
timestamp = self . nodes [ 1 ] . getblock ( self . nodes [ 1 ] . getbestblockhash ( ) ) [ ' mediantime ' ]
2016-06-16 16:57:48 +02:00
2018-02-09 17:12:27 +01:00
node0_address1 = self . nodes [ 0 ] . getaddressinfo ( self . nodes [ 0 ] . getnewaddress ( ) )
2016-06-16 16:57:48 +02:00
2018-11-30 23:47:46 +01:00
# Check only one address
2016-06-16 16:57:48 +02:00
assert_equal ( node0_address1 [ ' ismine ' ] , True )
2018-11-30 23:47:46 +01:00
# Node 1 sync test
assert_equal ( self . nodes [ 1 ] . getblockcount ( ) , 1 )
2016-06-16 16:57:48 +02:00
2018-11-30 23:47:46 +01:00
# Address Test - before import
2018-02-09 17:12:27 +01:00
address_info = self . nodes [ 1 ] . getaddressinfo ( node0_address1 [ ' address ' ] )
2016-06-16 16:57:48 +02:00
assert_equal ( address_info [ ' iswatchonly ' ] , False )
assert_equal ( address_info [ ' ismine ' ] , False )
# RPC importmulti -----------------------------------------------
2018-11-07 17:24:34 +01:00
# Bitcoin Address (implicit non-internal)
2017-03-08 00:46:17 +01:00
self . log . info ( " Should import an address " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-12-13 18:32:50 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : key . p2pkh_addr } ,
2018-12-06 15:52:38 +01:00
" timestamp " : " now " } ,
2018-12-13 18:32:50 +01:00
success = True )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
iswatchonly = True ,
ismine = False ,
timestamp = timestamp ,
ischange = False )
2018-12-13 18:32:50 +01:00
watchonly_address = key . p2pkh_addr
2016-11-08 22:55:02 +01:00
watchonly_timestamp = timestamp
2016-06-16 16:57:48 +02:00
2017-03-08 00:46:17 +01:00
self . log . info ( " Should not import an invalid address " )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : " not valid address " } ,
" timestamp " : " now " } ,
2018-12-13 18:32:50 +01:00
success = False ,
2018-12-06 15:52:38 +01:00
error_code = - 5 ,
2018-10-25 03:28:17 +02:00
error_message = ' Invalid address \" not valid address \" ' )
2016-06-16 16:57:48 +02:00
# ScriptPubKey + internal
2017-03-08 00:46:17 +01:00
self . log . info ( " Should import a scriptPubKey with internal flag " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : key . p2pkh_script ,
" timestamp " : " now " ,
" internal " : True } ,
2018-12-13 18:32:50 +01:00
success = True )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
iswatchonly = True ,
ismine = False ,
timestamp = timestamp ,
ischange = True )
2016-06-16 16:57:48 +02:00
2018-10-09 07:43:20 +02:00
# ScriptPubKey + internal + label
self . log . info ( " Should not allow a label to be specified when internal is true " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : key . p2pkh_script ,
" timestamp " : " now " ,
" internal " : True ,
" label " : " Example label " } ,
2018-12-13 18:32:50 +01:00
success = False ,
2018-12-06 15:52:38 +01:00
error_code = - 8 ,
error_message = ' Internal addresses should not have a label ' )
2018-10-09 07:43:20 +02:00
2016-11-28 23:19:27 +01:00
# Nonstandard scriptPubKey + !internal
self . log . info ( " Should not import a nonstandard scriptPubKey without internal flag " )
2018-12-06 00:28:32 +01:00
nonstandardScriptPubKey = key . p2pkh_script + bytes_to_hex_str ( CScript ( [ OP_NOP ] ) )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : nonstandardScriptPubKey ,
" timestamp " : " now " } ,
2018-12-13 18:32:50 +01:00
success = False ,
2018-12-06 15:52:38 +01:00
error_code = - 8 ,
error_message = ' Internal must be set to true for nonstandard scriptPubKey imports. ' )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
iswatchonly = False ,
ismine = False ,
timestamp = None )
2016-06-16 16:57:48 +02:00
2018-11-07 17:24:34 +01:00
# Address + Public key + !Internal(explicit)
2017-03-08 00:46:17 +01:00
self . log . info ( " Should import an address with public key " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-12-13 18:32:50 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : key . p2pkh_addr } ,
2018-12-06 15:52:38 +01:00
" timestamp " : " now " ,
" pubkeys " : [ key . pubkey ] ,
" internal " : False } ,
2018-12-13 18:32:50 +01:00
success = True ,
2018-10-25 03:28:17 +02:00
warnings = [ " Some private keys are missing, outputs will be considered watchonly. If this is intentional, specify the watchonly flag. " ] )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
iswatchonly = True ,
ismine = False ,
timestamp = timestamp )
2016-06-16 16:57:48 +02:00
# ScriptPubKey + Public key + internal
2017-03-08 00:46:17 +01:00
self . log . info ( " Should import a scriptPubKey with internal and with public key " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : key . p2pkh_script ,
" timestamp " : " now " ,
" pubkeys " : [ key . pubkey ] ,
" internal " : True } ,
2018-12-13 18:32:50 +01:00
success = True ,
2018-10-25 03:28:17 +02:00
warnings = [ " Some private keys are missing, outputs will be considered watchonly. If this is intentional, specify the watchonly flag. " ] )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
iswatchonly = True ,
ismine = False ,
timestamp = timestamp )
2016-06-16 16:57:48 +02:00
2016-11-28 23:19:27 +01:00
# Nonstandard scriptPubKey + Public key + !internal
self . log . info ( " Should not import a nonstandard scriptPubKey without internal and with public key " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : nonstandardScriptPubKey ,
" timestamp " : " now " ,
" pubkeys " : [ key . pubkey ] } ,
2018-12-13 18:32:50 +01:00
success = False ,
2018-12-06 15:52:38 +01:00
error_code = - 8 ,
error_message = ' Internal must be set to true for nonstandard scriptPubKey imports. ' )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
iswatchonly = False ,
ismine = False ,
timestamp = None )
2016-06-16 16:57:48 +02:00
# Address + Private key + !watchonly
2017-03-08 00:46:17 +01:00
self . log . info ( " Should import an address with private key " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-12-13 18:32:50 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : key . p2pkh_addr } ,
2018-12-06 15:52:38 +01:00
" timestamp " : " now " ,
" keys " : [ key . privkey ] } ,
2018-12-13 18:32:50 +01:00
success = True )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
iswatchonly = False ,
ismine = True ,
timestamp = timestamp )
2016-06-16 16:57:48 +02:00
2017-10-11 12:12:59 +02:00
self . log . info ( " Should not import an address with private key if is already imported " )
2018-12-13 18:32:50 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : key . p2pkh_addr } ,
2018-12-06 15:52:38 +01:00
" timestamp " : " now " ,
" keys " : [ key . privkey ] } ,
2018-12-13 18:32:50 +01:00
success = False ,
2018-12-06 15:52:38 +01:00
error_code = - 4 ,
2018-12-13 02:01:36 +01:00
error_message = ' The wallet already contains the private key for this address or script ( " ' + key . p2pkh_script + ' " ) ' )
2017-10-11 12:12:59 +02:00
2016-06-16 16:57:48 +02:00
# Address + Private key + watchonly
2018-10-25 03:28:17 +02:00
self . log . info ( " Should import an address with private key and with watchonly " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-12-13 18:32:50 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : key . p2pkh_addr } ,
2018-12-06 15:52:38 +01:00
" timestamp " : " now " ,
" keys " : [ key . privkey ] ,
" watchonly " : True } ,
2018-12-13 18:32:50 +01:00
success = True ,
2018-10-25 03:28:17 +02:00
warnings = [ " All private keys are provided, outputs will be considered spendable. If this is intentional, do not specify the watchonly flag. " ] )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
iswatchonly = False ,
ismine = True ,
timestamp = timestamp )
2016-06-16 16:57:48 +02:00
# ScriptPubKey + Private key + internal
2017-03-08 00:46:17 +01:00
self . log . info ( " Should import a scriptPubKey with internal and with private key " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : key . p2pkh_script ,
" timestamp " : " now " ,
" keys " : [ key . privkey ] ,
" internal " : True } ,
2018-12-13 18:32:50 +01:00
success = True )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
iswatchonly = False ,
ismine = True ,
timestamp = timestamp )
2016-06-16 16:57:48 +02:00
2016-11-28 23:19:27 +01:00
# Nonstandard scriptPubKey + Private key + !internal
self . log . info ( " Should not import a nonstandard scriptPubKey without internal and with private key " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : nonstandardScriptPubKey ,
" timestamp " : " now " ,
" keys " : [ key . privkey ] } ,
2018-12-13 18:32:50 +01:00
success = False ,
2018-12-06 15:52:38 +01:00
error_code = - 8 ,
error_message = ' Internal must be set to true for nonstandard scriptPubKey imports. ' )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
iswatchonly = False ,
ismine = False ,
timestamp = None )
2016-06-16 16:57:48 +02:00
# P2SH address
2018-12-13 18:43:35 +01:00
multisig = get_multisig ( self . nodes [ 0 ] )
2016-06-16 16:57:48 +02:00
self . nodes [ 1 ] . generate ( 100 )
2018-12-06 00:28:32 +01:00
self . nodes [ 1 ] . sendtoaddress ( multisig . p2sh_addr , 10.00 )
2016-06-16 16:57:48 +02:00
self . nodes [ 1 ] . generate ( 1 )
2016-11-08 22:55:02 +01:00
timestamp = self . nodes [ 1 ] . getblock ( self . nodes [ 1 ] . getbestblockhash ( ) ) [ ' mediantime ' ]
2016-06-16 16:57:48 +02:00
2017-03-08 00:46:17 +01:00
self . log . info ( " Should import a p2sh " )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : multisig . p2sh_addr } ,
" timestamp " : " now " } ,
2018-12-13 18:32:50 +01:00
success = True )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
multisig . p2sh_addr ,
isscript = True ,
iswatchonly = True ,
timestamp = timestamp )
2018-12-06 00:28:32 +01:00
p2shunspent = self . nodes [ 1 ] . listunspent ( 0 , 999999 , [ multisig . p2sh_addr ] ) [ 0 ]
2016-06-16 16:57:48 +02:00
assert_equal ( p2shunspent [ ' spendable ' ] , False )
assert_equal ( p2shunspent [ ' solvable ' ] , False )
# P2SH + Redeem script
2018-12-13 18:43:35 +01:00
multisig = get_multisig ( self . nodes [ 0 ] )
2016-06-16 16:57:48 +02:00
self . nodes [ 1 ] . generate ( 100 )
2018-12-06 00:28:32 +01:00
self . nodes [ 1 ] . sendtoaddress ( multisig . p2sh_addr , 10.00 )
2016-06-16 16:57:48 +02:00
self . nodes [ 1 ] . generate ( 1 )
2016-11-08 22:55:02 +01:00
timestamp = self . nodes [ 1 ] . getblock ( self . nodes [ 1 ] . getbestblockhash ( ) ) [ ' mediantime ' ]
2016-06-16 16:57:48 +02:00
2017-03-08 00:46:17 +01:00
self . log . info ( " Should import a p2sh with respective redeem script " )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : multisig . p2sh_addr } ,
" timestamp " : " now " ,
" redeemscript " : multisig . redeem_script } ,
2018-12-13 18:32:50 +01:00
success = True ,
2018-10-25 03:28:17 +02:00
warnings = [ " Some private keys are missing, outputs will be considered watchonly. If this is intentional, specify the watchonly flag. " ] )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
multisig . p2sh_addr , timestamp = timestamp , iswatchonly = True , ismine = False , solvable = True )
2016-06-16 16:57:48 +02:00
2018-12-06 00:28:32 +01:00
p2shunspent = self . nodes [ 1 ] . listunspent ( 0 , 999999 , [ multisig . p2sh_addr ] ) [ 0 ]
2016-06-16 16:57:48 +02:00
assert_equal ( p2shunspent [ ' spendable ' ] , False )
assert_equal ( p2shunspent [ ' solvable ' ] , True )
# P2SH + Redeem script + Private Keys + !Watchonly
2018-12-13 18:43:35 +01:00
multisig = get_multisig ( self . nodes [ 0 ] )
2016-06-16 16:57:48 +02:00
self . nodes [ 1 ] . generate ( 100 )
2018-12-06 00:28:32 +01:00
self . nodes [ 1 ] . sendtoaddress ( multisig . p2sh_addr , 10.00 )
2016-06-16 16:57:48 +02:00
self . nodes [ 1 ] . generate ( 1 )
2016-11-08 22:55:02 +01:00
timestamp = self . nodes [ 1 ] . getblock ( self . nodes [ 1 ] . getbestblockhash ( ) ) [ ' mediantime ' ]
2016-06-16 16:57:48 +02:00
2017-03-08 00:46:17 +01:00
self . log . info ( " Should import a p2sh with respective redeem script and private keys " )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : multisig . p2sh_addr } ,
" timestamp " : " now " ,
" redeemscript " : multisig . redeem_script ,
" keys " : multisig . privkeys [ 0 : 2 ] } ,
2018-12-13 18:32:50 +01:00
success = True ,
2018-10-25 03:28:17 +02:00
warnings = [ " Some private keys are missing, outputs will be considered watchonly. If this is intentional, specify the watchonly flag. " ] )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
multisig . p2sh_addr ,
timestamp = timestamp ,
ismine = False ,
iswatchonly = True ,
solvable = True )
2016-06-16 16:57:48 +02:00
2018-12-06 00:28:32 +01:00
p2shunspent = self . nodes [ 1 ] . listunspent ( 0 , 999999 , [ multisig . p2sh_addr ] ) [ 0 ]
2016-06-16 16:57:48 +02:00
assert_equal ( p2shunspent [ ' spendable ' ] , False )
assert_equal ( p2shunspent [ ' solvable ' ] , True )
# P2SH + Redeem script + Private Keys + Watchonly
2018-12-13 18:43:35 +01:00
multisig = get_multisig ( self . nodes [ 0 ] )
2016-06-16 16:57:48 +02:00
self . nodes [ 1 ] . generate ( 100 )
2018-12-06 00:28:32 +01:00
self . nodes [ 1 ] . sendtoaddress ( multisig . p2sh_addr , 10.00 )
2016-06-16 16:57:48 +02:00
self . nodes [ 1 ] . generate ( 1 )
2017-02-21 16:53:07 +01:00
timestamp = self . nodes [ 1 ] . getblock ( self . nodes [ 1 ] . getbestblockhash ( ) ) [ ' mediantime ' ]
2016-06-16 16:57:48 +02:00
2017-03-08 00:46:17 +01:00
self . log . info ( " Should import a p2sh with respective redeem script and private keys " )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : multisig . p2sh_addr } ,
" timestamp " : " now " ,
" redeemscript " : multisig . redeem_script ,
" keys " : multisig . privkeys [ 0 : 2 ] ,
" watchonly " : True } ,
2018-12-13 18:32:50 +01:00
success = True )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
multisig . p2sh_addr ,
iswatchonly = True ,
ismine = False ,
solvable = True ,
timestamp = timestamp )
2016-06-16 16:57:48 +02:00
2016-10-19 16:17:42 +02:00
# Address + Public key + !Internal + Wrong pubkey
2018-10-25 03:28:17 +02:00
self . log . info ( " Should not import an address with the wrong public key as non-solvable " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
wrong_key = get_key ( self . nodes [ 0 ] ) . pubkey
2018-12-13 18:32:50 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : key . p2pkh_addr } ,
2018-12-06 15:52:38 +01:00
" timestamp " : " now " ,
" pubkeys " : [ wrong_key ] } ,
2018-12-13 18:32:50 +01:00
success = True ,
2018-10-25 03:28:17 +02:00
warnings = [ " Importing as non-solvable: some required keys are missing. If this is intentional, don ' t provide any keys, pubkeys, witnessscript, or redeemscript. " , " Some private keys are missing, outputs will be considered watchonly. If this is intentional, specify the watchonly flag. " ] )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
iswatchonly = True ,
ismine = False ,
solvable = False ,
timestamp = timestamp )
2016-10-19 16:17:42 +02:00
# ScriptPubKey + Public key + internal + Wrong pubkey
2018-10-25 03:28:17 +02:00
self . log . info ( " Should import a scriptPubKey with internal and with a wrong public key as non-solvable " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
wrong_key = get_key ( self . nodes [ 0 ] ) . pubkey
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : key . p2pkh_script ,
" timestamp " : " now " ,
" pubkeys " : [ wrong_key ] ,
" internal " : True } ,
2018-12-13 18:32:50 +01:00
success = True ,
2018-10-25 03:28:17 +02:00
warnings = [ " Importing as non-solvable: some required keys are missing. If this is intentional, don ' t provide any keys, pubkeys, witnessscript, or redeemscript. " , " Some private keys are missing, outputs will be considered watchonly. If this is intentional, specify the watchonly flag. " ] )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
iswatchonly = True ,
ismine = False ,
solvable = False ,
timestamp = timestamp )
2016-06-16 16:57:48 +02:00
2016-10-19 16:17:42 +02:00
# Address + Private key + !watchonly + Wrong private key
2018-10-25 03:28:17 +02:00
self . log . info ( " Should import an address with a wrong private key as non-solvable " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
wrong_privkey = get_key ( self . nodes [ 0 ] ) . privkey
2018-12-13 18:32:50 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : key . p2pkh_addr } ,
2018-12-06 15:52:38 +01:00
" timestamp " : " now " ,
" keys " : [ wrong_privkey ] } ,
2018-12-13 18:32:50 +01:00
success = True ,
2018-10-25 03:28:17 +02:00
warnings = [ " Importing as non-solvable: some required keys are missing. If this is intentional, don ' t provide any keys, pubkeys, witnessscript, or redeemscript. " , " Some private keys are missing, outputs will be considered watchonly. If this is intentional, specify the watchonly flag. " ] )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
iswatchonly = True ,
ismine = False ,
solvable = False ,
timestamp = timestamp )
2016-10-19 16:17:42 +02:00
# ScriptPubKey + Private key + internal + Wrong private key
2018-10-25 03:28:17 +02:00
self . log . info ( " Should import a scriptPubKey with internal and with a wrong private key as non-solvable " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
wrong_privkey = get_key ( self . nodes [ 0 ] ) . privkey
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : key . p2pkh_script ,
" timestamp " : " now " ,
" keys " : [ wrong_privkey ] ,
" internal " : True } ,
2018-12-13 18:32:50 +01:00
success = True ,
2018-10-25 03:28:17 +02:00
warnings = [ " Importing as non-solvable: some required keys are missing. If this is intentional, don ' t provide any keys, pubkeys, witnessscript, or redeemscript. " , " Some private keys are missing, outputs will be considered watchonly. If this is intentional, specify the watchonly flag. " ] )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
iswatchonly = True ,
ismine = False ,
solvable = False ,
timestamp = timestamp )
2016-11-08 22:55:02 +01:00
2017-02-21 16:53:07 +01:00
# Importing existing watch only address with new timestamp should replace saved timestamp.
assert_greater_than ( timestamp , watchonly_timestamp )
2017-03-17 23:04:13 +01:00
self . log . info ( " Should replace previously saved watch only timestamp. " )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : watchonly_address } ,
" timestamp " : " now " } ,
2018-12-13 18:32:50 +01:00
success = True )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
watchonly_address ,
iswatchonly = True ,
ismine = False ,
timestamp = timestamp )
2017-02-21 16:53:07 +01:00
watchonly_timestamp = timestamp
2016-11-08 22:55:02 +01:00
# restart nodes to check for proper serialization/deserialization of watch only address
2017-03-24 04:56:31 +01:00
self . stop_nodes ( )
2017-06-09 22:35:17 +02:00
self . start_nodes ( )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
watchonly_address ,
iswatchonly = True ,
ismine = False ,
timestamp = watchonly_timestamp )
2016-10-19 16:17:42 +02:00
2017-02-03 22:23:13 +01:00
# Bad or missing timestamps
2017-03-08 00:46:17 +01:00
self . log . info ( " Should throw on invalid or missing timestamp values " )
2017-07-12 16:33:46 +02:00
assert_raises_rpc_error ( - 3 , ' Missing required timestamp field for key ' ,
2018-12-06 00:28:32 +01:00
self . nodes [ 1 ] . importmulti , [ { " scriptPubKey " : key . p2pkh_script } ] )
2017-07-12 16:33:46 +02:00
assert_raises_rpc_error ( - 3 , ' Expected number or " now " timestamp value for key. got type string ' ,
2018-11-30 23:47:46 +01:00
self . nodes [ 1 ] . importmulti , [ {
2018-12-06 00:28:32 +01:00
" scriptPubKey " : key . p2pkh_script ,
2018-11-30 23:47:46 +01:00
" timestamp " : " "
} ] )
2017-02-03 22:23:13 +01:00
2018-10-09 07:43:20 +02:00
# Import P2WPKH address as watch only
self . log . info ( " Should import a P2WPKH address as watch only " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-12-13 18:32:50 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : key . p2wpkh_addr } ,
2018-12-06 15:52:38 +01:00
" timestamp " : " now " } ,
2018-12-13 18:32:50 +01:00
success = True )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2wpkh_addr ,
iswatchonly = True ,
solvable = False )
2018-10-09 07:43:20 +02:00
# Import P2WPKH address with public key but no private key
self . log . info ( " Should import a P2WPKH address and public key as solvable but not spendable " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-12-13 18:32:50 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : key . p2wpkh_addr } ,
2018-12-06 15:52:38 +01:00
" timestamp " : " now " ,
" pubkeys " : [ key . pubkey ] } ,
2018-12-13 18:32:50 +01:00
success = True ,
2018-10-25 03:28:17 +02:00
warnings = [ " Some private keys are missing, outputs will be considered watchonly. If this is intentional, specify the watchonly flag. " ] )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2wpkh_addr ,
ismine = False ,
solvable = True )
2018-10-09 07:43:20 +02:00
# Import P2WPKH address with key and check it is spendable
self . log . info ( " Should import a P2WPKH address with key " )
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-12-13 18:32:50 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : key . p2wpkh_addr } ,
2018-12-06 15:52:38 +01:00
" timestamp " : " now " ,
" keys " : [ key . privkey ] } ,
2018-12-13 18:32:50 +01:00
success = True )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2wpkh_addr ,
iswatchonly = False ,
ismine = True )
2018-10-09 07:43:20 +02:00
# P2WSH multisig address without scripts or keys
2018-12-13 18:43:35 +01:00
multisig = get_multisig ( self . nodes [ 0 ] )
2018-10-09 07:43:20 +02:00
self . log . info ( " Should import a p2wsh multisig as watch only without respective redeem script and private keys " )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : multisig . p2wsh_addr } ,
" timestamp " : " now " } ,
2018-12-13 18:32:50 +01:00
success = True )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
multisig . p2sh_addr ,
solvable = False )
2018-10-09 07:43:20 +02:00
# Same P2WSH multisig address as above, but now with witnessscript + private keys
2018-12-06 00:28:32 +01:00
self . log . info ( " Should import a p2wsh with respective witness script and private keys " )
2018-12-06 15:52:38 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : multisig . p2wsh_addr } ,
" timestamp " : " now " ,
" witnessscript " : multisig . redeem_script ,
" keys " : multisig . privkeys } ,
2018-12-13 18:32:50 +01:00
success = True )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
multisig . p2sh_addr ,
solvable = True ,
ismine = True ,
sigsrequired = 2 )
2018-10-09 07:43:20 +02:00
# P2SH-P2WPKH address with no redeemscript or public or private key
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-10-09 07:43:20 +02:00
self . log . info ( " Should import a p2sh-p2wpkh without redeem script or keys " )
2018-12-13 18:32:50 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : key . p2sh_p2wpkh_addr } ,
2018-12-06 15:52:38 +01:00
" timestamp " : " now " } ,
2018-12-13 18:32:50 +01:00
success = True )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2sh_p2wpkh_addr ,
solvable = False ,
ismine = False )
2018-10-09 07:43:20 +02:00
# P2SH-P2WPKH address + redeemscript + public key with no private key
self . log . info ( " Should import a p2sh-p2wpkh with respective redeem script and pubkey as solvable " )
2018-12-13 18:32:50 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : key . p2sh_p2wpkh_addr } ,
2018-12-06 15:52:38 +01:00
" timestamp " : " now " ,
" redeemscript " : key . p2sh_p2wpkh_redeem_script ,
" pubkeys " : [ key . pubkey ] } ,
2018-12-13 18:32:50 +01:00
success = True ,
2018-10-25 03:28:17 +02:00
warnings = [ " Some private keys are missing, outputs will be considered watchonly. If this is intentional, specify the watchonly flag. " ] )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2sh_p2wpkh_addr ,
solvable = True ,
ismine = False )
2018-10-09 07:43:20 +02:00
# P2SH-P2WPKH address + redeemscript + private key
2018-12-13 18:43:35 +01:00
key = get_key ( self . nodes [ 0 ] )
2018-10-09 07:43:20 +02:00
self . log . info ( " Should import a p2sh-p2wpkh with respective redeem script and private keys " )
2018-12-13 18:32:50 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : key . p2sh_p2wpkh_addr } ,
2018-12-06 15:52:38 +01:00
" timestamp " : " now " ,
" redeemscript " : key . p2sh_p2wpkh_redeem_script ,
" keys " : [ key . privkey ] } ,
2018-12-13 18:32:50 +01:00
success = True )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
key . p2sh_p2wpkh_addr ,
solvable = True ,
ismine = True )
2018-10-09 07:43:20 +02:00
2018-12-06 00:28:32 +01:00
# P2SH-P2WSH multisig + redeemscript with no private key
2018-12-13 18:43:35 +01:00
multisig = get_multisig ( self . nodes [ 0 ] )
2018-10-09 07:43:20 +02:00
self . log . info ( " Should import a p2sh-p2wsh with respective redeem script but no private key " )
2018-12-13 18:32:50 +01:00
self . test_importmulti ( { " scriptPubKey " : { " address " : multisig . p2sh_p2wsh_addr } ,
2018-12-06 15:52:38 +01:00
" timestamp " : " now " ,
" redeemscript " : multisig . p2wsh_script ,
" witnessscript " : multisig . redeem_script } ,
2018-12-13 18:32:50 +01:00
success = True ,
2018-10-25 03:28:17 +02:00
warnings = [ " Some private keys are missing, outputs will be considered watchonly. If this is intentional, specify the watchonly flag. " ] )
2018-12-13 18:43:35 +01:00
test_address ( self . nodes [ 1 ] ,
multisig . p2sh_p2wsh_addr ,
solvable = True ,
ismine = False )
2017-02-03 22:23:13 +01:00
2018-12-13 02:01:36 +01:00
# Test importing of a P2SH-P2WPKH address via descriptor + private key
key = get_key ( self . nodes [ 0 ] )
self . log . info ( " Should import a p2sh-p2wpkh address from descriptor and private key " )
self . test_importmulti ( { " desc " : " sh(wpkh( " + key . pubkey + " )) " ,
" timestamp " : " now " ,
" label " : " Descriptor import test " ,
" keys " : [ key . privkey ] } ,
success = True )
test_address ( self . nodes [ 1 ] ,
key . p2sh_p2wpkh_addr ,
solvable = True ,
ismine = True ,
label = " Descriptor import test " )
# Test ranged descriptor fails if range is not specified
xpriv = " tprv8ZgxMBicQKsPeuVhWwi6wuMQGfPKi9Li5GtX35jVNknACgqe3CY4g5xgkfDDJcmtF7o1QnxWDRYw4H5P26PXq7sbcUkEqeR4fg3Kxp2tigg "
addresses = [ " 2N7yv4p8G8yEaPddJxY41kPihnWvs39qCMf " , " 2MsHxyb2JS3pAySeNUsJ7mNnurtpeenDzLA " ] # hdkeypath=m/0'/0'/0' and 1'
desc = " sh(wpkh( " + xpriv + " /0 ' /0 ' /* ' " + " )) "
self . log . info ( " Ranged descriptor import should fail without a specified range " )
self . test_importmulti ( { " desc " : desc ,
" timestamp " : " now " } ,
success = False ,
error_code = - 8 ,
error_message = ' Descriptor is ranged, please specify the range ' )
# Test importing of a ranged descriptor without keys
self . log . info ( " Should import the ranged descriptor with specified range as solvable " )
self . test_importmulti ( { " desc " : desc ,
" timestamp " : " now " ,
" range " : { " end " : 1 } } ,
success = True ,
warnings = [ " Some private keys are missing, outputs will be considered watchonly. If this is intentional, specify the watchonly flag. " ] )
for address in addresses :
test_address ( self . nodes [ 1 ] ,
key . p2sh_p2wpkh_addr ,
solvable = True )
# Test importing of a P2PKH address via descriptor
key = get_key ( self . nodes [ 0 ] )
self . log . info ( " Should import a p2pkh address from descriptor " )
self . test_importmulti ( { " desc " : " pkh( " + key . pubkey + " ) " ,
" timestamp " : " now " ,
" label " : " Descriptor import test " } ,
True ,
warnings = [ " Some private keys are missing, outputs will be considered watchonly. If this is intentional, specify the watchonly flag. " ] )
test_address ( self . nodes [ 1 ] ,
key . p2pkh_addr ,
solvable = True ,
ismine = False ,
label = " Descriptor import test " )
# Test import fails if both desc and scriptPubKey are provided
key = get_key ( self . nodes [ 0 ] )
self . log . info ( " Import should fail if both scriptPubKey and desc are provided " )
self . test_importmulti ( { " desc " : " pkh( " + key . pubkey + " ) " ,
" scriptPubKey " : { " address " : key . p2pkh_addr } ,
" timestamp " : " now " } ,
success = False ,
error_code = - 8 ,
error_message = ' Both a descriptor and a scriptPubKey should not be provided. ' )
# Test import fails if neither desc nor scriptPubKey are present
key = get_key ( self . nodes [ 0 ] )
self . log . info ( " Import should fail if neither a descriptor nor a scriptPubKey are provided " )
self . test_importmulti ( { " timestamp " : " now " } ,
success = False ,
error_code = - 8 ,
error_message = ' Either a descriptor or scriptPubKey must be provided. ' )
# Test importing of a multisig via descriptor
key1 = get_key ( self . nodes [ 0 ] )
key2 = get_key ( self . nodes [ 0 ] )
self . log . info ( " Should import a 1-of-2 bare multisig from descriptor " )
self . test_importmulti ( { " desc " : " multi(1, " + key1 . pubkey + " , " + key2 . pubkey + " ) " ,
" timestamp " : " now " } ,
success = True )
self . log . info ( " Should not treat individual keys from the imported bare multisig as watchonly " )
test_address ( self . nodes [ 1 ] ,
key1 . p2pkh_addr ,
ismine = False ,
iswatchonly = False )
2016-06-16 16:57:48 +02:00
if __name__ == ' __main__ ' :
2018-11-30 23:47:46 +01:00
ImportMultiTest ( ) . main ( )