Skip to content

Commit dfa44d1

Browse files
committed
[qa] Wait for specific block announcement in p2p-compactblocks
Change check_announcement_of_new_block() to wait specifically for the announcement of the newly created block, instead of waiting for any announcement at all. A difficult to reproduce failure in check_announcement_of_new_block() that happened in a travis build (https://travis-ci.org/bitcoin/bitcoin/jobs/175198367) might have happened because an older announcement was mistaken for the expected one. The error looked like: Assertion failed: Failed File ".../bitcoin/qa/rpc-tests/test_framework/test_framework.py", line 145, in main self.run_test() File ".../bitcoin/build/../qa/rpc-tests/p2p-compactblocks.py", line 787, in run_test self.test_sendcmpct(self.nodes[1], self.segwit_node, 2, old_node=self.old_node) File ".../bitcoin/build/../qa/rpc-tests/p2p-compactblocks.py", line 201, in test_sendcmpct check_announcement_of_new_block(node, test_node, lambda p: p.last_cmpctblock is None and p.last_inv is not None) File ".../bitcoin/build/../qa/rpc-tests/p2p-compactblocks.py", line 194, in check_announcement_of_new_block assert(predicate(peer)) This commit also changes the assertion failed message above to include more detailed information for debug.
1 parent 87ab49e commit dfa44d1

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

qa/rpc-tests/p2p-compactblocks.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,12 +186,15 @@ def received_sendcmpct():
186186

187187
def check_announcement_of_new_block(node, peer, predicate):
188188
peer.clear_block_announcement()
189-
node.generate(1)
190-
got_message = wait_until(lambda: peer.block_announced, timeout=30)
189+
block_hash = int(node.generate(1)[0], 16)
190+
peer.wait_for_block_announcement(block_hash, timeout=30)
191191
assert(peer.block_announced)
192192
assert(got_message)
193+
193194
with mininode_lock:
194-
assert(predicate(peer))
195+
assert predicate(peer), (
196+
"block_hash={!r}, cmpctblock={!r}, inv={!r}".format(
197+
block_hash, peer.last_cmpctblock, peer.last_inv))
195198

196199
# We shouldn't get any block announcements via cmpctblock yet.
197200
check_announcement_of_new_block(node, test_node, lambda p: p.last_cmpctblock is None)

0 commit comments

Comments
 (0)