-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathfeature_part_usbdevice.py
executable file
·239 lines (179 loc) · 9.04 KB
/
feature_part_usbdevice.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
#!/usr/bin/env python3
# Copyright (c) 2018-2020 The Particl Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
import os
import json
import configparser
from test_framework.test_particl import (
GhostTestFramework,
isclose,
getIndexAtProperty,
)
from test_framework.test_framework import SkipTest
from test_framework.util import assert_raises_rpc_error
from test_framework.authproxy import JSONRPCException
class USBDeviceTest(GhostTestFramework):
def set_test_params(self):
self.setup_clean_chain = True
self.num_nodes = 3
self.extra_args = [ ['-debug','-noacceptnonstdtxn','-reservebalance=10000000', '-txindex'] for i in range(self.num_nodes)]
def skip_test_if_missing_module(self):
self.skip_if_no_wallet()
def setup_network(self, split=False):
self.add_nodes(self.num_nodes, extra_args=self.extra_args)
self.start_nodes()
self.connect_nodes_bi(0, 1)
self.connect_nodes_bi(0, 2)
self.connect_nodes_bi(1, 2)
self.sync_all()
def run_test(self):
# Check that particl has been built with USB device enabled
config = configparser.ConfigParser()
if not self.options.configfile:
self.options.configfile = os.path.dirname(__file__) + "/../config.ini"
config.read_file(open(self.options.configfile))
if not config["components"].getboolean("ENABLE_USBDEVICE"):
raise SkipTest("particld has not been built with usb device enabled.")
nodes = self.nodes
self.import_genesis_coins_a(nodes[0])
ro = nodes[1].listdevices()
assert(len(ro) == 1)
assert(ro[0]['vendor'] == 'Debug')
assert(ro[0]['product'] == 'Device')
ro = nodes[1].getdeviceinfo()
assert(ro['device'] == 'debug')
ro = nodes[1].getdevicepublickey('0')
assert(ro['address'] == 'praish9BVxVdhykpqBYEs6L65AQ7iKd9z1')
assert(ro['path'] == "m/44'/1'/0'/0")
ro = nodes[1].getdevicepublickey('0/1')
assert(ro['address'] == 'peWvjy33QptC2Gz3ww7jTTLPjC2QJmifBR')
assert(ro['path'] == "m/44'/1'/0'/0/1")
ro = nodes[1].getdevicexpub("m/44'/1'/0'", "")
assert(ro == 'pparszKXPyRegWYwPacdPduNPNEryRbZDCAiSyo8oZYSsbTjc6FLP4TCPEX58kAeCB6YW9cSdR6fsbpeWDBTgjbkYjXCoD9CNoFVefbkg3exzpQE')
message = 'This is just a test message'
sig = nodes[1].devicesignmessage('0/1', message)
assert(True == nodes[1].verifymessage('peWvjy33QptC2Gz3ww7jTTLPjC2QJmifBR', sig, message))
ro = nodes[1].initaccountfromdevice('test_acc')
assert(ro['extkey'] == 'pparszKXPyRegWYwPacdPduNPNEryRbZDCAiSyo8oZYSsbTjc6FLP4TCPEX58kAeCB6YW9cSdR6fsbpeWDBTgjbkYjXCoD9CNoFVefbkg3exzpQE')
assert(ro['path'] == "m/44'/1'/0'")
ro = nodes[1].extkey('list', 'true')
assert(len(ro) == 1)
assert(ro[0]['path'] == "m/44h/1h/0h")
assert(ro[0]['epkey'] == 'pparszKXPyRegWYwPacdPduNPNEryRbZDCAiSyo8oZYSsbTjc6FLP4TCPEX58kAeCB6YW9cSdR6fsbpeWDBTgjbkYjXCoD9CNoFVefbkg3exzpQE')
assert(ro[0]['label'] == 'test_acc')
assert(ro[0]['hardware_device'] == '0xffff 0x0001')
ro = nodes[1].extkey('account')
n = getIndexAtProperty(ro['chains'], 'use_type', 'stealth_spend')
assert(n > -1)
assert(ro['chains'][n]['path'] == "m/0h/444445h")
addr1_0 = nodes[1].getnewaddress('lbl1_0')
ro = nodes[1].filteraddresses()
assert(len(ro) == 1)
assert(ro[0]['path'] == 'm/0/0')
assert(ro[0]['owned'] == 'true')
assert(ro[0]['label'] == 'lbl1_0')
va_addr1_0 = nodes[1].getaddressinfo(addr1_0)
assert(va_addr1_0['ismine'] == True)
assert(va_addr1_0['iswatchonly'] == False)
assert(va_addr1_0['isondevice'] == True)
assert(va_addr1_0['path'] == 'm/0/0')
try:
nodes[1].getnewstealthaddress()
raise AssertionError('Should have failed.')
except JSONRPCException:
pass
extaddr1_0 = nodes[1].getnewextaddress()
txnid0 = nodes[0].sendtoaddress(addr1_0, 6)
txnid1 = nodes[0].sendtoaddress(extaddr1_0, 6)
self.stakeBlocks(1)
block_txns = nodes[0].getblock(nodes[0].getblockhash(nodes[0].getblockcount()))['tx']
assert(txnid0 in block_txns)
assert(txnid1 in block_txns)
ro = nodes[1].getwalletinfo()
assert(isclose(ro['balance'], 12.0))
addr0_0 = nodes[0].getnewaddress()
hexRaw = nodes[1].createrawtransaction([], {addr0_0:10})
hexFunded = nodes[1].fundrawtransaction(hexRaw)['hex']
txDecoded = nodes[1].decoderawtransaction(hexFunded)
ro = nodes[1].devicesignrawtransaction(hexFunded)
assert(ro['complete'] == True)
txnid1 = nodes[1].sendrawtransaction(ro['hex'])
self.sync_all()
self.stakeBlocks(1)
ro = nodes[1].devicesignrawtransaction(hexFunded)
assert(ro['errors'][0]['error'] == 'Input not found or already spent')
prevtxns = []
for vin in txDecoded['vin']:
rtx = nodes[1].getrawtransaction(vin['txid'], True)
prev_out = rtx['vout'][vin['vout']]
prevtxns.append({'txid': vin['txid'], 'vout': vin['vout'], 'scriptPubKey': prev_out['scriptPubKey']['hex'], 'amount': prev_out['value']})
ro = nodes[1].devicesignrawtransaction(hexFunded, prevtxns, ['0/0', '2/0'])
assert(ro['complete'] == True)
ro = nodes[1].listunspent()
assert(ro[0]['ondevice'] == True)
txnid2 = nodes[1].sendtoaddress(addr0_0, 0.1)
self.sync_all()
nodes[0].syncwithvalidationinterfacequeue()
assert(nodes[0].filtertransactions()[0]['txid'] == txnid2)
hwsxaddr = nodes[1].devicegetnewstealthaddress()
assert(hwsxaddr == 'tps1qqpdwu7gqjqz9s9wfek843akvkzvw0xq3tkzs93sj4ceq60cp54mvzgpqf4tp6d7h0nza2xe362am697dax24hcr33yxqwvq58l5cf6j6q5hkqqqgykgrc')
hwsxaddr2 = nodes[1].devicegetnewstealthaddress('lbl2 4bits', '4', '0xaaaa', True)
assert(hwsxaddr2 == 'tps1qqpewyspjp93axk82zahx5xfjyprpvypfgnp95n9aynxxw3w0qs63acpq0s5z2rwk0raczg8jszl9qy5stncud76ahr5etn9hqmp30e3e86w2qqypgh9sgv0')
ro = nodes[1].getaddressinfo(hwsxaddr2)
assert(ro['prefix_num_bits'] == 4)
assert(ro['prefix_bitfield'] == '0x000a')
assert(ro['isondevice'] == True)
ro = nodes[1].liststealthaddresses()
assert(len(ro[0]['Stealth Addresses']) == 2)
ro = nodes[1].filteraddresses()
assert(len(ro) == 3)
txnid3 = nodes[0].sendtoaddress(hwsxaddr, 0.1, '', '', False, 'test msg')
self.stakeBlocks(1)
ro = nodes[1].listtransactions()
assert(len(ro) == 5)
assert('test msg' in self.dumpj(ro[4]))
ro = nodes[1].listunspent()
inputs = []
for output in ro:
if output['txid'] == txnid3:
inputs.append({'txid' : txnid3, 'vout' : output['vout']})
break
assert(len(inputs) > 0)
hexRaw = nodes[1].createrawtransaction(inputs, {addr0_0:0.09})
ro = nodes[1].devicesignrawtransaction(hexRaw)
assert(ro['complete'] == True)
# import privkey in node2
rootkey = nodes[2].extkeyaltversion('xparFdrwJK7K2nfYzrkEqAKr5EcJNdY4c6ZNoLFFx1pMXQSQpo5MAufjogrS17RkqsLAijZJaBDHhG3G7SuJjtsTmRRTEKZDzGMnVCeX59cQCiR')
ro = nodes[2].extkey('import', rootkey, 'master key', True)
ro = nodes[2].extkey('setmaster', ro['id'])
assert(ro['result'] == 'Success.')
ro = nodes[2].extkey('deriveaccount', 'test account')
ro = nodes[2].extkey('setdefaultaccount', ro['account'])
assert(ro['result'] == 'Success.')
ro = nodes[1].extkey('account')
n = getIndexAtProperty(ro['chains'], 'use_type', 'stealth_spend')
assert(n > -1)
assert(ro['chains'][n]['path'] == "m/0h/444445h")
addrtest = nodes[2].getnewaddress()
ro = nodes[1].getdevicepublickey('0/0')
assert(addrtest == ro['address'])
addrtest = nodes[2].getnewstealthaddress('', '0', '', True, True)
assert(addrtest == hwsxaddr)
addrtest2 = nodes[2].getnewstealthaddress('lbl2 4bits', '4', '0xaaaa', True, True)
assert(addrtest2 == hwsxaddr2)
extaddr2_0 = nodes[2].getnewextaddress()
assert(extaddr1_0 == extaddr2_0)
# Ensure account matches after node restarts
account1 = nodes[1].extkey('account')
self.restart_node(1, extra_args=self.extra_args[1] + ['-wallet=default_wallet',])
account1_r = nodes[1].extkey('account')
assert(json.dumps(account1) == json.dumps(account1_r))
# Test for coverage
assert(nodes[1].promptunlockdevice()['sent'] is True)
assert(nodes[1].unlockdevice('123')['unlocked'] is True)
assert_raises_rpc_error(-8, 'Neither a pin nor a passphraseword was provided.', nodes[1].unlockdevice)
assert('complete' in nodes[1].devicebackup())
assert('complete' in nodes[1].deviceloadmnemonic())
if __name__ == '__main__':
USBDeviceTest().main()