Merge #11712: [tests] Split NodeConn from NodeConnCB
e9dfa9bcc
[tests] Move version message sending from NodeConn to NodeConnCB (John Newbery)dad596fc3
[tests] Make NodeConnCB a subclass of NodeConn (John Newbery)e30d40438
[tests] Move only: move NodeConnCB below NodeConn (John Newbery)4d5059856
[tests] Tidy up mininode (John Newbery)f2ae6f32a
[tests] Remove mininode periodic (half-hour) ping messages (John Newbery)ec59523c5
[tests] Remove rpc property from TestNode in p2p-segwit.py. (John Newbery) Pull request description: This is the final step in #11518, except for possibly renaming - for motivation, please see that PR. If this is merged, then migrating the test framework from asyncore to asyncio should be easier (I say should because I haven't dug too deeply into what would be required). Requesting review from @ryanofsky , since he always has good feedback on these refactor PRs, and I'd appreciate his take on this refactor. Note particularly that I've reverted the change suggested here: https://github.com/bitcoin/bitcoin/pull/11182#discussion_r148859555 . The idea, as always, is to present a simple interface to the test writer. Tree-SHA512: 94dd467a13ec799b101108cf47d4dccb6f6240b601e375e3d785313333bbb389c26072a50759aca663bbf3d6c8b867b99e36ae8800ab8ea115e0496c151926ce
This commit is contained in:
commit
9f2c2dba21
14 changed files with 507 additions and 489 deletions
|
@ -67,7 +67,7 @@ class AssumeValidTest(BitcoinTestFramework):
|
||||||
def send_blocks_until_disconnected(self, p2p_conn):
|
def send_blocks_until_disconnected(self, p2p_conn):
|
||||||
"""Keep sending blocks to the node until we're disconnected."""
|
"""Keep sending blocks to the node until we're disconnected."""
|
||||||
for i in range(len(self.blocks)):
|
for i in range(len(self.blocks)):
|
||||||
if not p2p_conn.connection:
|
if p2p_conn.state != "connected":
|
||||||
break
|
break
|
||||||
try:
|
try:
|
||||||
p2p_conn.send_message(msg_block(self.blocks[i]))
|
p2p_conn.send_message(msg_block(self.blocks[i]))
|
||||||
|
|
|
@ -246,7 +246,7 @@ class BIP9SoftForksTest(ComparisonTestFramework):
|
||||||
self.setup_network()
|
self.setup_network()
|
||||||
self.test.add_all_connections(self.nodes)
|
self.test.add_all_connections(self.nodes)
|
||||||
NetworkThread().start()
|
NetworkThread().start()
|
||||||
self.test.test_nodes[0].wait_for_verack()
|
self.test.p2p_connections[0].wait_for_verack()
|
||||||
|
|
||||||
def get_tests(self):
|
def get_tests(self):
|
||||||
for test in itertools.chain(
|
for test in itertools.chain(
|
||||||
|
|
|
@ -49,14 +49,14 @@ class BaseNode(NodeConnCB):
|
||||||
# Stores a dictionary of all blocks received
|
# Stores a dictionary of all blocks received
|
||||||
self.block_receive_map = defaultdict(int)
|
self.block_receive_map = defaultdict(int)
|
||||||
|
|
||||||
def on_block(self, conn, message):
|
def on_block(self, message):
|
||||||
"""Override the standard on_block callback
|
"""Override the standard on_block callback
|
||||||
|
|
||||||
Store the hash of a received block in the dictionary."""
|
Store the hash of a received block in the dictionary."""
|
||||||
message.block.calc_sha256()
|
message.block.calc_sha256()
|
||||||
self.block_receive_map[message.block.sha256] += 1
|
self.block_receive_map[message.block.sha256] += 1
|
||||||
|
|
||||||
def on_inv(self, conn, message):
|
def on_inv(self, message):
|
||||||
"""Override the standard on_inv callback"""
|
"""Override the standard on_inv callback"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
|
@ -22,10 +22,10 @@ class TestNode(NodeConnCB):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.block_receive_map = defaultdict(int)
|
self.block_receive_map = defaultdict(int)
|
||||||
|
|
||||||
def on_inv(self, conn, message):
|
def on_inv(self, message):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def on_block(self, conn, message):
|
def on_block(self, message):
|
||||||
message.block.calc_sha256()
|
message.block.calc_sha256()
|
||||||
self.block_receive_map[message.block.sha256] += 1
|
self.block_receive_map[message.block.sha256] += 1
|
||||||
|
|
||||||
|
|
|
@ -25,21 +25,21 @@ class TestNode(NodeConnCB):
|
||||||
# so we can eg wait until a particular block is announced.
|
# so we can eg wait until a particular block is announced.
|
||||||
self.announced_blockhashes = set()
|
self.announced_blockhashes = set()
|
||||||
|
|
||||||
def on_sendcmpct(self, conn, message):
|
def on_sendcmpct(self, message):
|
||||||
self.last_sendcmpct.append(message)
|
self.last_sendcmpct.append(message)
|
||||||
|
|
||||||
def on_cmpctblock(self, conn, message):
|
def on_cmpctblock(self, message):
|
||||||
self.block_announced = True
|
self.block_announced = True
|
||||||
self.last_message["cmpctblock"].header_and_shortids.header.calc_sha256()
|
self.last_message["cmpctblock"].header_and_shortids.header.calc_sha256()
|
||||||
self.announced_blockhashes.add(self.last_message["cmpctblock"].header_and_shortids.header.sha256)
|
self.announced_blockhashes.add(self.last_message["cmpctblock"].header_and_shortids.header.sha256)
|
||||||
|
|
||||||
def on_headers(self, conn, message):
|
def on_headers(self, message):
|
||||||
self.block_announced = True
|
self.block_announced = True
|
||||||
for x in self.last_message["headers"].headers:
|
for x in self.last_message["headers"].headers:
|
||||||
x.calc_sha256()
|
x.calc_sha256()
|
||||||
self.announced_blockhashes.add(x.sha256)
|
self.announced_blockhashes.add(x.sha256)
|
||||||
|
|
||||||
def on_inv(self, conn, message):
|
def on_inv(self, message):
|
||||||
for x in self.last_message["inv"].inv:
|
for x in self.last_message["inv"].inv:
|
||||||
if x.type == 2:
|
if x.type == 2:
|
||||||
self.block_announced = True
|
self.block_announced = True
|
||||||
|
@ -60,7 +60,7 @@ class TestNode(NodeConnCB):
|
||||||
msg = msg_getheaders()
|
msg = msg_getheaders()
|
||||||
msg.locator.vHave = locator
|
msg.locator.vHave = locator
|
||||||
msg.hashstop = hashstop
|
msg.hashstop = hashstop
|
||||||
self.connection.send_message(msg)
|
self.send_message(msg)
|
||||||
|
|
||||||
def send_header_for_blocks(self, new_blocks):
|
def send_header_for_blocks(self, new_blocks):
|
||||||
headers_message = msg_headers()
|
headers_message = msg_headers()
|
||||||
|
@ -86,7 +86,7 @@ class TestNode(NodeConnCB):
|
||||||
This is used when we want to send a message into the node that we expect
|
This is used when we want to send a message into the node that we expect
|
||||||
will get us disconnected, eg an invalid block."""
|
will get us disconnected, eg an invalid block."""
|
||||||
self.send_message(message)
|
self.send_message(message)
|
||||||
wait_until(lambda: not self.connected, timeout=timeout, lock=mininode_lock)
|
wait_until(lambda: self.state != "connected", timeout=timeout, lock=mininode_lock)
|
||||||
|
|
||||||
class CompactBlocksTest(BitcoinTestFramework):
|
class CompactBlocksTest(BitcoinTestFramework):
|
||||||
def set_test_params(self):
|
def set_test_params(self):
|
||||||
|
|
|
@ -27,7 +27,7 @@ class TestNode(NodeConnCB):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.txinvs = []
|
self.txinvs = []
|
||||||
|
|
||||||
def on_inv(self, conn, message):
|
def on_inv(self, message):
|
||||||
for i in message.inv:
|
for i in message.inv:
|
||||||
if (i.type == 1):
|
if (i.type == 1):
|
||||||
self.txinvs.append(hashToHex(i.hash))
|
self.txinvs.append(hashToHex(i.hash))
|
||||||
|
|
|
@ -30,43 +30,42 @@ class CLazyNode(NodeConnCB):
|
||||||
self.unexpected_msg = True
|
self.unexpected_msg = True
|
||||||
self.log.info("should not have received message: %s" % message.command)
|
self.log.info("should not have received message: %s" % message.command)
|
||||||
|
|
||||||
def on_open(self, conn):
|
def on_open(self):
|
||||||
self.connected = True
|
|
||||||
self.ever_connected = True
|
self.ever_connected = True
|
||||||
|
|
||||||
def on_version(self, conn, message): self.bad_message(message)
|
def on_version(self, message): self.bad_message(message)
|
||||||
def on_verack(self, conn, message): self.bad_message(message)
|
def on_verack(self, message): self.bad_message(message)
|
||||||
def on_reject(self, conn, message): self.bad_message(message)
|
def on_reject(self, message): self.bad_message(message)
|
||||||
def on_inv(self, conn, message): self.bad_message(message)
|
def on_inv(self, message): self.bad_message(message)
|
||||||
def on_addr(self, conn, message): self.bad_message(message)
|
def on_addr(self, message): self.bad_message(message)
|
||||||
def on_getdata(self, conn, message): self.bad_message(message)
|
def on_getdata(self, message): self.bad_message(message)
|
||||||
def on_getblocks(self, conn, message): self.bad_message(message)
|
def on_getblocks(self, message): self.bad_message(message)
|
||||||
def on_tx(self, conn, message): self.bad_message(message)
|
def on_tx(self, message): self.bad_message(message)
|
||||||
def on_block(self, conn, message): self.bad_message(message)
|
def on_block(self, message): self.bad_message(message)
|
||||||
def on_getaddr(self, conn, message): self.bad_message(message)
|
def on_getaddr(self, message): self.bad_message(message)
|
||||||
def on_headers(self, conn, message): self.bad_message(message)
|
def on_headers(self, message): self.bad_message(message)
|
||||||
def on_getheaders(self, conn, message): self.bad_message(message)
|
def on_getheaders(self, message): self.bad_message(message)
|
||||||
def on_ping(self, conn, message): self.bad_message(message)
|
def on_ping(self, message): self.bad_message(message)
|
||||||
def on_mempool(self, conn): self.bad_message(message)
|
def on_mempool(self, message): self.bad_message(message)
|
||||||
def on_pong(self, conn, message): self.bad_message(message)
|
def on_pong(self, message): self.bad_message(message)
|
||||||
def on_feefilter(self, conn, message): self.bad_message(message)
|
def on_feefilter(self, message): self.bad_message(message)
|
||||||
def on_sendheaders(self, conn, message): self.bad_message(message)
|
def on_sendheaders(self, message): self.bad_message(message)
|
||||||
def on_sendcmpct(self, conn, message): self.bad_message(message)
|
def on_sendcmpct(self, message): self.bad_message(message)
|
||||||
def on_cmpctblock(self, conn, message): self.bad_message(message)
|
def on_cmpctblock(self, message): self.bad_message(message)
|
||||||
def on_getblocktxn(self, conn, message): self.bad_message(message)
|
def on_getblocktxn(self, message): self.bad_message(message)
|
||||||
def on_blocktxn(self, conn, message): self.bad_message(message)
|
def on_blocktxn(self, message): self.bad_message(message)
|
||||||
|
|
||||||
# Node that never sends a version. We'll use this to send a bunch of messages
|
# Node that never sends a version. We'll use this to send a bunch of messages
|
||||||
# anyway, and eventually get disconnected.
|
# anyway, and eventually get disconnected.
|
||||||
class CNodeNoVersionBan(CLazyNode):
|
class CNodeNoVersionBan(CLazyNode):
|
||||||
# send a bunch of veracks without sending a message. This should get us disconnected.
|
# send a bunch of veracks without sending a message. This should get us disconnected.
|
||||||
# NOTE: implementation-specific check here. Remove if bitcoind ban behavior changes
|
# NOTE: implementation-specific check here. Remove if bitcoind ban behavior changes
|
||||||
def on_open(self, conn):
|
def on_open(self):
|
||||||
super().on_open(conn)
|
super().on_open()
|
||||||
for i in range(banscore):
|
for i in range(banscore):
|
||||||
self.send_message(msg_verack())
|
self.send_message(msg_verack())
|
||||||
|
|
||||||
def on_reject(self, conn, message): pass
|
def on_reject(self, message): pass
|
||||||
|
|
||||||
# Node that never sends a version. This one just sits idle and hopes to receive
|
# Node that never sends a version. This one just sits idle and hopes to receive
|
||||||
# any message (it shouldn't!)
|
# any message (it shouldn't!)
|
||||||
|
@ -80,15 +79,15 @@ class CNodeNoVerackIdle(CLazyNode):
|
||||||
self.version_received = False
|
self.version_received = False
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
||||||
def on_reject(self, conn, message): pass
|
def on_reject(self, message): pass
|
||||||
def on_verack(self, conn, message): pass
|
def on_verack(self, message): pass
|
||||||
# When version is received, don't reply with a verack. Instead, see if the
|
# When version is received, don't reply with a verack. Instead, see if the
|
||||||
# node will give us a message that it shouldn't. This is not an exhaustive
|
# node will give us a message that it shouldn't. This is not an exhaustive
|
||||||
# list!
|
# list!
|
||||||
def on_version(self, conn, message):
|
def on_version(self, message):
|
||||||
self.version_received = True
|
self.version_received = True
|
||||||
conn.send_message(msg_ping())
|
self.send_message(msg_ping())
|
||||||
conn.send_message(msg_getaddr())
|
self.send_message(msg_getaddr())
|
||||||
|
|
||||||
class P2PLeakTest(BitcoinTestFramework):
|
class P2PLeakTest(BitcoinTestFramework):
|
||||||
def set_test_params(self):
|
def set_test_params(self):
|
||||||
|
@ -119,11 +118,11 @@ class P2PLeakTest(BitcoinTestFramework):
|
||||||
time.sleep(5)
|
time.sleep(5)
|
||||||
|
|
||||||
#This node should have been banned
|
#This node should have been banned
|
||||||
assert not no_version_bannode.connected
|
assert no_version_bannode.state != "connected"
|
||||||
|
|
||||||
# These nodes should have been disconnected
|
# These nodes should have been disconnected
|
||||||
assert not unsupported_service_bit5_node.connected
|
assert unsupported_service_bit5_node.state != "connected"
|
||||||
assert not unsupported_service_bit7_node.connected
|
assert unsupported_service_bit7_node.state != "connected"
|
||||||
|
|
||||||
self.nodes[0].disconnect_p2ps()
|
self.nodes[0].disconnect_p2ps()
|
||||||
|
|
||||||
|
|
|
@ -31,13 +31,40 @@ def get_virtual_size(witness_block):
|
||||||
vsize = int((3*base_size + total_size + 3)/4)
|
vsize = int((3*base_size + total_size + 3)/4)
|
||||||
return vsize
|
return vsize
|
||||||
|
|
||||||
|
def test_transaction_acceptance(rpc, p2p, tx, with_witness, accepted, reason=None):
|
||||||
|
"""Send a transaction to the node and check that it's accepted to the mempool
|
||||||
|
|
||||||
|
- Submit the transaction over the p2p interface
|
||||||
|
- use the getrawmempool rpc to check for acceptance."""
|
||||||
|
tx_message = msg_tx(tx)
|
||||||
|
if with_witness:
|
||||||
|
tx_message = msg_witness_tx(tx)
|
||||||
|
p2p.send_message(tx_message)
|
||||||
|
p2p.sync_with_ping()
|
||||||
|
assert_equal(tx.hash in rpc.getrawmempool(), accepted)
|
||||||
|
if (reason != None and not accepted):
|
||||||
|
# Check the rejection reason as well.
|
||||||
|
with mininode_lock:
|
||||||
|
assert_equal(p2p.last_message["reject"].reason, reason)
|
||||||
|
|
||||||
|
def test_witness_block(rpc, p2p, block, accepted, with_witness=True):
|
||||||
|
"""Send a block to the node and check that it's accepted
|
||||||
|
|
||||||
|
- Submit the block over the p2p interface
|
||||||
|
- use the getbestblockhash rpc to check for acceptance."""
|
||||||
|
if with_witness:
|
||||||
|
p2p.send_message(msg_witness_block(block))
|
||||||
|
else:
|
||||||
|
p2p.send_message(msg_block(block))
|
||||||
|
p2p.sync_with_ping()
|
||||||
|
assert_equal(rpc.getbestblockhash() == block.hash, accepted)
|
||||||
|
|
||||||
class TestNode(NodeConnCB):
|
class TestNode(NodeConnCB):
|
||||||
def __init__(self, rpc):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.getdataset = set()
|
self.getdataset = set()
|
||||||
self.rpc = rpc
|
|
||||||
|
|
||||||
def on_getdata(self, conn, message):
|
def on_getdata(self, message):
|
||||||
for inv in message.inv:
|
for inv in message.inv:
|
||||||
self.getdataset.add(inv.hash)
|
self.getdataset.add(inv.hash)
|
||||||
|
|
||||||
|
@ -68,27 +95,6 @@ class TestNode(NodeConnCB):
|
||||||
self.wait_for_block(blockhash, timeout)
|
self.wait_for_block(blockhash, timeout)
|
||||||
return self.last_message["block"].block
|
return self.last_message["block"].block
|
||||||
|
|
||||||
def test_transaction_acceptance(self, tx, with_witness, accepted, reason=None):
|
|
||||||
tx_message = msg_tx(tx)
|
|
||||||
if with_witness:
|
|
||||||
tx_message = msg_witness_tx(tx)
|
|
||||||
self.send_message(tx_message)
|
|
||||||
self.sync_with_ping()
|
|
||||||
assert_equal(tx.hash in self.rpc.getrawmempool(), accepted)
|
|
||||||
if (reason != None and not accepted):
|
|
||||||
# Check the rejection reason as well.
|
|
||||||
with mininode_lock:
|
|
||||||
assert_equal(self.last_message["reject"].reason, reason)
|
|
||||||
|
|
||||||
# Test whether a witness block had the correct effect on the tip
|
|
||||||
def test_witness_block(self, block, accepted, with_witness=True):
|
|
||||||
if with_witness:
|
|
||||||
self.send_message(msg_witness_block(block))
|
|
||||||
else:
|
|
||||||
self.send_message(msg_block(block))
|
|
||||||
self.sync_with_ping()
|
|
||||||
assert_equal(self.rpc.getbestblockhash() == block.hash, accepted)
|
|
||||||
|
|
||||||
# Used to keep track of anyone-can-spend outputs that we can use in the tests
|
# Used to keep track of anyone-can-spend outputs that we can use in the tests
|
||||||
class UTXO():
|
class UTXO():
|
||||||
def __init__(self, sha256, n, nValue):
|
def __init__(self, sha256, n, nValue):
|
||||||
|
@ -142,7 +148,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
''' Individual tests '''
|
''' Individual tests '''
|
||||||
def test_witness_services(self):
|
def test_witness_services(self):
|
||||||
self.log.info("Verifying NODE_WITNESS service bit")
|
self.log.info("Verifying NODE_WITNESS service bit")
|
||||||
assert((self.test_node.connection.nServices & NODE_WITNESS) != 0)
|
assert((self.test_node.nServices & NODE_WITNESS) != 0)
|
||||||
|
|
||||||
|
|
||||||
# See if sending a regular transaction works, and create a utxo
|
# See if sending a regular transaction works, and create a utxo
|
||||||
|
@ -201,7 +207,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
self.update_witness_block_with_transactions(block, [tx])
|
self.update_witness_block_with_transactions(block, [tx])
|
||||||
# Sending witness data before activation is not allowed (anti-spam
|
# Sending witness data before activation is not allowed (anti-spam
|
||||||
# rule).
|
# rule).
|
||||||
self.test_node.test_witness_block(block, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False)
|
||||||
# TODO: fix synchronization so we can test reject reason
|
# TODO: fix synchronization so we can test reject reason
|
||||||
# Right now, bitcoind delays sending reject messages for blocks
|
# Right now, bitcoind delays sending reject messages for blocks
|
||||||
# until the future, making synchronization here difficult.
|
# until the future, making synchronization here difficult.
|
||||||
|
@ -228,7 +234,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx2.vin.append(CTxIn(COutPoint(tx.sha256, 0), b""))
|
tx2.vin.append(CTxIn(COutPoint(tx.sha256, 0), b""))
|
||||||
tx2.vout.append(CTxOut(tx.vout[0].nValue-1000, scriptPubKey))
|
tx2.vout.append(CTxOut(tx.vout[0].nValue-1000, scriptPubKey))
|
||||||
tx2.rehash()
|
tx2.rehash()
|
||||||
self.test_node.test_transaction_acceptance(tx2, False, True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx2, False, True)
|
||||||
self.nodes[0].generate(1)
|
self.nodes[0].generate(1)
|
||||||
sync_blocks(self.nodes)
|
sync_blocks(self.nodes)
|
||||||
|
|
||||||
|
@ -245,18 +251,18 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx3.rehash()
|
tx3.rehash()
|
||||||
# Note that this should be rejected for the premature witness reason,
|
# Note that this should be rejected for the premature witness reason,
|
||||||
# rather than a policy check, since segwit hasn't activated yet.
|
# rather than a policy check, since segwit hasn't activated yet.
|
||||||
self.std_node.test_transaction_acceptance(tx3, True, False, b'no-witness-yet')
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, tx3, True, False, b'no-witness-yet')
|
||||||
|
|
||||||
# If we send without witness, it should be accepted.
|
# If we send without witness, it should be accepted.
|
||||||
self.std_node.test_transaction_acceptance(tx3, False, True)
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, tx3, False, True)
|
||||||
|
|
||||||
# Now create a new anyone-can-spend utxo for the next test.
|
# Now create a new anyone-can-spend utxo for the next test.
|
||||||
tx4 = CTransaction()
|
tx4 = CTransaction()
|
||||||
tx4.vin.append(CTxIn(COutPoint(tx3.sha256, 0), CScript([p2sh_program])))
|
tx4.vin.append(CTxIn(COutPoint(tx3.sha256, 0), CScript([p2sh_program])))
|
||||||
tx4.vout.append(CTxOut(tx3.vout[0].nValue-1000, CScript([OP_TRUE])))
|
tx4.vout.append(CTxOut(tx3.vout[0].nValue-1000, CScript([OP_TRUE])))
|
||||||
tx4.rehash()
|
tx4.rehash()
|
||||||
self.test_node.test_transaction_acceptance(tx3, False, True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx3, False, True)
|
||||||
self.test_node.test_transaction_acceptance(tx4, False, True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx4, False, True)
|
||||||
|
|
||||||
self.nodes[0].generate(1)
|
self.nodes[0].generate(1)
|
||||||
sync_blocks(self.nodes)
|
sync_blocks(self.nodes)
|
||||||
|
@ -317,7 +323,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
assert(msg_witness_block(block).serialize() != msg_block(block).serialize())
|
assert(msg_witness_block(block).serialize() != msg_block(block).serialize())
|
||||||
|
|
||||||
# This empty block should be valid.
|
# This empty block should be valid.
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
# Try to tweak the nonce
|
# Try to tweak the nonce
|
||||||
block_2 = self.build_next_block()
|
block_2 = self.build_next_block()
|
||||||
|
@ -328,7 +334,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
assert(block_2.vtx[0].vout[-1] != block.vtx[0].vout[-1])
|
assert(block_2.vtx[0].vout[-1] != block.vtx[0].vout[-1])
|
||||||
|
|
||||||
# This should also be valid.
|
# This should also be valid.
|
||||||
self.test_node.test_witness_block(block_2, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block_2, accepted=True)
|
||||||
|
|
||||||
# Now test commitments with actual transactions
|
# Now test commitments with actual transactions
|
||||||
assert (len(self.utxo) > 0)
|
assert (len(self.utxo) > 0)
|
||||||
|
@ -361,7 +367,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
block_3.rehash()
|
block_3.rehash()
|
||||||
block_3.solve()
|
block_3.solve()
|
||||||
|
|
||||||
self.test_node.test_witness_block(block_3, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block_3, accepted=False)
|
||||||
|
|
||||||
# Add a different commitment with different nonce, but in the
|
# Add a different commitment with different nonce, but in the
|
||||||
# right location, and with some funds burned(!).
|
# right location, and with some funds burned(!).
|
||||||
|
@ -375,7 +381,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
block_3.rehash()
|
block_3.rehash()
|
||||||
assert(len(block_3.vtx[0].vout) == 4) # 3 OP_returns
|
assert(len(block_3.vtx[0].vout) == 4) # 3 OP_returns
|
||||||
block_3.solve()
|
block_3.solve()
|
||||||
self.test_node.test_witness_block(block_3, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block_3, accepted=True)
|
||||||
|
|
||||||
# Finally test that a block with no witness transactions can
|
# Finally test that a block with no witness transactions can
|
||||||
# omit the commitment.
|
# omit the commitment.
|
||||||
|
@ -387,7 +393,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
block_4.vtx.append(tx3)
|
block_4.vtx.append(tx3)
|
||||||
block_4.hashMerkleRoot = block_4.calc_merkle_root()
|
block_4.hashMerkleRoot = block_4.calc_merkle_root()
|
||||||
block_4.solve()
|
block_4.solve()
|
||||||
self.test_node.test_witness_block(block_4, with_witness=False, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block_4, with_witness=False, accepted=True)
|
||||||
|
|
||||||
# Update available utxo's for use in later test.
|
# Update available utxo's for use in later test.
|
||||||
self.utxo.pop(0)
|
self.utxo.pop(0)
|
||||||
|
@ -428,11 +434,11 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
# Change the nonce -- should not cause the block to be permanently
|
# Change the nonce -- should not cause the block to be permanently
|
||||||
# failed
|
# failed
|
||||||
block.vtx[0].wit.vtxinwit[0].scriptWitness.stack = [ ser_uint256(1) ]
|
block.vtx[0].wit.vtxinwit[0].scriptWitness.stack = [ ser_uint256(1) ]
|
||||||
self.test_node.test_witness_block(block, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False)
|
||||||
|
|
||||||
# Changing the witness nonce doesn't change the block hash
|
# Changing the witness nonce doesn't change the block hash
|
||||||
block.vtx[0].wit.vtxinwit[0].scriptWitness.stack = [ ser_uint256(0) ]
|
block.vtx[0].wit.vtxinwit[0].scriptWitness.stack = [ ser_uint256(0) ]
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
|
|
||||||
def test_witness_block_size(self):
|
def test_witness_block_size(self):
|
||||||
|
@ -497,7 +503,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
# limit
|
# limit
|
||||||
assert(len(block.serialize(True)) > 2*1024*1024)
|
assert(len(block.serialize(True)) > 2*1024*1024)
|
||||||
|
|
||||||
self.test_node.test_witness_block(block, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False)
|
||||||
|
|
||||||
# Now resize the second transaction to make the block fit.
|
# Now resize the second transaction to make the block fit.
|
||||||
cur_length = len(block.vtx[-1].wit.vtxinwit[0].scriptWitness.stack[0])
|
cur_length = len(block.vtx[-1].wit.vtxinwit[0].scriptWitness.stack[0])
|
||||||
|
@ -507,7 +513,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
block.solve()
|
block.solve()
|
||||||
assert(get_virtual_size(block) == MAX_BLOCK_BASE_SIZE)
|
assert(get_virtual_size(block) == MAX_BLOCK_BASE_SIZE)
|
||||||
|
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
# Update available utxo's
|
# Update available utxo's
|
||||||
self.utxo.pop(0)
|
self.utxo.pop(0)
|
||||||
|
@ -574,7 +580,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
self.update_witness_block_with_transactions(block, [tx])
|
self.update_witness_block_with_transactions(block, [tx])
|
||||||
|
|
||||||
# Extra witness data should not be allowed.
|
# Extra witness data should not be allowed.
|
||||||
self.test_node.test_witness_block(block, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False)
|
||||||
|
|
||||||
# Try extra signature data. Ok if we're not spending a witness output.
|
# Try extra signature data. Ok if we're not spending a witness output.
|
||||||
block.vtx[1].wit.vtxinwit = []
|
block.vtx[1].wit.vtxinwit = []
|
||||||
|
@ -583,7 +589,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
add_witness_commitment(block)
|
add_witness_commitment(block)
|
||||||
block.solve()
|
block.solve()
|
||||||
|
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
# Now try extra witness/signature data on an input that DOES require a
|
# Now try extra witness/signature data on an input that DOES require a
|
||||||
# witness
|
# witness
|
||||||
|
@ -599,7 +605,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
self.update_witness_block_with_transactions(block, [tx2])
|
self.update_witness_block_with_transactions(block, [tx2])
|
||||||
|
|
||||||
# This has extra witness data, so it should fail.
|
# This has extra witness data, so it should fail.
|
||||||
self.test_node.test_witness_block(block, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False)
|
||||||
|
|
||||||
# Now get rid of the extra witness, but add extra scriptSig data
|
# Now get rid of the extra witness, but add extra scriptSig data
|
||||||
tx2.vin[0].scriptSig = CScript([OP_TRUE])
|
tx2.vin[0].scriptSig = CScript([OP_TRUE])
|
||||||
|
@ -611,7 +617,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
block.solve()
|
block.solve()
|
||||||
|
|
||||||
# This has extra signature data for a witness input, so it should fail.
|
# This has extra signature data for a witness input, so it should fail.
|
||||||
self.test_node.test_witness_block(block, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False)
|
||||||
|
|
||||||
# Now get rid of the extra scriptsig on the witness input, and verify
|
# Now get rid of the extra scriptsig on the witness input, and verify
|
||||||
# success (even with extra scriptsig data in the non-witness input)
|
# success (even with extra scriptsig data in the non-witness input)
|
||||||
|
@ -620,7 +626,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
add_witness_commitment(block)
|
add_witness_commitment(block)
|
||||||
block.solve()
|
block.solve()
|
||||||
|
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
# Update utxo for later tests
|
# Update utxo for later tests
|
||||||
self.utxo.pop(0)
|
self.utxo.pop(0)
|
||||||
|
@ -653,14 +659,14 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx2.rehash()
|
tx2.rehash()
|
||||||
|
|
||||||
self.update_witness_block_with_transactions(block, [tx, tx2])
|
self.update_witness_block_with_transactions(block, [tx, tx2])
|
||||||
self.test_node.test_witness_block(block, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False)
|
||||||
|
|
||||||
# Now reduce the length of the stack element
|
# Now reduce the length of the stack element
|
||||||
tx2.wit.vtxinwit[0].scriptWitness.stack[0] = b'a'*(MAX_SCRIPT_ELEMENT_SIZE)
|
tx2.wit.vtxinwit[0].scriptWitness.stack[0] = b'a'*(MAX_SCRIPT_ELEMENT_SIZE)
|
||||||
|
|
||||||
add_witness_commitment(block)
|
add_witness_commitment(block)
|
||||||
block.solve()
|
block.solve()
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
# Update the utxo for later tests
|
# Update the utxo for later tests
|
||||||
self.utxo.pop()
|
self.utxo.pop()
|
||||||
|
@ -695,7 +701,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
|
|
||||||
self.update_witness_block_with_transactions(block, [tx, tx2])
|
self.update_witness_block_with_transactions(block, [tx, tx2])
|
||||||
|
|
||||||
self.test_node.test_witness_block(block, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False)
|
||||||
|
|
||||||
# Try again with one less byte in the witness program
|
# Try again with one less byte in the witness program
|
||||||
witness_program = CScript([b'a'*520]*19 + [OP_DROP]*62 + [OP_TRUE])
|
witness_program = CScript([b'a'*520]*19 + [OP_DROP]*62 + [OP_TRUE])
|
||||||
|
@ -710,7 +716,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx2.rehash()
|
tx2.rehash()
|
||||||
block.vtx = [block.vtx[0]]
|
block.vtx = [block.vtx[0]]
|
||||||
self.update_witness_block_with_transactions(block, [tx, tx2])
|
self.update_witness_block_with_transactions(block, [tx, tx2])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
self.utxo.pop()
|
self.utxo.pop()
|
||||||
self.utxo.append(UTXO(tx2.sha256, 0, tx2.vout[0].nValue))
|
self.utxo.append(UTXO(tx2.sha256, 0, tx2.vout[0].nValue))
|
||||||
|
@ -736,7 +742,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
|
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [tx])
|
self.update_witness_block_with_transactions(block, [tx])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
# Try various ways to spend tx that should all break.
|
# Try various ways to spend tx that should all break.
|
||||||
# This "broken" transaction serializer will not normalize
|
# This "broken" transaction serializer will not normalize
|
||||||
|
@ -771,7 +777,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
|
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [tx2])
|
self.update_witness_block_with_transactions(block, [tx2])
|
||||||
self.test_node.test_witness_block(block, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False)
|
||||||
|
|
||||||
# Now try using a too short vtxinwit
|
# Now try using a too short vtxinwit
|
||||||
tx2.wit.vtxinwit.pop()
|
tx2.wit.vtxinwit.pop()
|
||||||
|
@ -779,7 +785,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
|
|
||||||
block.vtx = [block.vtx[0]]
|
block.vtx = [block.vtx[0]]
|
||||||
self.update_witness_block_with_transactions(block, [tx2])
|
self.update_witness_block_with_transactions(block, [tx2])
|
||||||
self.test_node.test_witness_block(block, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False)
|
||||||
|
|
||||||
# Now make one of the intermediate witnesses be incorrect
|
# Now make one of the intermediate witnesses be incorrect
|
||||||
tx2.wit.vtxinwit.append(CTxInWitness())
|
tx2.wit.vtxinwit.append(CTxInWitness())
|
||||||
|
@ -788,13 +794,13 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
|
|
||||||
block.vtx = [block.vtx[0]]
|
block.vtx = [block.vtx[0]]
|
||||||
self.update_witness_block_with_transactions(block, [tx2])
|
self.update_witness_block_with_transactions(block, [tx2])
|
||||||
self.test_node.test_witness_block(block, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False)
|
||||||
|
|
||||||
# Fix the broken witness and the block should be accepted.
|
# Fix the broken witness and the block should be accepted.
|
||||||
tx2.wit.vtxinwit[5].scriptWitness.stack = [b'a', witness_program]
|
tx2.wit.vtxinwit[5].scriptWitness.stack = [b'a', witness_program]
|
||||||
block.vtx = [block.vtx[0]]
|
block.vtx = [block.vtx[0]]
|
||||||
self.update_witness_block_with_transactions(block, [tx2])
|
self.update_witness_block_with_transactions(block, [tx2])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
self.utxo.pop()
|
self.utxo.pop()
|
||||||
self.utxo.append(UTXO(tx2.sha256, 0, tx2.vout[0].nValue))
|
self.utxo.append(UTXO(tx2.sha256, 0, tx2.vout[0].nValue))
|
||||||
|
@ -834,11 +840,11 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
# its from)
|
# its from)
|
||||||
assert_equal(len(self.nodes[0].getrawmempool()), 0)
|
assert_equal(len(self.nodes[0].getrawmempool()), 0)
|
||||||
assert_equal(len(self.nodes[1].getrawmempool()), 0)
|
assert_equal(len(self.nodes[1].getrawmempool()), 0)
|
||||||
self.old_node.test_transaction_acceptance(tx, with_witness=True, accepted=False)
|
test_transaction_acceptance(self.nodes[0].rpc, self.old_node, tx, with_witness=True, accepted=False)
|
||||||
self.test_node.test_transaction_acceptance(tx, with_witness=True, accepted=False)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx, with_witness=True, accepted=False)
|
||||||
|
|
||||||
# But eliminating the witness should fix it
|
# But eliminating the witness should fix it
|
||||||
self.test_node.test_transaction_acceptance(tx, with_witness=False, accepted=True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx, with_witness=False, accepted=True)
|
||||||
|
|
||||||
# Cleanup: mine the first transaction and update utxo
|
# Cleanup: mine the first transaction and update utxo
|
||||||
self.nodes[0].generate(1)
|
self.nodes[0].generate(1)
|
||||||
|
@ -870,11 +876,11 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
# Verify that unnecessary witnesses are rejected.
|
# Verify that unnecessary witnesses are rejected.
|
||||||
self.test_node.announce_tx_and_wait_for_getdata(tx)
|
self.test_node.announce_tx_and_wait_for_getdata(tx)
|
||||||
assert_equal(len(self.nodes[0].getrawmempool()), 0)
|
assert_equal(len(self.nodes[0].getrawmempool()), 0)
|
||||||
self.test_node.test_transaction_acceptance(tx, with_witness=True, accepted=False)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx, with_witness=True, accepted=False)
|
||||||
|
|
||||||
# Verify that removing the witness succeeds.
|
# Verify that removing the witness succeeds.
|
||||||
self.test_node.announce_tx_and_wait_for_getdata(tx)
|
self.test_node.announce_tx_and_wait_for_getdata(tx)
|
||||||
self.test_node.test_transaction_acceptance(tx, with_witness=False, accepted=True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx, with_witness=False, accepted=True)
|
||||||
|
|
||||||
# Now try to add extra witness data to a valid witness tx.
|
# Now try to add extra witness data to a valid witness tx.
|
||||||
witness_program = CScript([OP_TRUE])
|
witness_program = CScript([OP_TRUE])
|
||||||
|
@ -899,24 +905,24 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
|
|
||||||
# Node will not be blinded to the transaction
|
# Node will not be blinded to the transaction
|
||||||
self.std_node.announce_tx_and_wait_for_getdata(tx3)
|
self.std_node.announce_tx_and_wait_for_getdata(tx3)
|
||||||
self.std_node.test_transaction_acceptance(tx3, True, False, b'tx-size')
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, tx3, True, False, b'tx-size')
|
||||||
self.std_node.announce_tx_and_wait_for_getdata(tx3)
|
self.std_node.announce_tx_and_wait_for_getdata(tx3)
|
||||||
self.std_node.test_transaction_acceptance(tx3, True, False, b'tx-size')
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, tx3, True, False, b'tx-size')
|
||||||
|
|
||||||
# Remove witness stuffing, instead add extra witness push on stack
|
# Remove witness stuffing, instead add extra witness push on stack
|
||||||
tx3.vout[0] = CTxOut(tx2.vout[0].nValue-1000, CScript([OP_TRUE]))
|
tx3.vout[0] = CTxOut(tx2.vout[0].nValue-1000, CScript([OP_TRUE]))
|
||||||
tx3.wit.vtxinwit[0].scriptWitness.stack = [CScript([CScriptNum(1)]), witness_program ]
|
tx3.wit.vtxinwit[0].scriptWitness.stack = [CScript([CScriptNum(1)]), witness_program ]
|
||||||
tx3.rehash()
|
tx3.rehash()
|
||||||
|
|
||||||
self.test_node.test_transaction_acceptance(tx2, with_witness=True, accepted=True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx2, with_witness=True, accepted=True)
|
||||||
self.test_node.test_transaction_acceptance(tx3, with_witness=True, accepted=False)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx3, with_witness=True, accepted=False)
|
||||||
|
|
||||||
# Get rid of the extra witness, and verify acceptance.
|
# Get rid of the extra witness, and verify acceptance.
|
||||||
tx3.wit.vtxinwit[0].scriptWitness.stack = [ witness_program ]
|
tx3.wit.vtxinwit[0].scriptWitness.stack = [ witness_program ]
|
||||||
# Also check that old_node gets a tx announcement, even though this is
|
# Also check that old_node gets a tx announcement, even though this is
|
||||||
# a witness transaction.
|
# a witness transaction.
|
||||||
self.old_node.wait_for_inv([CInv(1, tx2.sha256)]) # wait until tx2 was inv'ed
|
self.old_node.wait_for_inv([CInv(1, tx2.sha256)]) # wait until tx2 was inv'ed
|
||||||
self.test_node.test_transaction_acceptance(tx3, with_witness=True, accepted=True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx3, with_witness=True, accepted=True)
|
||||||
self.old_node.wait_for_inv([CInv(1, tx3.sha256)])
|
self.old_node.wait_for_inv([CInv(1, tx3.sha256)])
|
||||||
|
|
||||||
# Test that getrawtransaction returns correct witness information
|
# Test that getrawtransaction returns correct witness information
|
||||||
|
@ -955,20 +961,20 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
|
|
||||||
self.test_node.announce_block_and_wait_for_getdata(block1, use_header=False)
|
self.test_node.announce_block_and_wait_for_getdata(block1, use_header=False)
|
||||||
assert(self.test_node.last_message["getdata"].inv[0].type == blocktype)
|
assert(self.test_node.last_message["getdata"].inv[0].type == blocktype)
|
||||||
self.test_node.test_witness_block(block1, True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block1, True)
|
||||||
|
|
||||||
block2 = self.build_next_block(nVersion=4)
|
block2 = self.build_next_block(nVersion=4)
|
||||||
block2.solve()
|
block2.solve()
|
||||||
|
|
||||||
self.test_node.announce_block_and_wait_for_getdata(block2, use_header=True)
|
self.test_node.announce_block_and_wait_for_getdata(block2, use_header=True)
|
||||||
assert(self.test_node.last_message["getdata"].inv[0].type == blocktype)
|
assert(self.test_node.last_message["getdata"].inv[0].type == blocktype)
|
||||||
self.test_node.test_witness_block(block2, True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block2, True)
|
||||||
|
|
||||||
block3 = self.build_next_block(nVersion=(VB_TOP_BITS | (1<<15)))
|
block3 = self.build_next_block(nVersion=(VB_TOP_BITS | (1<<15)))
|
||||||
block3.solve()
|
block3.solve()
|
||||||
self.test_node.announce_block_and_wait_for_getdata(block3, use_header=True)
|
self.test_node.announce_block_and_wait_for_getdata(block3, use_header=True)
|
||||||
assert(self.test_node.last_message["getdata"].inv[0].type == blocktype)
|
assert(self.test_node.last_message["getdata"].inv[0].type == blocktype)
|
||||||
self.test_node.test_witness_block(block3, True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block3, True)
|
||||||
|
|
||||||
# Check that we can getdata for witness blocks or regular blocks,
|
# Check that we can getdata for witness blocks or regular blocks,
|
||||||
# and the right thing happens.
|
# and the right thing happens.
|
||||||
|
@ -998,7 +1004,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
# This gives us a witness commitment.
|
# This gives us a witness commitment.
|
||||||
assert(len(block.vtx[0].wit.vtxinwit) == 1)
|
assert(len(block.vtx[0].wit.vtxinwit) == 1)
|
||||||
assert(len(block.vtx[0].wit.vtxinwit[0].scriptWitness.stack) == 1)
|
assert(len(block.vtx[0].wit.vtxinwit[0].scriptWitness.stack) == 1)
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
# Now try to retrieve it...
|
# Now try to retrieve it...
|
||||||
rpc_block = self.nodes[0].getblock(block.hash, False)
|
rpc_block = self.nodes[0].getblock(block.hash, False)
|
||||||
non_wit_block = self.test_node.request_block(block.sha256, 2)
|
non_wit_block = self.test_node.request_block(block.sha256, 2)
|
||||||
|
@ -1052,7 +1058,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
p2sh_tx.rehash()
|
p2sh_tx.rehash()
|
||||||
|
|
||||||
# Mine it on test_node to create the confirmed output.
|
# Mine it on test_node to create the confirmed output.
|
||||||
self.test_node.test_transaction_acceptance(p2sh_tx, with_witness=True, accepted=True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, p2sh_tx, with_witness=True, accepted=True)
|
||||||
self.nodes[0].generate(1)
|
self.nodes[0].generate(1)
|
||||||
sync_blocks(self.nodes)
|
sync_blocks(self.nodes)
|
||||||
|
|
||||||
|
@ -1064,7 +1070,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx.vout.append(CTxOut(8000, scriptPubKey)) # Might burn this later
|
tx.vout.append(CTxOut(8000, scriptPubKey)) # Might burn this later
|
||||||
tx.rehash()
|
tx.rehash()
|
||||||
|
|
||||||
self.std_node.test_transaction_acceptance(tx, with_witness=True, accepted=segwit_activated)
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, tx, with_witness=True, accepted=segwit_activated)
|
||||||
|
|
||||||
# Now create something that looks like a P2PKH output. This won't be spendable.
|
# Now create something that looks like a P2PKH output. This won't be spendable.
|
||||||
scriptPubKey = CScript([OP_0, hash160(witness_hash)])
|
scriptPubKey = CScript([OP_0, hash160(witness_hash)])
|
||||||
|
@ -1081,7 +1087,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx2.vout = [CTxOut(p2sh_tx.vout[0].nValue-1000, scriptPubKey)]
|
tx2.vout = [CTxOut(p2sh_tx.vout[0].nValue-1000, scriptPubKey)]
|
||||||
tx2.rehash()
|
tx2.rehash()
|
||||||
|
|
||||||
self.std_node.test_transaction_acceptance(tx2, with_witness=True, accepted=segwit_activated)
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, tx2, with_witness=True, accepted=segwit_activated)
|
||||||
|
|
||||||
# Now update self.utxo for later tests.
|
# Now update self.utxo for later tests.
|
||||||
tx3 = CTransaction()
|
tx3 = CTransaction()
|
||||||
|
@ -1094,13 +1100,13 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx3.wit.vtxinwit.append(CTxInWitness())
|
tx3.wit.vtxinwit.append(CTxInWitness())
|
||||||
tx3.wit.vtxinwit[0].scriptWitness.stack = [witness_program]
|
tx3.wit.vtxinwit[0].scriptWitness.stack = [witness_program]
|
||||||
tx3.rehash()
|
tx3.rehash()
|
||||||
self.test_node.test_transaction_acceptance(tx3, with_witness=True, accepted=True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx3, with_witness=True, accepted=True)
|
||||||
else:
|
else:
|
||||||
# tx and tx2 didn't go anywhere; just clean up the p2sh_tx output.
|
# tx and tx2 didn't go anywhere; just clean up the p2sh_tx output.
|
||||||
tx3.vin = [CTxIn(COutPoint(p2sh_tx.sha256, 0), CScript([witness_program]))]
|
tx3.vin = [CTxIn(COutPoint(p2sh_tx.sha256, 0), CScript([witness_program]))]
|
||||||
tx3.vout = [CTxOut(p2sh_tx.vout[0].nValue-1000, witness_program)]
|
tx3.vout = [CTxOut(p2sh_tx.vout[0].nValue-1000, witness_program)]
|
||||||
tx3.rehash()
|
tx3.rehash()
|
||||||
self.test_node.test_transaction_acceptance(tx3, with_witness=True, accepted=True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx3, with_witness=True, accepted=True)
|
||||||
|
|
||||||
self.nodes[0].generate(1)
|
self.nodes[0].generate(1)
|
||||||
sync_blocks(self.nodes)
|
sync_blocks(self.nodes)
|
||||||
|
@ -1124,7 +1130,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx.rehash()
|
tx.rehash()
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [tx])
|
self.update_witness_block_with_transactions(block, [tx])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
self.utxo.pop(0)
|
self.utxo.pop(0)
|
||||||
for i in range(NUM_TESTS):
|
for i in range(NUM_TESTS):
|
||||||
self.utxo.append(UTXO(tx.sha256, i, split_value))
|
self.utxo.append(UTXO(tx.sha256, i, split_value))
|
||||||
|
@ -1143,8 +1149,8 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx.vin = [CTxIn(COutPoint(self.utxo[0].sha256, self.utxo[0].n), b"")]
|
tx.vin = [CTxIn(COutPoint(self.utxo[0].sha256, self.utxo[0].n), b"")]
|
||||||
tx.vout = [CTxOut(self.utxo[0].nValue-1000, scriptPubKey)]
|
tx.vout = [CTxOut(self.utxo[0].nValue-1000, scriptPubKey)]
|
||||||
tx.rehash()
|
tx.rehash()
|
||||||
self.std_node.test_transaction_acceptance(tx, with_witness=True, accepted=False)
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, tx, with_witness=True, accepted=False)
|
||||||
self.test_node.test_transaction_acceptance(tx, with_witness=True, accepted=True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx, with_witness=True, accepted=True)
|
||||||
self.utxo.pop(0)
|
self.utxo.pop(0)
|
||||||
temp_utxo.append(UTXO(tx.sha256, 0, tx.vout[0].nValue))
|
temp_utxo.append(UTXO(tx.sha256, 0, tx.vout[0].nValue))
|
||||||
|
|
||||||
|
@ -1163,8 +1169,8 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx2.rehash()
|
tx2.rehash()
|
||||||
# Gets accepted to test_node, because standardness of outputs isn't
|
# Gets accepted to test_node, because standardness of outputs isn't
|
||||||
# checked with fRequireStandard
|
# checked with fRequireStandard
|
||||||
self.test_node.test_transaction_acceptance(tx2, with_witness=True, accepted=True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx2, with_witness=True, accepted=True)
|
||||||
self.std_node.test_transaction_acceptance(tx2, with_witness=True, accepted=False)
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, tx2, with_witness=True, accepted=False)
|
||||||
temp_utxo.pop() # last entry in temp_utxo was the output we just spent
|
temp_utxo.pop() # last entry in temp_utxo was the output we just spent
|
||||||
temp_utxo.append(UTXO(tx2.sha256, 0, tx2.vout[0].nValue))
|
temp_utxo.append(UTXO(tx2.sha256, 0, tx2.vout[0].nValue))
|
||||||
|
|
||||||
|
@ -1180,7 +1186,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx3.rehash()
|
tx3.rehash()
|
||||||
# Spending a higher version witness output is not allowed by policy,
|
# Spending a higher version witness output is not allowed by policy,
|
||||||
# even with fRequireStandard=false.
|
# even with fRequireStandard=false.
|
||||||
self.test_node.test_transaction_acceptance(tx3, with_witness=True, accepted=False)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx3, with_witness=True, accepted=False)
|
||||||
self.test_node.sync_with_ping()
|
self.test_node.sync_with_ping()
|
||||||
with mininode_lock:
|
with mininode_lock:
|
||||||
assert(b"reserved for soft-fork upgrades" in self.test_node.last_message["reject"].reason)
|
assert(b"reserved for soft-fork upgrades" in self.test_node.last_message["reject"].reason)
|
||||||
|
@ -1188,7 +1194,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
# Building a block with the transaction must be valid, however.
|
# Building a block with the transaction must be valid, however.
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [tx2, tx3])
|
self.update_witness_block_with_transactions(block, [tx2, tx3])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
sync_blocks(self.nodes)
|
sync_blocks(self.nodes)
|
||||||
|
|
||||||
# Add utxo to our list
|
# Add utxo to our list
|
||||||
|
@ -1206,7 +1212,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
# This next line will rehash the coinbase and update the merkle
|
# This next line will rehash the coinbase and update the merkle
|
||||||
# root, and solve.
|
# root, and solve.
|
||||||
self.update_witness_block_with_transactions(block, [])
|
self.update_witness_block_with_transactions(block, [])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
spend_tx = CTransaction()
|
spend_tx = CTransaction()
|
||||||
spend_tx.vin = [CTxIn(COutPoint(block.vtx[0].sha256, 0), b"")]
|
spend_tx.vin = [CTxIn(COutPoint(block.vtx[0].sha256, 0), b"")]
|
||||||
|
@ -1220,13 +1226,13 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
sync_blocks(self.nodes)
|
sync_blocks(self.nodes)
|
||||||
block2 = self.build_next_block()
|
block2 = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block2, [spend_tx])
|
self.update_witness_block_with_transactions(block2, [spend_tx])
|
||||||
self.test_node.test_witness_block(block2, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block2, accepted=False)
|
||||||
|
|
||||||
# Advancing one more block should allow the spend.
|
# Advancing one more block should allow the spend.
|
||||||
self.nodes[0].generate(1)
|
self.nodes[0].generate(1)
|
||||||
block2 = self.build_next_block()
|
block2 = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block2, [spend_tx])
|
self.update_witness_block_with_transactions(block2, [spend_tx])
|
||||||
self.test_node.test_witness_block(block2, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block2, accepted=True)
|
||||||
sync_blocks(self.nodes)
|
sync_blocks(self.nodes)
|
||||||
|
|
||||||
|
|
||||||
|
@ -1247,11 +1253,11 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx.vout.append(CTxOut(self.utxo[0].nValue-1000, scriptPubKey))
|
tx.vout.append(CTxOut(self.utxo[0].nValue-1000, scriptPubKey))
|
||||||
tx.rehash()
|
tx.rehash()
|
||||||
|
|
||||||
self.test_node.test_transaction_acceptance(tx, with_witness=True, accepted=True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx, with_witness=True, accepted=True)
|
||||||
# Mine this transaction in preparation for following tests.
|
# Mine this transaction in preparation for following tests.
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [tx])
|
self.update_witness_block_with_transactions(block, [tx])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
sync_blocks(self.nodes)
|
sync_blocks(self.nodes)
|
||||||
self.utxo.pop(0)
|
self.utxo.pop(0)
|
||||||
|
|
||||||
|
@ -1268,19 +1274,19 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
# Too-large input value
|
# Too-large input value
|
||||||
sign_P2PK_witness_input(witness_program, tx, 0, hashtype, prev_utxo.nValue+1, key)
|
sign_P2PK_witness_input(witness_program, tx, 0, hashtype, prev_utxo.nValue+1, key)
|
||||||
self.update_witness_block_with_transactions(block, [tx])
|
self.update_witness_block_with_transactions(block, [tx])
|
||||||
self.test_node.test_witness_block(block, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False)
|
||||||
|
|
||||||
# Too-small input value
|
# Too-small input value
|
||||||
sign_P2PK_witness_input(witness_program, tx, 0, hashtype, prev_utxo.nValue-1, key)
|
sign_P2PK_witness_input(witness_program, tx, 0, hashtype, prev_utxo.nValue-1, key)
|
||||||
block.vtx.pop() # remove last tx
|
block.vtx.pop() # remove last tx
|
||||||
self.update_witness_block_with_transactions(block, [tx])
|
self.update_witness_block_with_transactions(block, [tx])
|
||||||
self.test_node.test_witness_block(block, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False)
|
||||||
|
|
||||||
# Now try correct value
|
# Now try correct value
|
||||||
sign_P2PK_witness_input(witness_program, tx, 0, hashtype, prev_utxo.nValue, key)
|
sign_P2PK_witness_input(witness_program, tx, 0, hashtype, prev_utxo.nValue, key)
|
||||||
block.vtx.pop()
|
block.vtx.pop()
|
||||||
self.update_witness_block_with_transactions(block, [tx])
|
self.update_witness_block_with_transactions(block, [tx])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
prev_utxo = UTXO(tx.sha256, 0, tx.vout[0].nValue)
|
prev_utxo = UTXO(tx.sha256, 0, tx.vout[0].nValue)
|
||||||
|
|
||||||
|
@ -1304,7 +1310,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
|
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [tx])
|
self.update_witness_block_with_transactions(block, [tx])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
used_sighash_single_out_of_bounds = False
|
used_sighash_single_out_of_bounds = False
|
||||||
|
@ -1346,7 +1352,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
# Test the block periodically, if we're close to maxblocksize
|
# Test the block periodically, if we're close to maxblocksize
|
||||||
if (get_virtual_size(block) > MAX_BLOCK_BASE_SIZE - 1000):
|
if (get_virtual_size(block) > MAX_BLOCK_BASE_SIZE - 1000):
|
||||||
self.update_witness_block_with_transactions(block, [])
|
self.update_witness_block_with_transactions(block, [])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
|
|
||||||
if (not used_sighash_single_out_of_bounds):
|
if (not used_sighash_single_out_of_bounds):
|
||||||
|
@ -1354,7 +1360,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
# Test the transactions we've added to the block
|
# Test the transactions we've added to the block
|
||||||
if (len(block.vtx) > 1):
|
if (len(block.vtx) > 1):
|
||||||
self.update_witness_block_with_transactions(block, [])
|
self.update_witness_block_with_transactions(block, [])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
# Now test witness version 0 P2PKH transactions
|
# Now test witness version 0 P2PKH transactions
|
||||||
pubkeyhash = hash160(pubkey)
|
pubkeyhash = hash160(pubkey)
|
||||||
|
@ -1376,7 +1382,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx2.vin[0].scriptSig = CScript([signature, pubkey])
|
tx2.vin[0].scriptSig = CScript([signature, pubkey])
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [tx, tx2])
|
self.update_witness_block_with_transactions(block, [tx, tx2])
|
||||||
self.test_node.test_witness_block(block, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=False)
|
||||||
|
|
||||||
# Move the signature to the witness.
|
# Move the signature to the witness.
|
||||||
block.vtx.pop()
|
block.vtx.pop()
|
||||||
|
@ -1386,7 +1392,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx2.rehash()
|
tx2.rehash()
|
||||||
|
|
||||||
self.update_witness_block_with_transactions(block, [tx2])
|
self.update_witness_block_with_transactions(block, [tx2])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
temp_utxos.pop(0)
|
temp_utxos.pop(0)
|
||||||
|
|
||||||
|
@ -1405,7 +1411,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
index += 1
|
index += 1
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [tx])
|
self.update_witness_block_with_transactions(block, [tx])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
for i in range(len(tx.vout)):
|
for i in range(len(tx.vout)):
|
||||||
self.utxo.append(UTXO(tx.sha256, i, tx.vout[i].nValue))
|
self.utxo.append(UTXO(tx.sha256, i, tx.vout[i].nValue))
|
||||||
|
@ -1432,10 +1438,10 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx.rehash()
|
tx.rehash()
|
||||||
|
|
||||||
# Verify mempool acceptance and block validity
|
# Verify mempool acceptance and block validity
|
||||||
self.test_node.test_transaction_acceptance(tx, with_witness=False, accepted=True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx, with_witness=False, accepted=True)
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [tx])
|
self.update_witness_block_with_transactions(block, [tx])
|
||||||
self.test_node.test_witness_block(block, accepted=True, with_witness=segwit_activated)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True, with_witness=segwit_activated)
|
||||||
sync_blocks(self.nodes)
|
sync_blocks(self.nodes)
|
||||||
|
|
||||||
# Now test attempts to spend the output.
|
# Now test attempts to spend the output.
|
||||||
|
@ -1449,12 +1455,12 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
# will require a witness to spend a witness program regardless of
|
# will require a witness to spend a witness program regardless of
|
||||||
# segwit activation. Note that older bitcoind's that are not
|
# segwit activation. Note that older bitcoind's that are not
|
||||||
# segwit-aware would also reject this for failing CLEANSTACK.
|
# segwit-aware would also reject this for failing CLEANSTACK.
|
||||||
self.test_node.test_transaction_acceptance(spend_tx, with_witness=False, accepted=False)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, spend_tx, with_witness=False, accepted=False)
|
||||||
|
|
||||||
# Try to put the witness script in the scriptSig, should also fail.
|
# Try to put the witness script in the scriptSig, should also fail.
|
||||||
spend_tx.vin[0].scriptSig = CScript([p2wsh_pubkey, b'a'])
|
spend_tx.vin[0].scriptSig = CScript([p2wsh_pubkey, b'a'])
|
||||||
spend_tx.rehash()
|
spend_tx.rehash()
|
||||||
self.test_node.test_transaction_acceptance(spend_tx, with_witness=False, accepted=False)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, spend_tx, with_witness=False, accepted=False)
|
||||||
|
|
||||||
# Now put the witness script in the witness, should succeed after
|
# Now put the witness script in the witness, should succeed after
|
||||||
# segwit activates.
|
# segwit activates.
|
||||||
|
@ -1464,7 +1470,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
spend_tx.wit.vtxinwit[0].scriptWitness.stack = [ b'a', witness_program ]
|
spend_tx.wit.vtxinwit[0].scriptWitness.stack = [ b'a', witness_program ]
|
||||||
|
|
||||||
# Verify mempool acceptance
|
# Verify mempool acceptance
|
||||||
self.test_node.test_transaction_acceptance(spend_tx, with_witness=True, accepted=segwit_activated)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, spend_tx, with_witness=True, accepted=segwit_activated)
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [spend_tx])
|
self.update_witness_block_with_transactions(block, [spend_tx])
|
||||||
|
|
||||||
|
@ -1472,9 +1478,9 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
# should be valid. If we're after activation, then sending this with
|
# should be valid. If we're after activation, then sending this with
|
||||||
# witnesses should be valid.
|
# witnesses should be valid.
|
||||||
if segwit_activated:
|
if segwit_activated:
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
else:
|
else:
|
||||||
self.test_node.test_witness_block(block, accepted=True, with_witness=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True, with_witness=False)
|
||||||
|
|
||||||
# Update self.utxo
|
# Update self.utxo
|
||||||
self.utxo.pop(0)
|
self.utxo.pop(0)
|
||||||
|
@ -1558,7 +1564,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
|
|
||||||
block_1 = self.build_next_block()
|
block_1 = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block_1, [tx])
|
self.update_witness_block_with_transactions(block_1, [tx])
|
||||||
self.test_node.test_witness_block(block_1, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block_1, accepted=True)
|
||||||
|
|
||||||
tx2 = CTransaction()
|
tx2 = CTransaction()
|
||||||
# If we try to spend the first n-1 outputs from tx, that should be
|
# If we try to spend the first n-1 outputs from tx, that should be
|
||||||
|
@ -1575,7 +1581,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
|
|
||||||
block_2 = self.build_next_block()
|
block_2 = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block_2, [tx2])
|
self.update_witness_block_with_transactions(block_2, [tx2])
|
||||||
self.test_node.test_witness_block(block_2, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block_2, accepted=False)
|
||||||
|
|
||||||
# Try dropping the last input in tx2, and add an output that has
|
# Try dropping the last input in tx2, and add an output that has
|
||||||
# too many sigops (contributing to legacy sigop count).
|
# too many sigops (contributing to legacy sigop count).
|
||||||
|
@ -1588,14 +1594,14 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx2.rehash()
|
tx2.rehash()
|
||||||
block_3 = self.build_next_block()
|
block_3 = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block_3, [tx2])
|
self.update_witness_block_with_transactions(block_3, [tx2])
|
||||||
self.test_node.test_witness_block(block_3, accepted=False)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block_3, accepted=False)
|
||||||
|
|
||||||
# If we drop the last checksig in this output, the tx should succeed.
|
# If we drop the last checksig in this output, the tx should succeed.
|
||||||
block_4 = self.build_next_block()
|
block_4 = self.build_next_block()
|
||||||
tx2.vout[-1].scriptPubKey = CScript([OP_CHECKSIG]*(checksig_count-1))
|
tx2.vout[-1].scriptPubKey = CScript([OP_CHECKSIG]*(checksig_count-1))
|
||||||
tx2.rehash()
|
tx2.rehash()
|
||||||
self.update_witness_block_with_transactions(block_4, [tx2])
|
self.update_witness_block_with_transactions(block_4, [tx2])
|
||||||
self.test_node.test_witness_block(block_4, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block_4, accepted=True)
|
||||||
|
|
||||||
# Reset the tip back down for the next test
|
# Reset the tip back down for the next test
|
||||||
sync_blocks(self.nodes)
|
sync_blocks(self.nodes)
|
||||||
|
@ -1611,7 +1617,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx2.wit.vtxinwit[-1].scriptWitness.stack = [ witness_program_justright ]
|
tx2.wit.vtxinwit[-1].scriptWitness.stack = [ witness_program_justright ]
|
||||||
tx2.rehash()
|
tx2.rehash()
|
||||||
self.update_witness_block_with_transactions(block_5, [tx2])
|
self.update_witness_block_with_transactions(block_5, [tx2])
|
||||||
self.test_node.test_witness_block(block_5, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block_5, accepted=True)
|
||||||
|
|
||||||
# TODO: test p2sh sigop counting
|
# TODO: test p2sh sigop counting
|
||||||
|
|
||||||
|
@ -1689,7 +1695,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
# Confirm it in a block.
|
# Confirm it in a block.
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [tx])
|
self.update_witness_block_with_transactions(block, [tx])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
# Now try to spend it. Send it to a P2WSH output, which we'll
|
# Now try to spend it. Send it to a P2WSH output, which we'll
|
||||||
# use in the next test.
|
# use in the next test.
|
||||||
|
@ -1708,11 +1714,11 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx2.rehash()
|
tx2.rehash()
|
||||||
|
|
||||||
# Should fail policy test.
|
# Should fail policy test.
|
||||||
self.test_node.test_transaction_acceptance(tx2, True, False, b'non-mandatory-script-verify-flag (Using non-compressed keys in segwit)')
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx2, True, False, b'non-mandatory-script-verify-flag (Using non-compressed keys in segwit)')
|
||||||
# But passes consensus.
|
# But passes consensus.
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [tx2])
|
self.update_witness_block_with_transactions(block, [tx2])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
# Test 2: P2WSH
|
# Test 2: P2WSH
|
||||||
# Try to spend the P2WSH output created in last test.
|
# Try to spend the P2WSH output created in last test.
|
||||||
|
@ -1728,11 +1734,11 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
sign_P2PK_witness_input(witness_program, tx3, 0, SIGHASH_ALL, tx2.vout[0].nValue, key)
|
sign_P2PK_witness_input(witness_program, tx3, 0, SIGHASH_ALL, tx2.vout[0].nValue, key)
|
||||||
|
|
||||||
# Should fail policy test.
|
# Should fail policy test.
|
||||||
self.test_node.test_transaction_acceptance(tx3, True, False, b'non-mandatory-script-verify-flag (Using non-compressed keys in segwit)')
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx3, True, False, b'non-mandatory-script-verify-flag (Using non-compressed keys in segwit)')
|
||||||
# But passes consensus.
|
# But passes consensus.
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [tx3])
|
self.update_witness_block_with_transactions(block, [tx3])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
# Test 3: P2SH(P2WSH)
|
# Test 3: P2SH(P2WSH)
|
||||||
# Try to spend the P2SH output created in the last test.
|
# Try to spend the P2SH output created in the last test.
|
||||||
|
@ -1745,10 +1751,10 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
sign_P2PK_witness_input(witness_program, tx4, 0, SIGHASH_ALL, tx3.vout[0].nValue, key)
|
sign_P2PK_witness_input(witness_program, tx4, 0, SIGHASH_ALL, tx3.vout[0].nValue, key)
|
||||||
|
|
||||||
# Should fail policy test.
|
# Should fail policy test.
|
||||||
self.test_node.test_transaction_acceptance(tx4, True, False, b'non-mandatory-script-verify-flag (Using non-compressed keys in segwit)')
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx4, True, False, b'non-mandatory-script-verify-flag (Using non-compressed keys in segwit)')
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [tx4])
|
self.update_witness_block_with_transactions(block, [tx4])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
|
|
||||||
# Test 4: Uncompressed pubkeys should still be valid in non-segwit
|
# Test 4: Uncompressed pubkeys should still be valid in non-segwit
|
||||||
# transactions.
|
# transactions.
|
||||||
|
@ -1760,10 +1766,10 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx5.vin[0].scriptSig = CScript([signature, pubkey])
|
tx5.vin[0].scriptSig = CScript([signature, pubkey])
|
||||||
tx5.rehash()
|
tx5.rehash()
|
||||||
# Should pass policy and consensus.
|
# Should pass policy and consensus.
|
||||||
self.test_node.test_transaction_acceptance(tx5, True, True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx5, True, True)
|
||||||
block = self.build_next_block()
|
block = self.build_next_block()
|
||||||
self.update_witness_block_with_transactions(block, [tx5])
|
self.update_witness_block_with_transactions(block, [tx5])
|
||||||
self.test_node.test_witness_block(block, accepted=True)
|
test_witness_block(self.nodes[0].rpc, self.test_node, block, accepted=True)
|
||||||
self.utxo.append(UTXO(tx5.sha256, 0, tx5.vout[0].nValue))
|
self.utxo.append(UTXO(tx5.sha256, 0, tx5.vout[0].nValue))
|
||||||
|
|
||||||
def test_non_standard_witness(self):
|
def test_non_standard_witness(self):
|
||||||
|
@ -1793,7 +1799,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
tx.vout.append(CTxOut(outputvalue, CScript([OP_HASH160, p2sh, OP_EQUAL])))
|
tx.vout.append(CTxOut(outputvalue, CScript([OP_HASH160, p2sh, OP_EQUAL])))
|
||||||
tx.rehash()
|
tx.rehash()
|
||||||
txid = tx.sha256
|
txid = tx.sha256
|
||||||
self.test_node.test_transaction_acceptance(tx, with_witness=False, accepted=True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, tx, with_witness=False, accepted=True)
|
||||||
|
|
||||||
self.nodes[0].generate(1)
|
self.nodes[0].generate(1)
|
||||||
sync_blocks(self.nodes)
|
sync_blocks(self.nodes)
|
||||||
|
@ -1818,45 +1824,45 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
# Testing native P2WSH
|
# Testing native P2WSH
|
||||||
# Witness stack size, excluding witnessScript, over 100 is non-standard
|
# Witness stack size, excluding witnessScript, over 100 is non-standard
|
||||||
p2wsh_txs[0].wit.vtxinwit[0].scriptWitness.stack = [pad] * 101 + [scripts[0]]
|
p2wsh_txs[0].wit.vtxinwit[0].scriptWitness.stack = [pad] * 101 + [scripts[0]]
|
||||||
self.std_node.test_transaction_acceptance(p2wsh_txs[0], True, False, b'bad-witness-nonstandard')
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, p2wsh_txs[0], True, False, b'bad-witness-nonstandard')
|
||||||
# Non-standard nodes should accept
|
# Non-standard nodes should accept
|
||||||
self.test_node.test_transaction_acceptance(p2wsh_txs[0], True, True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, p2wsh_txs[0], True, True)
|
||||||
|
|
||||||
# Stack element size over 80 bytes is non-standard
|
# Stack element size over 80 bytes is non-standard
|
||||||
p2wsh_txs[1].wit.vtxinwit[0].scriptWitness.stack = [pad * 81] * 100 + [scripts[1]]
|
p2wsh_txs[1].wit.vtxinwit[0].scriptWitness.stack = [pad * 81] * 100 + [scripts[1]]
|
||||||
self.std_node.test_transaction_acceptance(p2wsh_txs[1], True, False, b'bad-witness-nonstandard')
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, p2wsh_txs[1], True, False, b'bad-witness-nonstandard')
|
||||||
# Non-standard nodes should accept
|
# Non-standard nodes should accept
|
||||||
self.test_node.test_transaction_acceptance(p2wsh_txs[1], True, True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, p2wsh_txs[1], True, True)
|
||||||
# Standard nodes should accept if element size is not over 80 bytes
|
# Standard nodes should accept if element size is not over 80 bytes
|
||||||
p2wsh_txs[1].wit.vtxinwit[0].scriptWitness.stack = [pad * 80] * 100 + [scripts[1]]
|
p2wsh_txs[1].wit.vtxinwit[0].scriptWitness.stack = [pad * 80] * 100 + [scripts[1]]
|
||||||
self.std_node.test_transaction_acceptance(p2wsh_txs[1], True, True)
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, p2wsh_txs[1], True, True)
|
||||||
|
|
||||||
# witnessScript size at 3600 bytes is standard
|
# witnessScript size at 3600 bytes is standard
|
||||||
p2wsh_txs[2].wit.vtxinwit[0].scriptWitness.stack = [pad, pad, scripts[2]]
|
p2wsh_txs[2].wit.vtxinwit[0].scriptWitness.stack = [pad, pad, scripts[2]]
|
||||||
self.test_node.test_transaction_acceptance(p2wsh_txs[2], True, True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, p2wsh_txs[2], True, True)
|
||||||
self.std_node.test_transaction_acceptance(p2wsh_txs[2], True, True)
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, p2wsh_txs[2], True, True)
|
||||||
|
|
||||||
# witnessScript size at 3601 bytes is non-standard
|
# witnessScript size at 3601 bytes is non-standard
|
||||||
p2wsh_txs[3].wit.vtxinwit[0].scriptWitness.stack = [pad, pad, pad, scripts[3]]
|
p2wsh_txs[3].wit.vtxinwit[0].scriptWitness.stack = [pad, pad, pad, scripts[3]]
|
||||||
self.std_node.test_transaction_acceptance(p2wsh_txs[3], True, False, b'bad-witness-nonstandard')
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, p2wsh_txs[3], True, False, b'bad-witness-nonstandard')
|
||||||
# Non-standard nodes should accept
|
# Non-standard nodes should accept
|
||||||
self.test_node.test_transaction_acceptance(p2wsh_txs[3], True, True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, p2wsh_txs[3], True, True)
|
||||||
|
|
||||||
# Repeating the same tests with P2SH-P2WSH
|
# Repeating the same tests with P2SH-P2WSH
|
||||||
p2sh_txs[0].wit.vtxinwit[0].scriptWitness.stack = [pad] * 101 + [scripts[0]]
|
p2sh_txs[0].wit.vtxinwit[0].scriptWitness.stack = [pad] * 101 + [scripts[0]]
|
||||||
self.std_node.test_transaction_acceptance(p2sh_txs[0], True, False, b'bad-witness-nonstandard')
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, p2sh_txs[0], True, False, b'bad-witness-nonstandard')
|
||||||
self.test_node.test_transaction_acceptance(p2sh_txs[0], True, True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, p2sh_txs[0], True, True)
|
||||||
p2sh_txs[1].wit.vtxinwit[0].scriptWitness.stack = [pad * 81] * 100 + [scripts[1]]
|
p2sh_txs[1].wit.vtxinwit[0].scriptWitness.stack = [pad * 81] * 100 + [scripts[1]]
|
||||||
self.std_node.test_transaction_acceptance(p2sh_txs[1], True, False, b'bad-witness-nonstandard')
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, p2sh_txs[1], True, False, b'bad-witness-nonstandard')
|
||||||
self.test_node.test_transaction_acceptance(p2sh_txs[1], True, True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, p2sh_txs[1], True, True)
|
||||||
p2sh_txs[1].wit.vtxinwit[0].scriptWitness.stack = [pad * 80] * 100 + [scripts[1]]
|
p2sh_txs[1].wit.vtxinwit[0].scriptWitness.stack = [pad * 80] * 100 + [scripts[1]]
|
||||||
self.std_node.test_transaction_acceptance(p2sh_txs[1], True, True)
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, p2sh_txs[1], True, True)
|
||||||
p2sh_txs[2].wit.vtxinwit[0].scriptWitness.stack = [pad, pad, scripts[2]]
|
p2sh_txs[2].wit.vtxinwit[0].scriptWitness.stack = [pad, pad, scripts[2]]
|
||||||
self.test_node.test_transaction_acceptance(p2sh_txs[2], True, True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, p2sh_txs[2], True, True)
|
||||||
self.std_node.test_transaction_acceptance(p2sh_txs[2], True, True)
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, p2sh_txs[2], True, True)
|
||||||
p2sh_txs[3].wit.vtxinwit[0].scriptWitness.stack = [pad, pad, pad, scripts[3]]
|
p2sh_txs[3].wit.vtxinwit[0].scriptWitness.stack = [pad, pad, pad, scripts[3]]
|
||||||
self.std_node.test_transaction_acceptance(p2sh_txs[3], True, False, b'bad-witness-nonstandard')
|
test_transaction_acceptance(self.nodes[1].rpc, self.std_node, p2sh_txs[3], True, False, b'bad-witness-nonstandard')
|
||||||
self.test_node.test_transaction_acceptance(p2sh_txs[3], True, True)
|
test_transaction_acceptance(self.nodes[0].rpc, self.test_node, p2sh_txs[3], True, True)
|
||||||
|
|
||||||
self.nodes[0].generate(1) # Mine and clean up the mempool of non-standard node
|
self.nodes[0].generate(1) # Mine and clean up the mempool of non-standard node
|
||||||
# Valid but non-standard transactions in a block should be accepted by standard node
|
# Valid but non-standard transactions in a block should be accepted by standard node
|
||||||
|
@ -1870,11 +1876,11 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
def run_test(self):
|
def run_test(self):
|
||||||
# Setup the p2p connections and start up the network thread.
|
# Setup the p2p connections and start up the network thread.
|
||||||
# self.test_node sets NODE_WITNESS|NODE_NETWORK
|
# self.test_node sets NODE_WITNESS|NODE_NETWORK
|
||||||
self.test_node = self.nodes[0].add_p2p_connection(TestNode(self.nodes[0].rpc), services=NODE_NETWORK|NODE_WITNESS)
|
self.test_node = self.nodes[0].add_p2p_connection(TestNode(), services=NODE_NETWORK|NODE_WITNESS)
|
||||||
# self.old_node sets only NODE_NETWORK
|
# self.old_node sets only NODE_NETWORK
|
||||||
self.old_node = self.nodes[0].add_p2p_connection(TestNode(self.nodes[0].rpc), services=NODE_NETWORK)
|
self.old_node = self.nodes[0].add_p2p_connection(TestNode(), services=NODE_NETWORK)
|
||||||
# self.std_node is for testing node1 (fRequireStandard=true)
|
# self.std_node is for testing node1 (fRequireStandard=true)
|
||||||
self.std_node = self.nodes[1].add_p2p_connection(TestNode(self.nodes[1].rpc), services=NODE_NETWORK|NODE_WITNESS)
|
self.std_node = self.nodes[1].add_p2p_connection(TestNode(), services=NODE_NETWORK|NODE_WITNESS)
|
||||||
|
|
||||||
NetworkThread().start() # Start up network handling in another thread
|
NetworkThread().start() # Start up network handling in another thread
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ from test_framework.test_framework import BitcoinTestFramework
|
||||||
from test_framework.util import *
|
from test_framework.util import *
|
||||||
|
|
||||||
class TestNode(NodeConnCB):
|
class TestNode(NodeConnCB):
|
||||||
def on_version(self, conn, message):
|
def on_version(self, message):
|
||||||
# Don't send a verack in response
|
# Don't send a verack in response
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ WARN_UNKNOWN_RULES_ACTIVE = "unknown new rules activated (versionbit {})".format
|
||||||
VB_PATTERN = re.compile("^Warning.*versionbit")
|
VB_PATTERN = re.compile("^Warning.*versionbit")
|
||||||
|
|
||||||
class TestNode(NodeConnCB):
|
class TestNode(NodeConnCB):
|
||||||
def on_inv(self, conn, message):
|
def on_inv(self, message):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
class VersionBitsWarningTest(BitcoinTestFramework):
|
class VersionBitsWarningTest(BitcoinTestFramework):
|
||||||
|
|
|
@ -113,6 +113,7 @@ DIRECT_FETCH_RESPONSE_TIME = 0.05
|
||||||
class BaseNode(NodeConnCB):
|
class BaseNode(NodeConnCB):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
||||||
self.block_announced = False
|
self.block_announced = False
|
||||||
self.last_blockhash_announced = None
|
self.last_blockhash_announced = None
|
||||||
|
|
||||||
|
@ -121,18 +122,18 @@ class BaseNode(NodeConnCB):
|
||||||
msg = msg_getdata()
|
msg = msg_getdata()
|
||||||
for x in block_hashes:
|
for x in block_hashes:
|
||||||
msg.inv.append(CInv(2, x))
|
msg.inv.append(CInv(2, x))
|
||||||
self.connection.send_message(msg)
|
self.send_message(msg)
|
||||||
|
|
||||||
def send_get_headers(self, locator, hashstop):
|
def send_get_headers(self, locator, hashstop):
|
||||||
msg = msg_getheaders()
|
msg = msg_getheaders()
|
||||||
msg.locator.vHave = locator
|
msg.locator.vHave = locator
|
||||||
msg.hashstop = hashstop
|
msg.hashstop = hashstop
|
||||||
self.connection.send_message(msg)
|
self.send_message(msg)
|
||||||
|
|
||||||
def send_block_inv(self, blockhash):
|
def send_block_inv(self, blockhash):
|
||||||
msg = msg_inv()
|
msg = msg_inv()
|
||||||
msg.inv = [CInv(2, blockhash)]
|
msg.inv = [CInv(2, blockhash)]
|
||||||
self.connection.send_message(msg)
|
self.send_message(msg)
|
||||||
|
|
||||||
def send_header_for_blocks(self, new_blocks):
|
def send_header_for_blocks(self, new_blocks):
|
||||||
headers_message = msg_headers()
|
headers_message = msg_headers()
|
||||||
|
@ -155,11 +156,11 @@ class BaseNode(NodeConnCB):
|
||||||
test_function = lambda: self.last_blockhash_announced == block_hash
|
test_function = lambda: self.last_blockhash_announced == block_hash
|
||||||
wait_until(test_function, timeout=timeout, lock=mininode_lock)
|
wait_until(test_function, timeout=timeout, lock=mininode_lock)
|
||||||
|
|
||||||
def on_inv(self, conn, message):
|
def on_inv(self, message):
|
||||||
self.block_announced = True
|
self.block_announced = True
|
||||||
self.last_blockhash_announced = message.inv[-1].hash
|
self.last_blockhash_announced = message.inv[-1].hash
|
||||||
|
|
||||||
def on_headers(self, conn, message):
|
def on_headers(self, message):
|
||||||
if len(message.headers):
|
if len(message.headers):
|
||||||
self.block_announced = True
|
self.block_announced = True
|
||||||
message.headers[-1].calc_sha256()
|
message.headers[-1].calc_sha256()
|
||||||
|
|
|
@ -43,7 +43,6 @@ class TestNode(NodeConnCB):
|
||||||
|
|
||||||
def __init__(self, block_store, tx_store):
|
def __init__(self, block_store, tx_store):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.conn = None
|
|
||||||
self.bestblockhash = None
|
self.bestblockhash = None
|
||||||
self.block_store = block_store
|
self.block_store = block_store
|
||||||
self.block_request_map = {}
|
self.block_request_map = {}
|
||||||
|
@ -58,26 +57,23 @@ class TestNode(NodeConnCB):
|
||||||
self.lastInv = []
|
self.lastInv = []
|
||||||
self.closed = False
|
self.closed = False
|
||||||
|
|
||||||
def on_close(self, conn):
|
def on_close(self):
|
||||||
self.closed = True
|
self.closed = True
|
||||||
|
|
||||||
def add_connection(self, conn):
|
def on_headers(self, message):
|
||||||
self.conn = conn
|
|
||||||
|
|
||||||
def on_headers(self, conn, message):
|
|
||||||
if len(message.headers) > 0:
|
if len(message.headers) > 0:
|
||||||
best_header = message.headers[-1]
|
best_header = message.headers[-1]
|
||||||
best_header.calc_sha256()
|
best_header.calc_sha256()
|
||||||
self.bestblockhash = best_header.sha256
|
self.bestblockhash = best_header.sha256
|
||||||
|
|
||||||
def on_getheaders(self, conn, message):
|
def on_getheaders(self, message):
|
||||||
response = self.block_store.headers_for(message.locator, message.hashstop)
|
response = self.block_store.headers_for(message.locator, message.hashstop)
|
||||||
if response is not None:
|
if response is not None:
|
||||||
conn.send_message(response)
|
self.send_message(response)
|
||||||
|
|
||||||
def on_getdata(self, conn, message):
|
def on_getdata(self, message):
|
||||||
[conn.send_message(r) for r in self.block_store.get_blocks(message.inv)]
|
[self.send_message(r) for r in self.block_store.get_blocks(message.inv)]
|
||||||
[conn.send_message(r) for r in self.tx_store.get_transactions(message.inv)]
|
[self.send_message(r) for r in self.tx_store.get_transactions(message.inv)]
|
||||||
|
|
||||||
for i in message.inv:
|
for i in message.inv:
|
||||||
if i.type == 1 or i.type == 1 | (1 << 30): # MSG_TX or MSG_WITNESS_TX
|
if i.type == 1 or i.type == 1 | (1 << 30): # MSG_TX or MSG_WITNESS_TX
|
||||||
|
@ -85,16 +81,16 @@ class TestNode(NodeConnCB):
|
||||||
elif i.type == 2 or i.type == 2 | (1 << 30): # MSG_BLOCK or MSG_WITNESS_BLOCK
|
elif i.type == 2 or i.type == 2 | (1 << 30): # MSG_BLOCK or MSG_WITNESS_BLOCK
|
||||||
self.block_request_map[i.hash] = True
|
self.block_request_map[i.hash] = True
|
||||||
|
|
||||||
def on_inv(self, conn, message):
|
def on_inv(self, message):
|
||||||
self.lastInv = [x.hash for x in message.inv]
|
self.lastInv = [x.hash for x in message.inv]
|
||||||
|
|
||||||
def on_pong(self, conn, message):
|
def on_pong(self, message):
|
||||||
try:
|
try:
|
||||||
del self.pingMap[message.nonce]
|
del self.pingMap[message.nonce]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
raise AssertionError("Got pong for unknown ping [%s]" % repr(message))
|
raise AssertionError("Got pong for unknown ping [%s]" % repr(message))
|
||||||
|
|
||||||
def on_reject(self, conn, message):
|
def on_reject(self, message):
|
||||||
if message.message == b'tx':
|
if message.message == b'tx':
|
||||||
self.tx_reject_map[message.data] = RejectResult(message.code, message.reason)
|
self.tx_reject_map[message.data] = RejectResult(message.code, message.reason)
|
||||||
if message.message == b'block':
|
if message.message == b'block':
|
||||||
|
@ -102,30 +98,30 @@ class TestNode(NodeConnCB):
|
||||||
|
|
||||||
def send_inv(self, obj):
|
def send_inv(self, obj):
|
||||||
mtype = 2 if isinstance(obj, CBlock) else 1
|
mtype = 2 if isinstance(obj, CBlock) else 1
|
||||||
self.conn.send_message(msg_inv([CInv(mtype, obj.sha256)]))
|
self.send_message(msg_inv([CInv(mtype, obj.sha256)]))
|
||||||
|
|
||||||
def send_getheaders(self):
|
def send_getheaders(self):
|
||||||
# We ask for headers from their last tip.
|
# We ask for headers from their last tip.
|
||||||
m = msg_getheaders()
|
m = msg_getheaders()
|
||||||
m.locator = self.block_store.get_locator(self.bestblockhash)
|
m.locator = self.block_store.get_locator(self.bestblockhash)
|
||||||
self.conn.send_message(m)
|
self.send_message(m)
|
||||||
|
|
||||||
def send_header(self, header):
|
def send_header(self, header):
|
||||||
m = msg_headers()
|
m = msg_headers()
|
||||||
m.headers.append(header)
|
m.headers.append(header)
|
||||||
self.conn.send_message(m)
|
self.send_message(m)
|
||||||
|
|
||||||
# This assumes BIP31
|
# This assumes BIP31
|
||||||
def send_ping(self, nonce):
|
def send_ping(self, nonce):
|
||||||
self.pingMap[nonce] = True
|
self.pingMap[nonce] = True
|
||||||
self.conn.send_message(msg_ping(nonce))
|
self.send_message(msg_ping(nonce))
|
||||||
|
|
||||||
def received_ping_response(self, nonce):
|
def received_ping_response(self, nonce):
|
||||||
return nonce not in self.pingMap
|
return nonce not in self.pingMap
|
||||||
|
|
||||||
def send_mempool(self):
|
def send_mempool(self):
|
||||||
self.lastInv = []
|
self.lastInv = []
|
||||||
self.conn.send_message(msg_mempool())
|
self.send_message(msg_mempool())
|
||||||
|
|
||||||
# TestInstance:
|
# TestInstance:
|
||||||
#
|
#
|
||||||
|
@ -166,8 +162,7 @@ class TestManager():
|
||||||
|
|
||||||
def __init__(self, testgen, datadir):
|
def __init__(self, testgen, datadir):
|
||||||
self.test_generator = testgen
|
self.test_generator = testgen
|
||||||
self.connections = []
|
self.p2p_connections= []
|
||||||
self.test_nodes = []
|
|
||||||
self.block_store = BlockStore(datadir)
|
self.block_store = BlockStore(datadir)
|
||||||
self.tx_store = TxStore(datadir)
|
self.tx_store = TxStore(datadir)
|
||||||
self.ping_counter = 1
|
self.ping_counter = 1
|
||||||
|
@ -175,28 +170,24 @@ class TestManager():
|
||||||
def add_all_connections(self, nodes):
|
def add_all_connections(self, nodes):
|
||||||
for i in range(len(nodes)):
|
for i in range(len(nodes)):
|
||||||
# Create a p2p connection to each node
|
# Create a p2p connection to each node
|
||||||
test_node = TestNode(self.block_store, self.tx_store)
|
node = TestNode(self.block_store, self.tx_store)
|
||||||
self.test_nodes.append(test_node)
|
node.peer_connect('127.0.0.1', p2p_port(i))
|
||||||
self.connections.append(NodeConn('127.0.0.1', p2p_port(i), test_node))
|
self.p2p_connections.append(node)
|
||||||
# Make sure the TestNode (callback class) has a reference to its
|
|
||||||
# associated NodeConn
|
|
||||||
test_node.add_connection(self.connections[-1])
|
|
||||||
|
|
||||||
def clear_all_connections(self):
|
def clear_all_connections(self):
|
||||||
self.connections = []
|
self.p2p_connections = []
|
||||||
self.test_nodes = []
|
|
||||||
|
|
||||||
def wait_for_disconnections(self):
|
def wait_for_disconnections(self):
|
||||||
def disconnected():
|
def disconnected():
|
||||||
return all(node.closed for node in self.test_nodes)
|
return all(node.closed for node in self.p2p_connections)
|
||||||
wait_until(disconnected, timeout=10, lock=mininode_lock)
|
wait_until(disconnected, timeout=10, lock=mininode_lock)
|
||||||
|
|
||||||
def wait_for_verack(self):
|
def wait_for_verack(self):
|
||||||
return all(node.wait_for_verack() for node in self.test_nodes)
|
return all(node.wait_for_verack() for node in self.p2p_connections)
|
||||||
|
|
||||||
def wait_for_pings(self, counter):
|
def wait_for_pings(self, counter):
|
||||||
def received_pongs():
|
def received_pongs():
|
||||||
return all(node.received_ping_response(counter) for node in self.test_nodes)
|
return all(node.received_ping_response(counter) for node in self.p2p_connections)
|
||||||
wait_until(received_pongs, lock=mininode_lock)
|
wait_until(received_pongs, lock=mininode_lock)
|
||||||
|
|
||||||
# sync_blocks: Wait for all connections to request the blockhash given
|
# sync_blocks: Wait for all connections to request the blockhash given
|
||||||
|
@ -206,17 +197,17 @@ class TestManager():
|
||||||
def blocks_requested():
|
def blocks_requested():
|
||||||
return all(
|
return all(
|
||||||
blockhash in node.block_request_map and node.block_request_map[blockhash]
|
blockhash in node.block_request_map and node.block_request_map[blockhash]
|
||||||
for node in self.test_nodes
|
for node in self.p2p_connections
|
||||||
)
|
)
|
||||||
|
|
||||||
# --> error if not requested
|
# --> error if not requested
|
||||||
wait_until(blocks_requested, attempts=20*num_blocks, lock=mininode_lock)
|
wait_until(blocks_requested, attempts=20*num_blocks, lock=mininode_lock)
|
||||||
|
|
||||||
# Send getheaders message
|
# Send getheaders message
|
||||||
[ c.cb.send_getheaders() for c in self.connections ]
|
[ c.send_getheaders() for c in self.p2p_connections ]
|
||||||
|
|
||||||
# Send ping and wait for response -- synchronization hack
|
# Send ping and wait for response -- synchronization hack
|
||||||
[ c.cb.send_ping(self.ping_counter) for c in self.connections ]
|
[ c.send_ping(self.ping_counter) for c in self.p2p_connections ]
|
||||||
self.wait_for_pings(self.ping_counter)
|
self.wait_for_pings(self.ping_counter)
|
||||||
self.ping_counter += 1
|
self.ping_counter += 1
|
||||||
|
|
||||||
|
@ -226,42 +217,42 @@ class TestManager():
|
||||||
def transaction_requested():
|
def transaction_requested():
|
||||||
return all(
|
return all(
|
||||||
txhash in node.tx_request_map and node.tx_request_map[txhash]
|
txhash in node.tx_request_map and node.tx_request_map[txhash]
|
||||||
for node in self.test_nodes
|
for node in self.p2p_connections
|
||||||
)
|
)
|
||||||
|
|
||||||
# --> error if not requested
|
# --> error if not requested
|
||||||
wait_until(transaction_requested, attempts=20*num_events, lock=mininode_lock)
|
wait_until(transaction_requested, attempts=20*num_events, lock=mininode_lock)
|
||||||
|
|
||||||
# Get the mempool
|
# Get the mempool
|
||||||
[ c.cb.send_mempool() for c in self.connections ]
|
[ c.send_mempool() for c in self.p2p_connections ]
|
||||||
|
|
||||||
# Send ping and wait for response -- synchronization hack
|
# Send ping and wait for response -- synchronization hack
|
||||||
[ c.cb.send_ping(self.ping_counter) for c in self.connections ]
|
[ c.send_ping(self.ping_counter) for c in self.p2p_connections ]
|
||||||
self.wait_for_pings(self.ping_counter)
|
self.wait_for_pings(self.ping_counter)
|
||||||
self.ping_counter += 1
|
self.ping_counter += 1
|
||||||
|
|
||||||
# Sort inv responses from each node
|
# Sort inv responses from each node
|
||||||
with mininode_lock:
|
with mininode_lock:
|
||||||
[ c.cb.lastInv.sort() for c in self.connections ]
|
[ c.lastInv.sort() for c in self.p2p_connections ]
|
||||||
|
|
||||||
# Verify that the tip of each connection all agree with each other, and
|
# Verify that the tip of each connection all agree with each other, and
|
||||||
# with the expected outcome (if given)
|
# with the expected outcome (if given)
|
||||||
def check_results(self, blockhash, outcome):
|
def check_results(self, blockhash, outcome):
|
||||||
with mininode_lock:
|
with mininode_lock:
|
||||||
for c in self.connections:
|
for c in self.p2p_connections:
|
||||||
if outcome is None:
|
if outcome is None:
|
||||||
if c.cb.bestblockhash != self.connections[0].cb.bestblockhash:
|
if c.bestblockhash != self.p2p_connections[0].bestblockhash:
|
||||||
return False
|
return False
|
||||||
elif isinstance(outcome, RejectResult): # Check that block was rejected w/ code
|
elif isinstance(outcome, RejectResult): # Check that block was rejected w/ code
|
||||||
if c.cb.bestblockhash == blockhash:
|
if c.bestblockhash == blockhash:
|
||||||
return False
|
return False
|
||||||
if blockhash not in c.cb.block_reject_map:
|
if blockhash not in c.block_reject_map:
|
||||||
logger.error('Block not in reject map: %064x' % (blockhash))
|
logger.error('Block not in reject map: %064x' % (blockhash))
|
||||||
return False
|
return False
|
||||||
if not outcome.match(c.cb.block_reject_map[blockhash]):
|
if not outcome.match(c.block_reject_map[blockhash]):
|
||||||
logger.error('Block rejected with %s instead of expected %s: %064x' % (c.cb.block_reject_map[blockhash], outcome, blockhash))
|
logger.error('Block rejected with %s instead of expected %s: %064x' % (c.block_reject_map[blockhash], outcome, blockhash))
|
||||||
return False
|
return False
|
||||||
elif ((c.cb.bestblockhash == blockhash) != outcome):
|
elif ((c.bestblockhash == blockhash) != outcome):
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
@ -273,21 +264,21 @@ class TestManager():
|
||||||
# a particular tx's existence in the mempool is the same across all nodes.
|
# a particular tx's existence in the mempool is the same across all nodes.
|
||||||
def check_mempool(self, txhash, outcome):
|
def check_mempool(self, txhash, outcome):
|
||||||
with mininode_lock:
|
with mininode_lock:
|
||||||
for c in self.connections:
|
for c in self.p2p_connections:
|
||||||
if outcome is None:
|
if outcome is None:
|
||||||
# Make sure the mempools agree with each other
|
# Make sure the mempools agree with each other
|
||||||
if c.cb.lastInv != self.connections[0].cb.lastInv:
|
if c.lastInv != self.p2p_connections[0].lastInv:
|
||||||
return False
|
return False
|
||||||
elif isinstance(outcome, RejectResult): # Check that tx was rejected w/ code
|
elif isinstance(outcome, RejectResult): # Check that tx was rejected w/ code
|
||||||
if txhash in c.cb.lastInv:
|
if txhash in c.lastInv:
|
||||||
return False
|
return False
|
||||||
if txhash not in c.cb.tx_reject_map:
|
if txhash not in c.tx_reject_map:
|
||||||
logger.error('Tx not in reject map: %064x' % (txhash))
|
logger.error('Tx not in reject map: %064x' % (txhash))
|
||||||
return False
|
return False
|
||||||
if not outcome.match(c.cb.tx_reject_map[txhash]):
|
if not outcome.match(c.tx_reject_map[txhash]):
|
||||||
logger.error('Tx rejected with %s instead of expected %s: %064x' % (c.cb.tx_reject_map[txhash], outcome, txhash))
|
logger.error('Tx rejected with %s instead of expected %s: %064x' % (c.tx_reject_map[txhash], outcome, txhash))
|
||||||
return False
|
return False
|
||||||
elif ((txhash in c.cb.lastInv) != outcome):
|
elif ((txhash in c.lastInv) != outcome):
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
@ -332,25 +323,25 @@ class TestManager():
|
||||||
first_block_with_hash = False
|
first_block_with_hash = False
|
||||||
with mininode_lock:
|
with mininode_lock:
|
||||||
self.block_store.add_block(block)
|
self.block_store.add_block(block)
|
||||||
for c in self.connections:
|
for c in self.p2p_connections:
|
||||||
if first_block_with_hash and block.sha256 in c.cb.block_request_map and c.cb.block_request_map[block.sha256] == True:
|
if first_block_with_hash and block.sha256 in c.block_request_map and c.block_request_map[block.sha256] == True:
|
||||||
# There was a previous request for this block hash
|
# There was a previous request for this block hash
|
||||||
# Most likely, we delivered a header for this block
|
# Most likely, we delivered a header for this block
|
||||||
# but never had the block to respond to the getdata
|
# but never had the block to respond to the getdata
|
||||||
c.send_message(msg_block(block))
|
c.send_message(msg_block(block))
|
||||||
else:
|
else:
|
||||||
c.cb.block_request_map[block.sha256] = False
|
c.block_request_map[block.sha256] = False
|
||||||
# Either send inv's to each node and sync, or add
|
# Either send inv's to each node and sync, or add
|
||||||
# to invqueue for later inv'ing.
|
# to invqueue for later inv'ing.
|
||||||
if (test_instance.sync_every_block):
|
if (test_instance.sync_every_block):
|
||||||
# if we expect success, send inv and sync every block
|
# if we expect success, send inv and sync every block
|
||||||
# if we expect failure, just push the block and see what happens.
|
# if we expect failure, just push the block and see what happens.
|
||||||
if outcome == True:
|
if outcome == True:
|
||||||
[ c.cb.send_inv(block) for c in self.connections ]
|
[ c.send_inv(block) for c in self.p2p_connections ]
|
||||||
self.sync_blocks(block.sha256, 1)
|
self.sync_blocks(block.sha256, 1)
|
||||||
else:
|
else:
|
||||||
[ c.send_message(msg_block(block)) for c in self.connections ]
|
[ c.send_message(msg_block(block)) for c in self.p2p_connections ]
|
||||||
[ c.cb.send_ping(self.ping_counter) for c in self.connections ]
|
[ c.send_ping(self.ping_counter) for c in self.p2p_connections ]
|
||||||
self.wait_for_pings(self.ping_counter)
|
self.wait_for_pings(self.ping_counter)
|
||||||
self.ping_counter += 1
|
self.ping_counter += 1
|
||||||
if (not self.check_results(tip, outcome)):
|
if (not self.check_results(tip, outcome)):
|
||||||
|
@ -360,7 +351,7 @@ class TestManager():
|
||||||
elif isinstance(b_or_t, CBlockHeader):
|
elif isinstance(b_or_t, CBlockHeader):
|
||||||
block_header = b_or_t
|
block_header = b_or_t
|
||||||
self.block_store.add_header(block_header)
|
self.block_store.add_header(block_header)
|
||||||
[ c.cb.send_header(block_header) for c in self.connections ]
|
[ c.send_header(block_header) for c in self.p2p_connections ]
|
||||||
|
|
||||||
else: # Tx test runner
|
else: # Tx test runner
|
||||||
assert(isinstance(b_or_t, CTransaction))
|
assert(isinstance(b_or_t, CTransaction))
|
||||||
|
@ -369,11 +360,11 @@ class TestManager():
|
||||||
# Add to shared tx store and clear map entry
|
# Add to shared tx store and clear map entry
|
||||||
with mininode_lock:
|
with mininode_lock:
|
||||||
self.tx_store.add_transaction(tx)
|
self.tx_store.add_transaction(tx)
|
||||||
for c in self.connections:
|
for c in self.p2p_connections:
|
||||||
c.cb.tx_request_map[tx.sha256] = False
|
c.tx_request_map[tx.sha256] = False
|
||||||
# Again, either inv to all nodes or save for later
|
# Again, either inv to all nodes or save for later
|
||||||
if (test_instance.sync_every_tx):
|
if (test_instance.sync_every_tx):
|
||||||
[ c.cb.send_inv(tx) for c in self.connections ]
|
[ c.send_inv(tx) for c in self.p2p_connections ]
|
||||||
self.sync_transaction(tx.sha256, 1)
|
self.sync_transaction(tx.sha256, 1)
|
||||||
if (not self.check_mempool(tx.sha256, outcome)):
|
if (not self.check_mempool(tx.sha256, outcome)):
|
||||||
raise AssertionError("Test failed at test %d" % test_number)
|
raise AssertionError("Test failed at test %d" % test_number)
|
||||||
|
@ -381,26 +372,26 @@ class TestManager():
|
||||||
invqueue.append(CInv(1, tx.sha256))
|
invqueue.append(CInv(1, tx.sha256))
|
||||||
# Ensure we're not overflowing the inv queue
|
# Ensure we're not overflowing the inv queue
|
||||||
if len(invqueue) == MAX_INV_SZ:
|
if len(invqueue) == MAX_INV_SZ:
|
||||||
[ c.send_message(msg_inv(invqueue)) for c in self.connections ]
|
[ c.send_message(msg_inv(invqueue)) for c in self.p2p_connections ]
|
||||||
invqueue = []
|
invqueue = []
|
||||||
|
|
||||||
# Do final sync if we weren't syncing on every block or every tx.
|
# Do final sync if we weren't syncing on every block or every tx.
|
||||||
if (not test_instance.sync_every_block and block is not None):
|
if (not test_instance.sync_every_block and block is not None):
|
||||||
if len(invqueue) > 0:
|
if len(invqueue) > 0:
|
||||||
[ c.send_message(msg_inv(invqueue)) for c in self.connections ]
|
[ c.send_message(msg_inv(invqueue)) for c in self.p2p_connections ]
|
||||||
invqueue = []
|
invqueue = []
|
||||||
self.sync_blocks(block.sha256, len(test_instance.blocks_and_transactions))
|
self.sync_blocks(block.sha256, len(test_instance.blocks_and_transactions))
|
||||||
if (not self.check_results(tip, block_outcome)):
|
if (not self.check_results(tip, block_outcome)):
|
||||||
raise AssertionError("Block test failed at test %d" % test_number)
|
raise AssertionError("Block test failed at test %d" % test_number)
|
||||||
if (not test_instance.sync_every_tx and tx is not None):
|
if (not test_instance.sync_every_tx and tx is not None):
|
||||||
if len(invqueue) > 0:
|
if len(invqueue) > 0:
|
||||||
[ c.send_message(msg_inv(invqueue)) for c in self.connections ]
|
[ c.send_message(msg_inv(invqueue)) for c in self.p2p_connections ]
|
||||||
invqueue = []
|
invqueue = []
|
||||||
self.sync_transaction(tx.sha256, len(test_instance.blocks_and_transactions))
|
self.sync_transaction(tx.sha256, len(test_instance.blocks_and_transactions))
|
||||||
if (not self.check_mempool(tx.sha256, tx_outcome)):
|
if (not self.check_mempool(tx.sha256, tx_outcome)):
|
||||||
raise AssertionError("Mempool test failed at test %d" % test_number)
|
raise AssertionError("Mempool test failed at test %d" % test_number)
|
||||||
|
|
||||||
[ c.disconnect_node() for c in self.connections ]
|
[ c.disconnect_node() for c in self.p2p_connections ]
|
||||||
self.wait_for_disconnections()
|
self.wait_for_disconnections()
|
||||||
self.block_store.close()
|
self.block_store.close()
|
||||||
self.tx_store.close()
|
self.tx_store.close()
|
||||||
|
|
|
@ -20,10 +20,10 @@ import logging
|
||||||
import socket
|
import socket
|
||||||
import struct
|
import struct
|
||||||
import sys
|
import sys
|
||||||
import time
|
|
||||||
from threading import RLock, Thread
|
from threading import RLock, Thread
|
||||||
|
|
||||||
from test_framework.messages import *
|
from test_framework.messages import *
|
||||||
|
from test_framework.util import wait_until
|
||||||
|
|
||||||
logger = logging.getLogger("TestFramework.mininode")
|
logger = logging.getLogger("TestFramework.mininode")
|
||||||
|
|
||||||
|
@ -57,15 +57,206 @@ MAGIC_BYTES = {
|
||||||
"regtest": b"\xfa\xbf\xb5\xda", # regtest
|
"regtest": b"\xfa\xbf\xb5\xda", # regtest
|
||||||
}
|
}
|
||||||
|
|
||||||
class NodeConnCB():
|
class NodeConn(asyncore.dispatcher):
|
||||||
"""Callback and helper functions for P2P connection to a bitcoind node.
|
"""A low-level connection object to a node's P2P interface.
|
||||||
|
|
||||||
|
This class is responsible for:
|
||||||
|
|
||||||
|
- opening and closing the TCP connection to the node
|
||||||
|
- reading bytes from and writing bytes to the socket
|
||||||
|
- deserializing and serializing the P2P message header
|
||||||
|
- logging messages as they are sent and received
|
||||||
|
|
||||||
|
This class contains no logic for handing the P2P message payloads. It must be
|
||||||
|
sub-classed and the on_message() callback overridden.
|
||||||
|
|
||||||
|
TODO: rename this class P2PConnection."""
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
super().__init__(map=mininode_socket_map)
|
||||||
|
|
||||||
|
def peer_connect(self, dstaddr, dstport, net="regtest"):
|
||||||
|
self.dstaddr = dstaddr
|
||||||
|
self.dstport = dstport
|
||||||
|
self.create_socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||||
|
self.socket.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
|
||||||
|
self.sendbuf = b""
|
||||||
|
self.recvbuf = b""
|
||||||
|
self.state = "connecting"
|
||||||
|
self.network = net
|
||||||
|
self.disconnect = False
|
||||||
|
|
||||||
|
logger.info('Connecting to Bitcoin Node: %s:%d' % (self.dstaddr, self.dstport))
|
||||||
|
|
||||||
|
try:
|
||||||
|
self.connect((dstaddr, dstport))
|
||||||
|
except:
|
||||||
|
self.handle_close()
|
||||||
|
|
||||||
|
def peer_disconnect(self):
|
||||||
|
# Connection could have already been closed by other end.
|
||||||
|
if self.state == "connected":
|
||||||
|
self.disconnect_node()
|
||||||
|
|
||||||
|
# Connection and disconnection methods
|
||||||
|
|
||||||
|
def handle_connect(self):
|
||||||
|
"""asyncore callback when a connection is opened."""
|
||||||
|
if self.state != "connected":
|
||||||
|
logger.debug("Connected & Listening: %s:%d" % (self.dstaddr, self.dstport))
|
||||||
|
self.state = "connected"
|
||||||
|
self.on_open()
|
||||||
|
|
||||||
|
def handle_close(self):
|
||||||
|
"""asyncore callback when a connection is closed."""
|
||||||
|
logger.debug("Closing connection to: %s:%d" % (self.dstaddr, self.dstport))
|
||||||
|
self.state = "closed"
|
||||||
|
self.recvbuf = b""
|
||||||
|
self.sendbuf = b""
|
||||||
|
try:
|
||||||
|
self.close()
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
self.on_close()
|
||||||
|
|
||||||
|
def disconnect_node(self):
|
||||||
|
"""Disconnect the p2p connection.
|
||||||
|
|
||||||
|
Called by the test logic thread. Causes the p2p connection
|
||||||
|
to be disconnected on the next iteration of the asyncore loop."""
|
||||||
|
self.disconnect = True
|
||||||
|
|
||||||
|
# Socket read methods
|
||||||
|
|
||||||
|
def handle_read(self):
|
||||||
|
"""asyncore callback when data is read from the socket."""
|
||||||
|
t = self.recv(8192)
|
||||||
|
if len(t) > 0:
|
||||||
|
self.recvbuf += t
|
||||||
|
self._on_data()
|
||||||
|
|
||||||
|
def _on_data(self):
|
||||||
|
"""Try to read P2P messages from the recv buffer.
|
||||||
|
|
||||||
|
This method reads data from the buffer in a loop. It deserializes,
|
||||||
|
parses and verifies the P2P header, then passes the P2P payload to
|
||||||
|
the on_message callback for processing."""
|
||||||
|
try:
|
||||||
|
while True:
|
||||||
|
if len(self.recvbuf) < 4:
|
||||||
|
return
|
||||||
|
if self.recvbuf[:4] != MAGIC_BYTES[self.network]:
|
||||||
|
raise ValueError("got garbage %s" % repr(self.recvbuf))
|
||||||
|
if len(self.recvbuf) < 4 + 12 + 4 + 4:
|
||||||
|
return
|
||||||
|
command = self.recvbuf[4:4+12].split(b"\x00", 1)[0]
|
||||||
|
msglen = struct.unpack("<i", self.recvbuf[4+12:4+12+4])[0]
|
||||||
|
checksum = self.recvbuf[4+12+4:4+12+4+4]
|
||||||
|
if len(self.recvbuf) < 4 + 12 + 4 + 4 + msglen:
|
||||||
|
return
|
||||||
|
msg = self.recvbuf[4+12+4+4:4+12+4+4+msglen]
|
||||||
|
th = sha256(msg)
|
||||||
|
h = sha256(th)
|
||||||
|
if checksum != h[:4]:
|
||||||
|
raise ValueError("got bad checksum " + repr(self.recvbuf))
|
||||||
|
self.recvbuf = self.recvbuf[4+12+4+4+msglen:]
|
||||||
|
if command not in MESSAGEMAP:
|
||||||
|
raise ValueError("Received unknown command from %s:%d: '%s' %s" % (self.dstaddr, self.dstport, command, repr(msg)))
|
||||||
|
f = BytesIO(msg)
|
||||||
|
t = MESSAGEMAP[command]()
|
||||||
|
t.deserialize(f)
|
||||||
|
self._log_message("receive", t)
|
||||||
|
self.on_message(t)
|
||||||
|
except Exception as e:
|
||||||
|
logger.exception('Error reading message:', repr(e))
|
||||||
|
raise
|
||||||
|
|
||||||
|
def on_message(self, message):
|
||||||
|
"""Callback for processing a P2P payload. Must be overridden by derived class."""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
# Socket write methods
|
||||||
|
|
||||||
|
def writable(self):
|
||||||
|
"""asyncore method to determine whether the handle_write() callback should be called on the next loop."""
|
||||||
|
with mininode_lock:
|
||||||
|
pre_connection = self.state == "connecting"
|
||||||
|
length = len(self.sendbuf)
|
||||||
|
return (length > 0 or pre_connection)
|
||||||
|
|
||||||
|
def handle_write(self):
|
||||||
|
"""asyncore callback when data should be written to the socket."""
|
||||||
|
with mininode_lock:
|
||||||
|
# asyncore does not expose socket connection, only the first read/write
|
||||||
|
# event, thus we must check connection manually here to know when we
|
||||||
|
# actually connect
|
||||||
|
if self.state == "connecting":
|
||||||
|
self.handle_connect()
|
||||||
|
if not self.writable():
|
||||||
|
return
|
||||||
|
|
||||||
|
try:
|
||||||
|
sent = self.send(self.sendbuf)
|
||||||
|
except:
|
||||||
|
self.handle_close()
|
||||||
|
return
|
||||||
|
self.sendbuf = self.sendbuf[sent:]
|
||||||
|
|
||||||
|
def send_message(self, message, pushbuf=False):
|
||||||
|
"""Send a P2P message over the socket.
|
||||||
|
|
||||||
|
This method takes a P2P payload, builds the P2P header and adds
|
||||||
|
the message to the send buffer to be sent over the socket."""
|
||||||
|
if self.state != "connected" and not pushbuf:
|
||||||
|
raise IOError('Not connected, no pushbuf')
|
||||||
|
self._log_message("send", message)
|
||||||
|
command = message.command
|
||||||
|
data = message.serialize()
|
||||||
|
tmsg = MAGIC_BYTES[self.network]
|
||||||
|
tmsg += command
|
||||||
|
tmsg += b"\x00" * (12 - len(command))
|
||||||
|
tmsg += struct.pack("<I", len(data))
|
||||||
|
th = sha256(data)
|
||||||
|
h = sha256(th)
|
||||||
|
tmsg += h[:4]
|
||||||
|
tmsg += data
|
||||||
|
with mininode_lock:
|
||||||
|
if (len(self.sendbuf) == 0 and not pushbuf):
|
||||||
|
try:
|
||||||
|
sent = self.send(tmsg)
|
||||||
|
self.sendbuf = tmsg[sent:]
|
||||||
|
except BlockingIOError:
|
||||||
|
self.sendbuf = tmsg
|
||||||
|
else:
|
||||||
|
self.sendbuf += tmsg
|
||||||
|
|
||||||
|
# Class utility methods
|
||||||
|
|
||||||
|
def _log_message(self, direction, msg):
|
||||||
|
"""Logs a message being sent or received over the connection."""
|
||||||
|
if direction == "send":
|
||||||
|
log_message = "Send message to "
|
||||||
|
elif direction == "receive":
|
||||||
|
log_message = "Received message from "
|
||||||
|
log_message += "%s:%d: %s" % (self.dstaddr, self.dstport, repr(msg)[:500])
|
||||||
|
if len(log_message) > 500:
|
||||||
|
log_message += "... (msg truncated)"
|
||||||
|
logger.debug(log_message)
|
||||||
|
|
||||||
|
|
||||||
|
class NodeConnCB(NodeConn):
|
||||||
|
"""A high-level P2P interface class for communicating with a Bitcoin node.
|
||||||
|
|
||||||
|
This class provides high-level callbacks for processing P2P message
|
||||||
|
payloads, as well as convenience methods for interacting with the
|
||||||
|
node over P2P.
|
||||||
|
|
||||||
Individual testcases should subclass this and override the on_* methods
|
Individual testcases should subclass this and override the on_* methods
|
||||||
if they want to alter message handling behaviour."""
|
if they want to alter message handling behaviour.
|
||||||
|
|
||||||
|
TODO: rename this class P2PInterface"""
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
# Track whether we have a P2P connection open to the node
|
super().__init__()
|
||||||
self.connected = False
|
|
||||||
self.connection = None
|
|
||||||
|
|
||||||
# Track number of messages of each type received and the most recent
|
# Track number of messages of each type received and the most recent
|
||||||
# message of each type
|
# message of each type
|
||||||
|
@ -75,9 +266,25 @@ class NodeConnCB():
|
||||||
# A count of the number of ping messages we've sent to the node
|
# A count of the number of ping messages we've sent to the node
|
||||||
self.ping_counter = 1
|
self.ping_counter = 1
|
||||||
|
|
||||||
|
# The network services received from the peer
|
||||||
|
self.nServices = 0
|
||||||
|
|
||||||
|
def peer_connect(self, *args, services=NODE_NETWORK|NODE_WITNESS, send_version=True, **kwargs):
|
||||||
|
super().peer_connect(*args, **kwargs)
|
||||||
|
|
||||||
|
if send_version:
|
||||||
|
# Send a version msg
|
||||||
|
vt = msg_version()
|
||||||
|
vt.nServices = services
|
||||||
|
vt.addrTo.ip = self.dstaddr
|
||||||
|
vt.addrTo.port = self.dstport
|
||||||
|
vt.addrFrom.ip = "0.0.0.0"
|
||||||
|
vt.addrFrom.port = 0
|
||||||
|
self.send_message(vt, True)
|
||||||
|
|
||||||
# Message receiving methods
|
# Message receiving methods
|
||||||
|
|
||||||
def deliver(self, conn, message):
|
def on_message(self, message):
|
||||||
"""Receive message and dispatch message to appropriate callback.
|
"""Receive message and dispatch message to appropriate callback.
|
||||||
|
|
||||||
We keep a count of how many of each message type has been received
|
We keep a count of how many of each message type has been received
|
||||||
|
@ -87,66 +294,61 @@ class NodeConnCB():
|
||||||
command = message.command.decode('ascii')
|
command = message.command.decode('ascii')
|
||||||
self.message_count[command] += 1
|
self.message_count[command] += 1
|
||||||
self.last_message[command] = message
|
self.last_message[command] = message
|
||||||
getattr(self, 'on_' + command)(conn, message)
|
getattr(self, 'on_' + command)(message)
|
||||||
except:
|
except:
|
||||||
print("ERROR delivering %s (%s)" % (repr(message),
|
print("ERROR delivering %s (%s)" % (repr(message), sys.exc_info()[0]))
|
||||||
sys.exc_info()[0]))
|
|
||||||
raise
|
raise
|
||||||
|
|
||||||
# Callback methods. Can be overridden by subclasses in individual test
|
# Callback methods. Can be overridden by subclasses in individual test
|
||||||
# cases to provide custom message handling behaviour.
|
# cases to provide custom message handling behaviour.
|
||||||
|
|
||||||
def on_open(self, conn):
|
def on_open(self):
|
||||||
self.connected = True
|
pass
|
||||||
|
|
||||||
def on_close(self, conn):
|
def on_close(self):
|
||||||
self.connected = False
|
pass
|
||||||
self.connection = None
|
|
||||||
|
|
||||||
def on_addr(self, conn, message): pass
|
def on_addr(self, message): pass
|
||||||
def on_block(self, conn, message): pass
|
def on_block(self, message): pass
|
||||||
def on_blocktxn(self, conn, message): pass
|
def on_blocktxn(self, message): pass
|
||||||
def on_cmpctblock(self, conn, message): pass
|
def on_cmpctblock(self, message): pass
|
||||||
def on_feefilter(self, conn, message): pass
|
def on_feefilter(self, message): pass
|
||||||
def on_getaddr(self, conn, message): pass
|
def on_getaddr(self, message): pass
|
||||||
def on_getblocks(self, conn, message): pass
|
def on_getblocks(self, message): pass
|
||||||
def on_getblocktxn(self, conn, message): pass
|
def on_getblocktxn(self, message): pass
|
||||||
def on_getdata(self, conn, message): pass
|
def on_getdata(self, message): pass
|
||||||
def on_getheaders(self, conn, message): pass
|
def on_getheaders(self, message): pass
|
||||||
def on_headers(self, conn, message): pass
|
def on_headers(self, message): pass
|
||||||
def on_mempool(self, conn): pass
|
def on_mempool(self, message): pass
|
||||||
def on_pong(self, conn, message): pass
|
def on_pong(self, message): pass
|
||||||
def on_reject(self, conn, message): pass
|
def on_reject(self, message): pass
|
||||||
def on_sendcmpct(self, conn, message): pass
|
def on_sendcmpct(self, message): pass
|
||||||
def on_sendheaders(self, conn, message): pass
|
def on_sendheaders(self, message): pass
|
||||||
def on_tx(self, conn, message): pass
|
def on_tx(self, message): pass
|
||||||
|
|
||||||
def on_inv(self, conn, message):
|
def on_inv(self, message):
|
||||||
want = msg_getdata()
|
want = msg_getdata()
|
||||||
for i in message.inv:
|
for i in message.inv:
|
||||||
if i.type != 0:
|
if i.type != 0:
|
||||||
want.inv.append(i)
|
want.inv.append(i)
|
||||||
if len(want.inv):
|
if len(want.inv):
|
||||||
conn.send_message(want)
|
self.send_message(want)
|
||||||
|
|
||||||
def on_ping(self, conn, message):
|
def on_ping(self, message):
|
||||||
conn.send_message(msg_pong(message.nonce))
|
self.send_message(msg_pong(message.nonce))
|
||||||
|
|
||||||
def on_verack(self, conn, message):
|
def on_verack(self, message):
|
||||||
self.verack_received = True
|
self.verack_received = True
|
||||||
|
|
||||||
def on_version(self, conn, message):
|
def on_version(self, message):
|
||||||
assert message.nVersion >= MIN_VERSION_SUPPORTED, "Version {} received. Test framework only supports versions greater than {}".format(message.nVersion, MIN_VERSION_SUPPORTED)
|
assert message.nVersion >= MIN_VERSION_SUPPORTED, "Version {} received. Test framework only supports versions greater than {}".format(message.nVersion, MIN_VERSION_SUPPORTED)
|
||||||
conn.send_message(msg_verack())
|
self.send_message(msg_verack())
|
||||||
conn.nServices = message.nServices
|
self.nServices = message.nServices
|
||||||
|
|
||||||
# Connection helper methods
|
# Connection helper methods
|
||||||
|
|
||||||
def add_connection(self, conn):
|
|
||||||
self.connection = conn
|
|
||||||
|
|
||||||
def wait_for_disconnect(self, timeout=60):
|
def wait_for_disconnect(self, timeout=60):
|
||||||
test_function = lambda: not self.connected
|
test_function = lambda: self.state != "connected"
|
||||||
wait_until(test_function, timeout=timeout, lock=mininode_lock)
|
wait_until(test_function, timeout=timeout, lock=mininode_lock)
|
||||||
|
|
||||||
# Message receiving helper methods
|
# Message receiving helper methods
|
||||||
|
@ -178,12 +380,6 @@ class NodeConnCB():
|
||||||
|
|
||||||
# Message sending helper functions
|
# Message sending helper functions
|
||||||
|
|
||||||
def send_message(self, message):
|
|
||||||
if self.connection:
|
|
||||||
self.connection.send_message(message)
|
|
||||||
else:
|
|
||||||
logger.error("Cannot send message. No connection to node!")
|
|
||||||
|
|
||||||
def send_and_ping(self, message):
|
def send_and_ping(self, message):
|
||||||
self.send_message(message)
|
self.send_message(message)
|
||||||
self.sync_with_ping()
|
self.sync_with_ping()
|
||||||
|
@ -195,178 +391,6 @@ class NodeConnCB():
|
||||||
wait_until(test_function, timeout=timeout, lock=mininode_lock)
|
wait_until(test_function, timeout=timeout, lock=mininode_lock)
|
||||||
self.ping_counter += 1
|
self.ping_counter += 1
|
||||||
|
|
||||||
class NodeConn(asyncore.dispatcher):
|
|
||||||
"""The actual NodeConn class
|
|
||||||
|
|
||||||
This class provides an interface for a p2p connection to a specified node."""
|
|
||||||
|
|
||||||
def __init__(self, dstaddr, dstport, callback, net="regtest", services=NODE_NETWORK|NODE_WITNESS, send_version=True):
|
|
||||||
asyncore.dispatcher.__init__(self, map=mininode_socket_map)
|
|
||||||
self.dstaddr = dstaddr
|
|
||||||
self.dstport = dstport
|
|
||||||
self.create_socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
||||||
self.socket.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
|
|
||||||
self.sendbuf = b""
|
|
||||||
self.recvbuf = b""
|
|
||||||
self.last_sent = 0
|
|
||||||
self.state = "connecting"
|
|
||||||
self.network = net
|
|
||||||
self.cb = callback
|
|
||||||
self.disconnect = False
|
|
||||||
self.nServices = 0
|
|
||||||
|
|
||||||
if send_version:
|
|
||||||
# stuff version msg into sendbuf
|
|
||||||
vt = msg_version()
|
|
||||||
vt.nServices = services
|
|
||||||
vt.addrTo.ip = self.dstaddr
|
|
||||||
vt.addrTo.port = self.dstport
|
|
||||||
vt.addrFrom.ip = "0.0.0.0"
|
|
||||||
vt.addrFrom.port = 0
|
|
||||||
self.send_message(vt, True)
|
|
||||||
|
|
||||||
logger.info('Connecting to Bitcoin Node: %s:%d' % (self.dstaddr, self.dstport))
|
|
||||||
|
|
||||||
try:
|
|
||||||
self.connect((dstaddr, dstport))
|
|
||||||
except:
|
|
||||||
self.handle_close()
|
|
||||||
|
|
||||||
# Connection and disconnection methods
|
|
||||||
|
|
||||||
def handle_connect(self):
|
|
||||||
if self.state != "connected":
|
|
||||||
logger.debug("Connected & Listening: %s:%d" % (self.dstaddr, self.dstport))
|
|
||||||
self.state = "connected"
|
|
||||||
self.cb.on_open(self)
|
|
||||||
|
|
||||||
def handle_close(self):
|
|
||||||
logger.debug("Closing connection to: %s:%d" % (self.dstaddr, self.dstport))
|
|
||||||
self.state = "closed"
|
|
||||||
self.recvbuf = b""
|
|
||||||
self.sendbuf = b""
|
|
||||||
try:
|
|
||||||
self.close()
|
|
||||||
except:
|
|
||||||
pass
|
|
||||||
self.cb.on_close(self)
|
|
||||||
|
|
||||||
def disconnect_node(self):
|
|
||||||
""" Disconnect the p2p connection.
|
|
||||||
|
|
||||||
Called by the test logic thread. Causes the p2p connection
|
|
||||||
to be disconnected on the next iteration of the asyncore loop."""
|
|
||||||
self.disconnect = True
|
|
||||||
|
|
||||||
# Socket read methods
|
|
||||||
|
|
||||||
def readable(self):
|
|
||||||
return True
|
|
||||||
|
|
||||||
def handle_read(self):
|
|
||||||
t = self.recv(8192)
|
|
||||||
if len(t) > 0:
|
|
||||||
self.recvbuf += t
|
|
||||||
self.got_data()
|
|
||||||
|
|
||||||
def got_data(self):
|
|
||||||
try:
|
|
||||||
while True:
|
|
||||||
if len(self.recvbuf) < 4:
|
|
||||||
return
|
|
||||||
if self.recvbuf[:4] != MAGIC_BYTES[self.network]:
|
|
||||||
raise ValueError("got garbage %s" % repr(self.recvbuf))
|
|
||||||
if len(self.recvbuf) < 4 + 12 + 4 + 4:
|
|
||||||
return
|
|
||||||
command = self.recvbuf[4:4+12].split(b"\x00", 1)[0]
|
|
||||||
msglen = struct.unpack("<i", self.recvbuf[4+12:4+12+4])[0]
|
|
||||||
checksum = self.recvbuf[4+12+4:4+12+4+4]
|
|
||||||
if len(self.recvbuf) < 4 + 12 + 4 + 4 + msglen:
|
|
||||||
return
|
|
||||||
msg = self.recvbuf[4+12+4+4:4+12+4+4+msglen]
|
|
||||||
th = sha256(msg)
|
|
||||||
h = sha256(th)
|
|
||||||
if checksum != h[:4]:
|
|
||||||
raise ValueError("got bad checksum " + repr(self.recvbuf))
|
|
||||||
self.recvbuf = self.recvbuf[4+12+4+4+msglen:]
|
|
||||||
if command not in MESSAGEMAP:
|
|
||||||
raise ValueError("Received unknown command from %s:%d: '%s' %s" % (self.dstaddr, self.dstport, command, repr(msg)))
|
|
||||||
f = BytesIO(msg)
|
|
||||||
t = MESSAGEMAP[command]()
|
|
||||||
t.deserialize(f)
|
|
||||||
self.got_message(t)
|
|
||||||
except Exception as e:
|
|
||||||
logger.exception('Error reading message:', repr(e))
|
|
||||||
raise
|
|
||||||
|
|
||||||
def got_message(self, message):
|
|
||||||
if self.last_sent + 30 * 60 < time.time():
|
|
||||||
self.send_message(MESSAGEMAP[b'ping']())
|
|
||||||
self._log_message("receive", message)
|
|
||||||
self.cb.deliver(self, message)
|
|
||||||
|
|
||||||
# Socket write methods
|
|
||||||
|
|
||||||
def writable(self):
|
|
||||||
with mininode_lock:
|
|
||||||
pre_connection = self.state == "connecting"
|
|
||||||
length = len(self.sendbuf)
|
|
||||||
return (length > 0 or pre_connection)
|
|
||||||
|
|
||||||
def handle_write(self):
|
|
||||||
with mininode_lock:
|
|
||||||
# asyncore does not expose socket connection, only the first read/write
|
|
||||||
# event, thus we must check connection manually here to know when we
|
|
||||||
# actually connect
|
|
||||||
if self.state == "connecting":
|
|
||||||
self.handle_connect()
|
|
||||||
if not self.writable():
|
|
||||||
return
|
|
||||||
|
|
||||||
try:
|
|
||||||
sent = self.send(self.sendbuf)
|
|
||||||
except:
|
|
||||||
self.handle_close()
|
|
||||||
return
|
|
||||||
self.sendbuf = self.sendbuf[sent:]
|
|
||||||
|
|
||||||
def send_message(self, message, pushbuf=False):
|
|
||||||
if self.state != "connected" and not pushbuf:
|
|
||||||
raise IOError('Not connected, no pushbuf')
|
|
||||||
self._log_message("send", message)
|
|
||||||
command = message.command
|
|
||||||
data = message.serialize()
|
|
||||||
tmsg = MAGIC_BYTES[self.network]
|
|
||||||
tmsg += command
|
|
||||||
tmsg += b"\x00" * (12 - len(command))
|
|
||||||
tmsg += struct.pack("<I", len(data))
|
|
||||||
th = sha256(data)
|
|
||||||
h = sha256(th)
|
|
||||||
tmsg += h[:4]
|
|
||||||
tmsg += data
|
|
||||||
with mininode_lock:
|
|
||||||
if (len(self.sendbuf) == 0 and not pushbuf):
|
|
||||||
try:
|
|
||||||
sent = self.send(tmsg)
|
|
||||||
self.sendbuf = tmsg[sent:]
|
|
||||||
except BlockingIOError:
|
|
||||||
self.sendbuf = tmsg
|
|
||||||
else:
|
|
||||||
self.sendbuf += tmsg
|
|
||||||
self.last_sent = time.time()
|
|
||||||
|
|
||||||
# Class utility methods
|
|
||||||
|
|
||||||
def _log_message(self, direction, msg):
|
|
||||||
if direction == "send":
|
|
||||||
log_message = "Send message to "
|
|
||||||
elif direction == "receive":
|
|
||||||
log_message = "Received message from "
|
|
||||||
log_message += "%s:%d: %s" % (self.dstaddr, self.dstport, repr(msg)[:500])
|
|
||||||
if len(log_message) > 500:
|
|
||||||
log_message += "... (msg truncated)"
|
|
||||||
logger.debug(log_message)
|
|
||||||
|
|
||||||
|
|
||||||
# Keep our own socket map for asyncore, so that we can track disconnects
|
# Keep our own socket map for asyncore, so that we can track disconnects
|
||||||
# ourselves (to workaround an issue with closing an asyncore socket when
|
# ourselves (to workaround an issue with closing an asyncore socket when
|
||||||
|
|
|
@ -14,7 +14,6 @@ import subprocess
|
||||||
import time
|
import time
|
||||||
|
|
||||||
from .authproxy import JSONRPCException
|
from .authproxy import JSONRPCException
|
||||||
from .mininode import NodeConn
|
|
||||||
from .util import (
|
from .util import (
|
||||||
assert_equal,
|
assert_equal,
|
||||||
get_rpc_proxy,
|
get_rpc_proxy,
|
||||||
|
@ -158,7 +157,7 @@ class TestNode():
|
||||||
self.encryptwallet(passphrase)
|
self.encryptwallet(passphrase)
|
||||||
self.wait_until_stopped()
|
self.wait_until_stopped()
|
||||||
|
|
||||||
def add_p2p_connection(self, p2p_conn, **kwargs):
|
def add_p2p_connection(self, p2p_conn, *args, **kwargs):
|
||||||
"""Add a p2p connection to the node.
|
"""Add a p2p connection to the node.
|
||||||
|
|
||||||
This method adds the p2p connection to the self.p2ps list and also
|
This method adds the p2p connection to the self.p2ps list and also
|
||||||
|
@ -167,9 +166,9 @@ class TestNode():
|
||||||
kwargs['dstport'] = p2p_port(self.index)
|
kwargs['dstport'] = p2p_port(self.index)
|
||||||
if 'dstaddr' not in kwargs:
|
if 'dstaddr' not in kwargs:
|
||||||
kwargs['dstaddr'] = '127.0.0.1'
|
kwargs['dstaddr'] = '127.0.0.1'
|
||||||
|
|
||||||
|
p2p_conn.peer_connect(*args, **kwargs)
|
||||||
self.p2ps.append(p2p_conn)
|
self.p2ps.append(p2p_conn)
|
||||||
kwargs.update({'callback': p2p_conn})
|
|
||||||
p2p_conn.add_connection(NodeConn(**kwargs))
|
|
||||||
|
|
||||||
return p2p_conn
|
return p2p_conn
|
||||||
|
|
||||||
|
@ -185,10 +184,8 @@ class TestNode():
|
||||||
def disconnect_p2ps(self):
|
def disconnect_p2ps(self):
|
||||||
"""Close all p2p connections to the node."""
|
"""Close all p2p connections to the node."""
|
||||||
for p in self.p2ps:
|
for p in self.p2ps:
|
||||||
# Connection could have already been closed by other end.
|
p.peer_disconnect()
|
||||||
if p.connection is not None:
|
del self.p2ps[:]
|
||||||
p.connection.disconnect_node()
|
|
||||||
self.p2ps = []
|
|
||||||
|
|
||||||
|
|
||||||
class TestNodeCLI():
|
class TestNodeCLI():
|
||||||
|
|
Loading…
Reference in a new issue