2016-05-06 11:23:48 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# Copyright (c) 2015-2016 The Bitcoin Core developers
|
2015-05-05 13:19:19 +02:00
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2017-10-18 18:49:42 +02:00
|
|
|
"""Test the ZMQ notification interface."""
|
2017-04-23 17:53:43 +02:00
|
|
|
import struct
|
2015-05-05 13:19:19 +02:00
|
|
|
|
2018-10-08 06:39:53 +02:00
|
|
|
from test_framework.address import ADDRESS_BCRT1_UNSPENDABLE
|
2018-09-13 12:33:15 +02:00
|
|
|
from test_framework.test_framework import BitcoinTestFramework
|
2021-06-24 12:47:04 +02:00
|
|
|
from test_framework.messages import (
|
|
|
|
dashhash,
|
|
|
|
hash256,
|
|
|
|
)
|
2019-08-14 08:19:39 +02:00
|
|
|
from test_framework.util import assert_equal
|
2019-08-28 19:30:55 +02:00
|
|
|
from time import sleep
|
2015-05-05 13:19:19 +02:00
|
|
|
|
2019-08-14 08:19:39 +02:00
|
|
|
def hash256_reversed(byte_str):
|
|
|
|
return hash256(byte_str)[::-1]
|
2019-09-24 15:09:07 +02:00
|
|
|
|
2019-08-14 08:19:39 +02:00
|
|
|
def dashhash_reversed(byte_str):
|
|
|
|
return dashhash(byte_str)[::-1]
|
2018-09-13 12:33:15 +02:00
|
|
|
|
2017-10-18 18:49:42 +02:00
|
|
|
class ZMQSubscriber:
|
|
|
|
def __init__(self, socket, topic):
|
|
|
|
self.sequence = 0
|
|
|
|
self.socket = socket
|
|
|
|
self.topic = topic
|
|
|
|
|
|
|
|
import zmq
|
|
|
|
self.socket.setsockopt(zmq.SUBSCRIBE, self.topic)
|
|
|
|
|
|
|
|
def receive(self):
|
|
|
|
topic, body, seq = self.socket.recv_multipart()
|
|
|
|
# Topic should match the subscriber topic.
|
|
|
|
assert_equal(topic, self.topic)
|
|
|
|
# Sequence should be incremental.
|
|
|
|
assert_equal(struct.unpack('<I', seq)[-1], self.sequence)
|
|
|
|
self.sequence += 1
|
|
|
|
return body
|
|
|
|
|
|
|
|
|
2015-05-05 13:19:19 +02:00
|
|
|
class ZMQTest (BitcoinTestFramework):
|
2017-09-01 18:47:13 +02:00
|
|
|
def set_test_params(self):
|
2017-06-18 14:13:50 +02:00
|
|
|
self.num_nodes = 2
|
2015-05-05 13:19:19 +02:00
|
|
|
|
2018-09-13 12:33:15 +02:00
|
|
|
def skip_test_if_missing_module(self):
|
|
|
|
self.skip_if_no_py3_zmq()
|
|
|
|
self.skip_if_no_bitcoind_zmq()
|
2024-02-16 20:05:00 +01:00
|
|
|
# TODO: drop this check after migration to MiniWallet, see bitcoin/bitcoin#24653
|
|
|
|
self.skip_if_no_bdb()
|
2018-09-10 22:58:15 +02:00
|
|
|
|
2019-08-26 15:09:30 +02:00
|
|
|
def run_test(self):
|
2018-07-13 11:58:14 +02:00
|
|
|
import zmq
|
2019-08-26 15:09:30 +02:00
|
|
|
self.ctx = zmq.Context()
|
|
|
|
try:
|
|
|
|
self.test_basic()
|
|
|
|
self.test_reorg()
|
|
|
|
self.test_multiple_interfaces()
|
|
|
|
finally:
|
|
|
|
# Destroy the ZMQ context.
|
|
|
|
self.log.debug("Destroying ZMQ context")
|
|
|
|
self.ctx.destroy(linger=None)
|
2017-04-23 17:53:43 +02:00
|
|
|
|
2019-08-26 15:09:30 +02:00
|
|
|
def test_basic(self):
|
|
|
|
import zmq
|
2020-01-08 15:19:59 +01:00
|
|
|
|
|
|
|
# Invalid zmq arguments don't take down the node, see #17185.
|
|
|
|
self.restart_node(0, ["-zmqpubrawtx=foo", "-zmqpubhashtx=bar"])
|
|
|
|
self.zmq_context = zmq.Context()
|
|
|
|
|
2019-08-26 15:09:30 +02:00
|
|
|
address = 'tcp://127.0.0.1:28332'
|
2020-08-31 20:14:05 +02:00
|
|
|
sockets = []
|
|
|
|
subs = []
|
|
|
|
services = [b"hashblock", b"hashtx", b"rawblock", b"rawtx"]
|
|
|
|
for service in services:
|
|
|
|
sockets.append(self.ctx.socket(zmq.SUB))
|
|
|
|
sockets[-1].set(zmq.RCVTIMEO, 60000)
|
|
|
|
subs.append(ZMQSubscriber(sockets[-1], service))
|
2017-10-18 18:49:42 +02:00
|
|
|
|
|
|
|
# Subscribe to all available topics.
|
2020-08-31 20:14:05 +02:00
|
|
|
hashblock = subs[0]
|
|
|
|
hashtx = subs[1]
|
|
|
|
rawblock = subs[2]
|
|
|
|
rawtx = subs[3]
|
2019-08-26 15:09:30 +02:00
|
|
|
|
|
|
|
self.restart_node(0, ["-zmqpub%s=%s" % (sub.topic.decode(), address) for sub in [hashblock, hashtx, rawblock, rawtx]])
|
|
|
|
self.connect_nodes(0, 1)
|
2020-08-31 20:14:05 +02:00
|
|
|
for socket in sockets:
|
|
|
|
socket.connect(address)
|
|
|
|
|
2019-08-28 19:30:55 +02:00
|
|
|
# Relax so that the subscriber is ready before publishing zmq messages
|
|
|
|
sleep(0.2)
|
2018-11-02 16:41:29 +01:00
|
|
|
self.import_deterministic_coinbase_privkeys()
|
2015-05-05 13:19:19 +02:00
|
|
|
|
|
|
|
|
2017-10-18 18:49:42 +02:00
|
|
|
num_blocks = 5
|
|
|
|
self.log.info("Generate %(n)d blocks (and %(n)d coinbase txes)" % {"n": num_blocks})
|
2018-10-08 06:39:53 +02:00
|
|
|
genhashes = self.nodes[0].generatetoaddress(num_blocks, ADDRESS_BCRT1_UNSPENDABLE)
|
2019-08-26 15:09:30 +02:00
|
|
|
|
2015-05-05 13:19:19 +02:00
|
|
|
self.sync_all()
|
|
|
|
|
2017-10-18 18:49:42 +02:00
|
|
|
for x in range(num_blocks):
|
|
|
|
# Should receive the coinbase txid.
|
2019-08-26 15:09:30 +02:00
|
|
|
txid = hashtx.receive()
|
2017-10-18 18:49:42 +02:00
|
|
|
|
|
|
|
# Should receive the coinbase raw transaction.
|
2019-08-26 15:09:30 +02:00
|
|
|
hex = rawtx.receive()
|
2019-08-14 08:19:39 +02:00
|
|
|
assert_equal(hash256_reversed(hex), txid)
|
2015-05-05 13:19:19 +02:00
|
|
|
|
2020-08-31 20:14:05 +02:00
|
|
|
# Should receive the generated raw block.
|
|
|
|
block = rawblock.receive()
|
|
|
|
assert_equal(genhashes[x], dashhash_reversed(block[:80]).hex())
|
|
|
|
|
2017-10-18 18:49:42 +02:00
|
|
|
# Should receive the generated block hash.
|
2019-08-26 15:09:30 +02:00
|
|
|
hash = hashblock.receive().hex()
|
2017-10-18 18:49:42 +02:00
|
|
|
assert_equal(genhashes[x], hash)
|
|
|
|
# The block should only have the coinbase txid.
|
2021-08-27 21:03:02 +02:00
|
|
|
assert_equal([txid.hex()], self.nodes[1].getblock(hash)["tx"])
|
2017-10-18 18:49:42 +02:00
|
|
|
|
2015-05-05 13:19:19 +02:00
|
|
|
|
2018-10-08 06:39:53 +02:00
|
|
|
if self.is_wallet_compiled():
|
|
|
|
self.log.info("Wait for tx from second node")
|
|
|
|
payment_txid = self.nodes[1].sendtoaddress(self.nodes[0].getnewaddress(), 1.0)
|
|
|
|
self.sync_all()
|
|
|
|
|
|
|
|
# Should receive the broadcasted txid.
|
2019-08-26 15:09:30 +02:00
|
|
|
txid = hashtx.receive()
|
2018-10-08 06:39:53 +02:00
|
|
|
assert_equal(payment_txid, txid.hex())
|
2015-05-05 13:19:19 +02:00
|
|
|
|
2018-10-08 06:39:53 +02:00
|
|
|
# Should receive the broadcasted raw transaction.
|
2019-08-26 15:09:30 +02:00
|
|
|
hex = rawtx.receive()
|
2019-08-14 08:19:39 +02:00
|
|
|
assert_equal(payment_txid, hash256_reversed(hex).hex())
|
2017-10-18 18:49:42 +02:00
|
|
|
|
2020-08-31 20:14:05 +02:00
|
|
|
# Mining the block with this tx should result in second notification
|
|
|
|
# after coinbase tx notification
|
|
|
|
self.nodes[0].generatetoaddress(1, ADDRESS_BCRT1_UNSPENDABLE)
|
|
|
|
hashtx.receive()
|
|
|
|
txid = hashtx.receive()
|
|
|
|
assert_equal(payment_txid, txid.hex())
|
|
|
|
|
2015-05-05 13:19:19 +02:00
|
|
|
|
2018-10-08 04:49:22 +02:00
|
|
|
self.log.info("Test the getzmqnotifications RPC")
|
|
|
|
assert_equal(self.nodes[0].getzmqnotifications(), [
|
2019-08-26 15:09:30 +02:00
|
|
|
{"type": "pubhashblock", "address": address, "hwm": 1000},
|
|
|
|
{"type": "pubhashtx", "address": address, "hwm": 1000},
|
|
|
|
{"type": "pubrawblock", "address": address, "hwm": 1000},
|
|
|
|
{"type": "pubrawtx", "address": address, "hwm": 1000},
|
2018-10-08 04:49:22 +02:00
|
|
|
])
|
|
|
|
|
|
|
|
assert_equal(self.nodes[1].getzmqnotifications(), [])
|
|
|
|
|
2019-08-26 15:09:30 +02:00
|
|
|
|
|
|
|
def test_reorg(self):
|
2020-08-31 20:14:05 +02:00
|
|
|
if not self.is_wallet_compiled():
|
|
|
|
self.log.info("Skipping reorg test because wallet is disabled")
|
|
|
|
return
|
|
|
|
|
2019-08-26 15:09:30 +02:00
|
|
|
import zmq
|
|
|
|
address = 'tcp://127.0.0.1:28333'
|
2020-08-31 20:14:05 +02:00
|
|
|
|
|
|
|
services = [b"hashblock", b"hashtx"]
|
|
|
|
sockets = []
|
|
|
|
subs = []
|
|
|
|
for service in services:
|
|
|
|
sockets.append(self.ctx.socket(zmq.SUB))
|
|
|
|
# 2 second timeout to check end of notifications
|
|
|
|
sockets[-1].set(zmq.RCVTIMEO, 2000)
|
|
|
|
subs.append(ZMQSubscriber(sockets[-1], service))
|
|
|
|
|
|
|
|
# Subscribe to all available topics.
|
|
|
|
hashblock = subs[0]
|
|
|
|
hashtx = subs[1]
|
2019-08-26 15:09:30 +02:00
|
|
|
|
|
|
|
# Should only notify the tip if a reorg occurs
|
2020-08-31 20:14:05 +02:00
|
|
|
self.restart_node(0, ["-zmqpub%s=%s" % (sub.topic.decode(), address) for sub in [hashblock, hashtx]])
|
|
|
|
for socket in sockets:
|
|
|
|
socket.connect(address)
|
2019-08-26 15:09:30 +02:00
|
|
|
# Relax so that the subscriber is ready before publishing zmq messages
|
|
|
|
sleep(0.2)
|
|
|
|
|
2020-08-31 20:14:05 +02:00
|
|
|
# Generate 1 block in nodes[0] with 1 mempool tx and receive all notifications
|
|
|
|
payment_txid = self.nodes[0].sendtoaddress(self.nodes[0].getnewaddress(), 1.0)
|
|
|
|
disconnect_block = self.nodes[0].generatetoaddress(1, ADDRESS_BCRT1_UNSPENDABLE)[0]
|
|
|
|
disconnect_cb = self.nodes[0].getblock(disconnect_block)["tx"][0]
|
2019-08-26 15:09:30 +02:00
|
|
|
assert_equal(self.nodes[0].getbestblockhash(), hashblock.receive().hex())
|
2020-08-31 20:14:05 +02:00
|
|
|
assert_equal(hashtx.receive().hex(), payment_txid)
|
|
|
|
assert_equal(hashtx.receive().hex(), disconnect_cb)
|
2019-08-26 15:09:30 +02:00
|
|
|
|
|
|
|
# Generate 2 blocks in nodes[1]
|
2020-08-31 20:14:05 +02:00
|
|
|
connect_blocks = self.nodes[1].generatetoaddress(2, ADDRESS_BCRT1_UNSPENDABLE)
|
2019-08-26 15:09:30 +02:00
|
|
|
|
|
|
|
# nodes[0] will reorg chain after connecting back nodes[1]
|
|
|
|
self.connect_nodes(0, 1)
|
2020-08-31 20:14:05 +02:00
|
|
|
self.sync_blocks() # tx in mempool valid but not advertised
|
2019-08-26 15:09:30 +02:00
|
|
|
|
|
|
|
# Should receive nodes[1] tip
|
|
|
|
assert_equal(self.nodes[1].getbestblockhash(), hashblock.receive().hex())
|
|
|
|
|
2020-08-31 20:14:05 +02:00
|
|
|
# During reorg:
|
|
|
|
# Get old payment transaction notification from disconnect and disconnected cb
|
|
|
|
assert_equal(hashtx.receive().hex(), payment_txid)
|
|
|
|
assert_equal(hashtx.receive().hex(), disconnect_cb)
|
|
|
|
# And the payment transaction again due to mempool entry
|
|
|
|
assert_equal(hashtx.receive().hex(), payment_txid)
|
|
|
|
assert_equal(hashtx.receive().hex(), payment_txid)
|
|
|
|
# And the new connected coinbases
|
|
|
|
for i in [0, 1]:
|
|
|
|
assert_equal(hashtx.receive().hex(), self.nodes[1].getblock(connect_blocks[i])["tx"][0])
|
|
|
|
|
|
|
|
# If we do a simple invalidate we announce the disconnected coinbase
|
|
|
|
self.nodes[0].invalidateblock(connect_blocks[1])
|
|
|
|
assert_equal(hashtx.receive().hex(), self.nodes[1].getblock(connect_blocks[1])["tx"][0])
|
|
|
|
# And the current tip
|
|
|
|
assert_equal(hashtx.receive().hex(), self.nodes[1].getblock(connect_blocks[0])["tx"][0])
|
|
|
|
|
2020-10-01 17:41:22 +02:00
|
|
|
def test_multiple_interfaces(self):
|
|
|
|
import zmq
|
|
|
|
# Set up two subscribers with different addresses
|
|
|
|
subscribers = []
|
|
|
|
for i in range(2):
|
|
|
|
address = 'tcp://127.0.0.1:%d' % (28334 + i)
|
2019-08-26 15:09:30 +02:00
|
|
|
socket = self.ctx.socket(zmq.SUB)
|
2020-10-01 17:41:22 +02:00
|
|
|
socket.set(zmq.RCVTIMEO, 60000)
|
|
|
|
hashblock = ZMQSubscriber(socket, b"hashblock")
|
|
|
|
socket.connect(address)
|
|
|
|
subscribers.append({'address': address, 'hashblock': hashblock})
|
|
|
|
|
|
|
|
self.restart_node(0, ['-zmqpub%s=%s' % (subscriber['hashblock'].topic.decode(), subscriber['address']) for subscriber in subscribers])
|
|
|
|
|
|
|
|
# Relax so that the subscriber is ready before publishing zmq messages
|
|
|
|
sleep(0.2)
|
|
|
|
|
|
|
|
# Generate 1 block in nodes[0] and receive all notifications
|
|
|
|
self.nodes[0].generatetoaddress(1, ADDRESS_BCRT1_UNSPENDABLE)
|
|
|
|
|
|
|
|
# Should receive the same block hash on both subscribers
|
|
|
|
assert_equal(self.nodes[0].getbestblockhash(), subscribers[0]['hashblock'].receive().hex())
|
|
|
|
assert_equal(self.nodes[0].getbestblockhash(), subscribers[1]['hashblock'].receive().hex())
|
|
|
|
|
2019-08-26 15:09:30 +02:00
|
|
|
|
2015-05-05 13:19:19 +02:00
|
|
|
if __name__ == '__main__':
|
2017-06-18 14:13:50 +02:00
|
|
|
ZMQTest().main()
|