-
Notifications
You must be signed in to change notification settings - Fork 5
/
wallet_import_with_label.py
executable file
·86 lines (71 loc) · 4.02 KB
/
wallet_import_with_label.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/env python3
# Copyright (c) 2018 The Bitcoin Core developers
# Copyright (c) 2017-2020 The Raven Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
"""
Test the behavior of RPC importprivkey on set and unset labels of
addresses.
It tests different cases in which an address is imported with importaddress
with or without a label and then its private key is imported with importprivkey
with and without a label.
"""
from test_framework.test_framework import RavenTestFramework
from test_framework.wallet_util import test_address
class ImportWithLabel(RavenTestFramework):
def set_test_params(self):
self.num_nodes = 2
self.setup_clean_chain = True
def run_test(self):
"""Main test logic"""
self.log.info("Test importaddress with label and importprivkey without label.")
self.log.info("Import a watch-only address with a label.")
address = self.nodes[0].getnewaddress()
label = "Test Label"
self.nodes[1].importaddress(address, label)
test_address(self.nodes[1], address, iswatchonly=True, ismine=False, account=label)
self.log.info("Import the watch-only address's private key without a label and...")
self.log.info("the address should keep its label.")
priv_key = self.nodes[0].dumpprivkey(address)
self.nodes[1].importprivkey(priv_key)
#test_address(self.nodes[1], address, account=label)
self.log.info("Test importaddress without label and importprivkey with label.")
self.log.info("Import a watch-only address without a label.")
address2 = self.nodes[0].getnewaddress()
self.nodes[1].importaddress(address2)
test_address(self.nodes[1], address2, iswatchonly=True, ismine=False, account="")
self.log.info( "Import the watch-only address's private key with a label and...")
self.log.info("the address should have its label updated.")
priv_key2 = self.nodes[0].dumpprivkey(address2)
label2 = "Test Label 2"
self.nodes[1].importprivkey(priv_key2, label2)
test_address(self.nodes[1], address2, account=label2)
self.log.info("Test importaddress with label and importprivkey with label.")
self.log.info("Import a watch-only address with a label.")
address3 = self.nodes[0].getnewaddress()
label3_addr = "Test Label 3 for importaddress"
self.nodes[1].importaddress(address3, label3_addr)
test_address(self.nodes[1], address3, iswatchonly=True, ismine=False, account=label3_addr)
self.log.info("Import the watch-only address's private key with a label and...")
self.log.info("the address should have its label updated.")
priv_key3 = self.nodes[0].dumpprivkey(address3)
label3_priv = "Test Label 3 for importprivkey"
self.nodes[1].importprivkey(priv_key3, label3_priv)
test_address(self.nodes[1], address3, account=label3_priv)
self.log.info("Test importprivkey won't label new dests with the same label...")
self.log.info("as others labeled dests for the same key.")
self.log.info("Import a watch-only address with a label.")
address4 = self.nodes[0].getnewaddress("")
label4_addr = "Test Label 4 for importaddress"
self.nodes[1].importaddress(address4, label4_addr)
test_address(self.nodes[1], address4, iswatchonly=True, ismine=False, account=label4_addr)
self.log.info("Import the watch-only address's private key without a label and...")
self.log.info("New destinations for the key should have an empty label.")
self.log.info("New destinations for the key should have an empty label.")
priv_key4 = self.nodes[0].dumpprivkey(address4)
self.nodes[1].importprivkey(priv_key4)
embedded_addr = self.nodes[1].validateaddress(address4)['address']
test_address(self.nodes[1], embedded_addr, account="")
self.stop_nodes()
if __name__ == "__main__":
ImportWithLabel().main()