forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge bitcoin#23079: use MiniWallet for p2p_filter.py
Showing
2 changed files
with
48 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
|
||
from test_framework.messages import ( | ||
CInv, | ||
COIN, | ||
MAX_BLOOM_FILTER_SIZE, | ||
MAX_BLOOM_HASH_FUNCS, | ||
MSG_BLOCK, | ||
|
@@ -28,11 +29,15 @@ | |
) | ||
from test_framework.script import MAX_SCRIPT_ELEMENT_SIZE | ||
from test_framework.test_framework import BitcoinTestFramework | ||
from test_framework.wallet import ( | ||
MiniWallet, | ||
random_p2pkh, | ||
) | ||
|
||
|
||
class P2PBloomFilter(P2PInterface): | ||
# This is a P2SH watch-only wallet | ||
watch_script_pubkey = 'a914ffffffffffffffffffffffffffffffffffffffff87' | ||
watch_script_pubkey = bytes.fromhex('a914ffffffffffffffffffffffffffffffffffffffff87') | ||
# The initial filter (n=10, fp=0.000001) with just the above scriptPubKey added | ||
watch_filter_init = msg_filterload( | ||
data= | ||
|
@@ -93,8 +98,9 @@ def set_test_params(self): | |
'[email protected]', # immediate tx relay | ||
]] | ||
|
||
def skip_test_if_missing_module(self): | ||
self.skip_if_no_wallet() | ||
def generatetoscriptpubkey(self, scriptpubkey): | ||
"""Helper to generate a single block to the given scriptPubKey.""" | ||
return self.generatetodescriptor(self.nodes[0], 1, f'raw({scriptpubkey.hex()})')[0] | ||
|
||
def test_size_limits(self, filter_peer): | ||
self.log.info('Check that too large filter is rejected') | ||
|
@@ -130,8 +136,7 @@ def test_msg_mempool(self): | |
filter_peer = P2PBloomFilter() | ||
|
||
self.log.debug("Create a tx relevant to the peer before connecting") | ||
filter_address = self.nodes[0].decodescript(filter_peer.watch_script_pubkey)['address'] | ||
txid = self.nodes[0].sendtoaddress(filter_address, 90) | ||
txid, _ = self.wallet.send_to(from_node=self.nodes[0], scriptPubKey=filter_peer.watch_script_pubkey, amount=9 * COIN) | ||
|
||
self.log.debug("Send a mempool msg after connecting and check that the tx is received") | ||
self.nodes[0].add_p2p_connection(filter_peer) | ||
|
@@ -142,8 +147,7 @@ def test_msg_mempool(self): | |
def test_frelay_false(self, filter_peer): | ||
self.log.info("Check that a node with fRelay set to false does not receive invs until the filter is set") | ||
filter_peer.tx_received = False | ||
filter_address = self.nodes[0].decodescript(filter_peer.watch_script_pubkey)['address'] | ||
self.nodes[0].sendtoaddress(filter_address, 90) | ||
self.wallet.send_to(from_node=self.nodes[0], scriptPubKey=filter_peer.watch_script_pubkey, amount=9 * COIN) | ||
# Sync to make sure the reason filter_peer doesn't receive the tx is not p2p delays | ||
filter_peer.sync_with_ping() | ||
assert not filter_peer.tx_received | ||
|
@@ -156,45 +160,44 @@ def test_filter(self, filter_peer): | |
filter_peer.send_and_ping(filter_peer.watch_filter_init) | ||
# If fRelay is not already True, sending filterload sets it to True | ||
assert self.nodes[0].getpeerinfo()[0]['relaytxes'] | ||
filter_address = self.nodes[0].decodescript(filter_peer.watch_script_pubkey)['address'] | ||
|
||
self.log.info('Check that we receive merkleblock and tx if the filter matches a tx in a block') | ||
block_hash = self.generatetoaddress(self.nodes[0], 1, filter_address)[0] | ||
block_hash = self.generatetoscriptpubkey(filter_peer.watch_script_pubkey) | ||
txid = self.nodes[0].getblock(block_hash)['tx'][0] | ||
filter_peer.wait_for_merkleblock(block_hash) | ||
filter_peer.wait_for_tx(txid) | ||
|
||
self.log.info('Check that we only receive a merkleblock if the filter does not match a tx in a block') | ||
filter_peer.tx_received = False | ||
block_hash = self.generatetoaddress(self.nodes[0], 1, self.nodes[0].getnewaddress())[0] | ||
block_hash = self.generatetoscriptpubkey(random_p2pkh()) | ||
filter_peer.wait_for_merkleblock(block_hash) | ||
assert not filter_peer.tx_received | ||
|
||
self.log.info('Check that we not receive a tx if the filter does not match a mempool tx') | ||
filter_peer.merkleblock_received = False | ||
filter_peer.tx_received = False | ||
self.nodes[0].sendtoaddress(self.nodes[0].getnewaddress(), 90) | ||
self.wallet.send_to(from_node=self.nodes[0], scriptPubKey=random_p2pkh(), amount=7 * COIN) | ||
filter_peer.sync_send_with_ping() | ||
assert not filter_peer.merkleblock_received | ||
assert not filter_peer.tx_received | ||
|
||
self.log.info('Check that we receive a tx if the filter matches a mempool tx') | ||
filter_peer.merkleblock_received = False | ||
txid = self.nodes[0].sendtoaddress(filter_address, 90) | ||
txid, _ = self.wallet.send_to(from_node=self.nodes[0], scriptPubKey=filter_peer.watch_script_pubkey, amount=9 * COIN) | ||
filter_peer.wait_for_tx(txid) | ||
assert not filter_peer.merkleblock_received | ||
|
||
self.log.info('Check that after deleting filter all txs get relayed again') | ||
filter_peer.send_and_ping(msg_filterclear()) | ||
for _ in range(5): | ||
txid = self.nodes[0].sendtoaddress(self.nodes[0].getnewaddress(), 7) | ||
txid, _ = self.wallet.send_to(from_node=self.nodes[0], scriptPubKey=random_p2pkh(), amount=7 * COIN) | ||
filter_peer.wait_for_tx(txid) | ||
|
||
self.log.info('Check that request for filtered blocks is ignored if no filter is set') | ||
filter_peer.merkleblock_received = False | ||
filter_peer.tx_received = False | ||
with self.nodes[0].assert_debug_log(expected_msgs=['received getdata']): | ||
block_hash = self.generatetoaddress(self.nodes[0], 1, self.nodes[0].getnewaddress())[0] | ||
block_hash = self.generatetoscriptpubkey(random_p2pkh()) | ||
filter_peer.wait_for_inv([CInv(MSG_BLOCK, int(block_hash, 16))]) | ||
filter_peer.sync_with_ping() | ||
assert not filter_peer.merkleblock_received | ||
|
@@ -210,6 +213,9 @@ def test_filter(self, filter_peer): | |
self.nodes[0].disconnect_p2ps() | ||
|
||
def run_test(self): | ||
self.wallet = MiniWallet(self.nodes[0]) | ||
self.wallet.rescan_utxos() | ||
|
||
filter_peer = self.nodes[0].add_p2p_connection(P2PBloomFilter()) | ||
self.log.info('Test filter size limits') | ||
self.test_size_limits(filter_peer) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters