Any projects which want to use Hush code from now on will need to be licensed as GPLv3 or we will send the lawyers: https://www.softwarefreedom.org/ Notably, Komodo (KMD) is licensed as GPLv2 and is no longer compatible to receive code changes, without causing legal issues. MIT projects, such as Zcash, also cannot pull in changes from the Hush Full Node without permission from The Hush Developers, which may in some circumstances grant an MIT license on a case-by-case basis.
112 lines
3.5 KiB
Python
Executable File
112 lines
3.5 KiB
Python
Executable File
#!/usr/bin/env python2
|
|
# Copyright (c) 2017 The Zcash developers
|
|
# Distributed under the GPLv3 software license, see the accompanying
|
|
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html
|
|
|
|
from decimal import Decimal
|
|
from test_framework.test_framework import BitcoinTestFramework
|
|
from test_framework.util import assert_equal, assert_greater_than, start_nodes, initialize_chain_clean, connect_nodes_bi
|
|
|
|
import logging
|
|
|
|
logging.basicConfig(format='%(levelname)s:%(message)s', level=logging.INFO)
|
|
|
|
|
|
class KeyImportExportTest (BitcoinTestFramework):
|
|
|
|
def setup_chain(self):
|
|
print("Initializing test directory "+self.options.tmpdir)
|
|
initialize_chain_clean(self.options.tmpdir, 4)
|
|
|
|
def setup_network(self, split=False):
|
|
self.nodes = start_nodes(4, self.options.tmpdir )
|
|
connect_nodes_bi(self.nodes,0,1)
|
|
connect_nodes_bi(self.nodes,1,2)
|
|
connect_nodes_bi(self.nodes,0,2)
|
|
connect_nodes_bi(self.nodes,0,3)
|
|
self.is_network_split=False
|
|
self.sync_all()
|
|
|
|
def run_test(self):
|
|
[alice, bob, charlie, miner] = self.nodes
|
|
|
|
def alice_to_bob(amount):
|
|
alice.sendtoaddress(addr, Decimal(amount))
|
|
self.sync_all()
|
|
miner.generate(1)
|
|
self.sync_all()
|
|
|
|
def verify_utxos(node, amounts):
|
|
utxos = node.listunspent(1, 10**9, [addr])
|
|
|
|
def cmp_confirmations_high_to_low(a, b):
|
|
return cmp(b["confirmations"], a["confirmations"])
|
|
|
|
utxos.sort(cmp_confirmations_high_to_low)
|
|
|
|
try:
|
|
assert_equal(amounts, [utxo["amount"] for utxo in utxos])
|
|
except AssertionError:
|
|
logging.error(
|
|
'Expected amounts: %r; utxos: %r',
|
|
amounts, utxos)
|
|
raise
|
|
|
|
# Seed Alice with some funds
|
|
alice.generate(10)
|
|
self.sync_all()
|
|
miner.generate(100)
|
|
self.sync_all()
|
|
|
|
# Now get a pristine address for receiving transfers:
|
|
addr = bob.getnewaddress()
|
|
verify_utxos(bob, [])
|
|
verify_utxos(charlie, [])
|
|
|
|
# the amounts of each txn embodied which generates a single UTXO:
|
|
amounts = map(Decimal, ['2.3', '3.7', '0.1', '0.5', '1.0', '0.19'])
|
|
|
|
# Internal test consistency assertion:
|
|
assert_greater_than(
|
|
alice.getbalance(),
|
|
reduce(Decimal.__add__, amounts))
|
|
|
|
logging.info("Sending pre-export txns...")
|
|
for amount in amounts[0:2]:
|
|
alice_to_bob(amount)
|
|
|
|
logging.info("Exporting privkey from bob...")
|
|
privkey = bob.dumpprivkey(addr)
|
|
|
|
logging.info("Sending post-export txns...")
|
|
for amount in amounts[2:4]:
|
|
alice_to_bob(amount)
|
|
|
|
verify_utxos(bob, amounts[:4])
|
|
verify_utxos(charlie, [])
|
|
|
|
logging.info("Importing privkey into charlie...")
|
|
ipkaddr = charlie.importprivkey(privkey, '', True)
|
|
assert_equal(addr, ipkaddr)
|
|
|
|
# importprivkey should have rescanned, so this should pass:
|
|
verify_utxos(charlie, amounts[:4])
|
|
|
|
# Verify idempotent behavior:
|
|
ipkaddr2 = charlie.importprivkey(privkey, '', True)
|
|
assert_equal(addr, ipkaddr2)
|
|
|
|
# amounts should be unchanged
|
|
verify_utxos(charlie, amounts[:4])
|
|
|
|
logging.info("Sending post-import txns...")
|
|
for amount in amounts[4:]:
|
|
alice_to_bob(amount)
|
|
|
|
verify_utxos(bob, amounts)
|
|
verify_utxos(charlie, amounts)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
KeyImportExportTest().main()
|