Merge pull request #698 from Electric-Coin-Company/fix-pour-rpc-tests

Fixed RPC tests for Pours.
This commit is contained in:
ebfull 2016-02-03 13:07:53 -07:00
commit 0294f34d15
2 changed files with 63 additions and 17 deletions

View File

@ -96,8 +96,6 @@ class PourTxTest(BitcoinTestFramework):
signed_tx_pour = self.nodes[0].signrawtransaction(pour_result["rawtxn"]) signed_tx_pour = self.nodes[0].signrawtransaction(pour_result["rawtxn"])
print signed_tx_pour
self.nodes[0].sendrawtransaction(signed_tx_pour["hex"]) self.nodes[0].sendrawtransaction(signed_tx_pour["hex"])
self.send_pours_around() self.send_pours_around()

View File

@ -10,13 +10,24 @@ from decimal import Decimal
import os import os
import shutil import shutil
import sys import sys
import time
class PourTxTest(BitcoinTestFramework): class PourTxTest(BitcoinTestFramework):
def setup_network(self): def setup_network(self):
# Start with split network: # Start with split network:
return super(PourTxTest, self).setup_network(True) return super(PourTxTest, self).setup_network(True)
def expect_cannot_pour(self, node, txn): def txid_in_mempool(self, node, txid):
exception_triggered = False
try:
node.getrawtransaction(txid)
except JSONRPCException:
exception_triggered = True
return not exception_triggered
def cannot_pour(self, node, txn):
exception_triggered = False exception_triggered = False
try: try:
@ -24,7 +35,10 @@ class PourTxTest(BitcoinTestFramework):
except JSONRPCException: except JSONRPCException:
exception_triggered = True exception_triggered = True
assert_equal(exception_triggered, True) return exception_triggered
def expect_cannot_pour(self, node, txn):
assert_equal(self.cannot_pour(node, txn), True)
def run_test(self): def run_test(self):
# All nodes should start with 1,250 BTC: # All nodes should start with 1,250 BTC:
@ -44,12 +58,17 @@ class PourTxTest(BitcoinTestFramework):
pool[i] = self.nodes[i].createrawtransaction(inputs, {}) pool[i] = self.nodes[i].createrawtransaction(inputs, {})
pool[i] = self.nodes[i].zcrawpour(pool[i], {}, {zcaddress:49.9}, 50, 0.1) pool[i] = self.nodes[i].zcrawpour(pool[i], {}, {zcaddress:49.9}, 50, 0.1)
signed = self.nodes[i].signrawtransaction(pool[i]["rawtxn"]) signed = self.nodes[i].signrawtransaction(pool[i]["rawtxn"])
# send the tx to both halves of the network
self.nodes[0].sendrawtransaction(signed["hex"]) self.nodes[0].sendrawtransaction(signed["hex"])
self.nodes[0].generate(1) self.nodes[0].generate(1)
self.nodes[1].sendrawtransaction(signed["hex"]) self.nodes[2].sendrawtransaction(signed["hex"])
self.nodes[1].generate(1) self.nodes[2].generate(1)
pool[i] = pool[i]["encryptedbucket1"] pool[i] = pool[i]["encryptedbucket1"]
sync_blocks(self.nodes[0:2])
sync_blocks(self.nodes[2:4])
# Confirm that the protects have taken place # Confirm that the protects have taken place
for i in range(4): for i in range(4):
enc_bucket = pool[i] enc_bucket = pool[i]
@ -57,10 +76,16 @@ class PourTxTest(BitcoinTestFramework):
assert_equal(receive_result["exists"], True) assert_equal(receive_result["exists"], True)
pool[i] = receive_result["bucket"] pool[i] = receive_result["bucket"]
# Extra confirmation on Node 1 # Extra confirmations
receive_result = self.nodes[1].zcrawreceive(zcsecretkey, enc_bucket) receive_result = self.nodes[1].zcrawreceive(zcsecretkey, enc_bucket)
assert_equal(receive_result["exists"], True) assert_equal(receive_result["exists"], True)
receive_result = self.nodes[2].zcrawreceive(zcsecretkey, enc_bucket)
assert_equal(receive_result["exists"], True)
receive_result = self.nodes[3].zcrawreceive(zcsecretkey, enc_bucket)
assert_equal(receive_result["exists"], True)
blank_tx = self.nodes[0].createrawtransaction([], {}) blank_tx = self.nodes[0].createrawtransaction([], {})
# Create pour {A, B}->{*} # Create pour {A, B}->{*}
pour_AB = self.nodes[0].zcrawpour(blank_tx, pour_AB = self.nodes[0].zcrawpour(blank_tx,
@ -86,50 +111,73 @@ class PourTxTest(BitcoinTestFramework):
{zcaddress:(49.9*2)-0.1}, {zcaddress:(49.9*2)-0.1},
0, 0.1) 0, 0.1)
# (a) Node 1 will spend pour AB, then attempt to # (a) Node 0 will spend pour AB, then attempt to
# double-spend it with BC. It should fail before and # double-spend it with BC. It should fail before and
# after Node 1 mines blocks. # after Node 0 mines blocks.
# #
# (b) Then, Node 2 will spend BC, and mine 5 blocks. # (b) Then, Node 2 will spend BC, and mine 5 blocks.
# Node 1 connects, and AB will be reorg'd from the chain. # Node 1 connects, and AB will be reorg'd from the chain.
# Any attempts to spend AB or CD should fail for # Any attempts to spend AB or CD should fail for
# both nodes. # both nodes.
# #
# (c) Then, Node 1 will spend AD, which should work # (c) Then, Node 0 will spend AD, which should work
# because the previous spend for A (AB) is considered # because the previous spend for A (AB) is considered
# invalid. # invalid due to the reorg.
# (a) # (a)
self.nodes[0].sendrawtransaction(pour_AB["rawtxn"]) AB_txid = self.nodes[0].sendrawtransaction(pour_AB["rawtxn"])
self.expect_cannot_pour(self.nodes[0], pour_BC["rawtxn"]) self.expect_cannot_pour(self.nodes[0], pour_BC["rawtxn"])
# Wait until node[1] receives AB before we attempt to double-spend
# with BC.
print "Waiting for AB_txid...\n"
while True:
if self.txid_in_mempool(self.nodes[1], AB_txid):
break
time.sleep(0.2)
print "Done!\n"
self.expect_cannot_pour(self.nodes[1], pour_BC["rawtxn"])
# Generate a block # Generate a block
self.nodes[0].generate(1) self.nodes[0].generate(1)
sync_blocks(self.nodes[0:2])
self.expect_cannot_pour(self.nodes[0], pour_BC["rawtxn"]) self.expect_cannot_pour(self.nodes[0], pour_BC["rawtxn"])
self.expect_cannot_pour(self.nodes[1], pour_BC["rawtxn"])
# (b) # (b)
self.nodes[1].sendrawtransaction(pour_BC["rawtxn"]) self.nodes[2].sendrawtransaction(pour_BC["rawtxn"])
self.nodes[1].generate(5) self.nodes[2].generate(5)
# Connect the two nodes # Connect the two nodes
connect_nodes(self.nodes[1], 0) connect_nodes(self.nodes[1], 2)
sync_blocks(self.nodes[0:2]) sync_blocks(self.nodes)
# AB, BC, CD should all be impossible to spend for each node. # AB and CD should all be impossible to spend for each node.
self.expect_cannot_pour(self.nodes[0], pour_AB["rawtxn"]) self.expect_cannot_pour(self.nodes[0], pour_AB["rawtxn"])
self.expect_cannot_pour(self.nodes[0], pour_CD["rawtxn"]) self.expect_cannot_pour(self.nodes[0], pour_CD["rawtxn"])
self.expect_cannot_pour(self.nodes[1], pour_AB["rawtxn"]) self.expect_cannot_pour(self.nodes[1], pour_AB["rawtxn"])
self.expect_cannot_pour(self.nodes[1], pour_CD["rawtxn"]) self.expect_cannot_pour(self.nodes[1], pour_CD["rawtxn"])
self.expect_cannot_pour(self.nodes[2], pour_AB["rawtxn"])
self.expect_cannot_pour(self.nodes[2], pour_CD["rawtxn"])
self.expect_cannot_pour(self.nodes[3], pour_AB["rawtxn"])
self.expect_cannot_pour(self.nodes[3], pour_CD["rawtxn"])
# (c) # (c)
# AD should be possible to send due to the reorg that
# tossed out AB.
self.nodes[0].sendrawtransaction(pour_AD["rawtxn"]) self.nodes[0].sendrawtransaction(pour_AD["rawtxn"])
self.nodes[0].generate(1) self.nodes[0].generate(1)
sync_blocks(self.nodes)
if __name__ == '__main__': if __name__ == '__main__':
PourTxTest().main() PourTxTest().main()