mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-27 03:33:27 -03:00
Merge #13205: [tests] Remove spurious error log in p2p_segwit.py
7384a35
[tests] Remove spurious error log in p2p_segwit.py (John Newbery) Pull request description: Since265d7c44b1
, when wait_until() fails, an error message is logged to the test framework log. This means that if wait_until() is called inside a try-except with the expectation that it will fail, a spurious error message is logged. wait_until() shouldn't be called with the expectation of failure. Fix that in p2p_segwit.py. Tree-SHA512: 0a43790b58fee7d2d6bef36e736b0b9ffdde6de5f12d33d15e8e07323597e2be4cd98f17e7fc3a135e06bdafe36613466c0a57e81134e59a251383c62b91918f
This commit is contained in:
commit
3cbd25f9bf
1 changed files with 7 additions and 8 deletions
|
@ -73,11 +73,15 @@ class TestP2PConn(P2PInterface):
|
||||||
for inv in message.inv:
|
for inv in message.inv:
|
||||||
self.getdataset.add(inv.hash)
|
self.getdataset.add(inv.hash)
|
||||||
|
|
||||||
def announce_tx_and_wait_for_getdata(self, tx, timeout=60):
|
def announce_tx_and_wait_for_getdata(self, tx, timeout=60, success=True):
|
||||||
with mininode_lock:
|
with mininode_lock:
|
||||||
self.last_message.pop("getdata", None)
|
self.last_message.pop("getdata", None)
|
||||||
self.send_message(msg_inv(inv=[CInv(1, tx.sha256)]))
|
self.send_message(msg_inv(inv=[CInv(1, tx.sha256)]))
|
||||||
self.wait_for_getdata(timeout)
|
if success:
|
||||||
|
self.wait_for_getdata(timeout)
|
||||||
|
else:
|
||||||
|
time.sleep(timeout)
|
||||||
|
assert not self.last_message.get("getdata")
|
||||||
|
|
||||||
def announce_block_and_wait_for_getdata(self, block, use_header, timeout=60):
|
def announce_block_and_wait_for_getdata(self, block, use_header, timeout=60):
|
||||||
with mininode_lock:
|
with mininode_lock:
|
||||||
|
@ -908,12 +912,7 @@ class SegWitTest(BitcoinTestFramework):
|
||||||
|
|
||||||
# Since we haven't delivered the tx yet, inv'ing the same tx from
|
# Since we haven't delivered the tx yet, inv'ing the same tx from
|
||||||
# a witness transaction ought not result in a getdata.
|
# a witness transaction ought not result in a getdata.
|
||||||
try:
|
self.test_node.announce_tx_and_wait_for_getdata(tx, timeout=2, success=False)
|
||||||
self.test_node.announce_tx_and_wait_for_getdata(tx, timeout=2)
|
|
||||||
self.log.error("Error: duplicate tx getdata!")
|
|
||||||
assert(False)
|
|
||||||
except AssertionError:
|
|
||||||
pass
|
|
||||||
|
|
||||||
# Delivering this transaction with witness should fail (no matter who
|
# Delivering this transaction with witness should fail (no matter who
|
||||||
# its from)
|
# its from)
|
||||||
|
|
Loading…
Add table
Reference in a new issue