Skip to content

Commit eb65f57

Browse files
committed
[test] setmocktime instead of waiting in 1p1c tests
Significantly speed up the runtime of the test.
1 parent 70772dd commit eb65f57

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

test/functional/p2p_opportunistic_1p1c.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ def create_tx_below_mempoolminfee(self, wallet):
9191
def test_basic_child_then_parent(self):
9292
node = self.nodes[0]
9393
self.log.info("Check that opportunistic 1p1c logic works when child is received before parent")
94+
node.setmocktime(int(time.time()))
9495

9596
low_fee_parent = self.create_tx_below_mempoolminfee(self.wallet)
9697
high_fee_child = self.wallet.create_self_transfer(utxo_to_spend=low_fee_parent["new_utxo"], fee_rate=20*FEERATE_1SAT_VB)
@@ -100,11 +101,13 @@ def test_basic_child_then_parent(self):
100101
# 1. Child is received first (perhaps the low feerate parent didn't meet feefilter or the requests were sent to different nodes). It is missing an input.
101102
high_child_wtxid_int = high_fee_child["tx"].wtxid_int
102103
peer_sender.send_and_ping(msg_inv([CInv(t=MSG_WTX, h=high_child_wtxid_int)]))
104+
node.bumpmocktime(NONPREF_PEER_TX_DELAY)
103105
peer_sender.wait_for_getdata([high_child_wtxid_int])
104106
peer_sender.send_and_ping(msg_tx(high_fee_child["tx"]))
105107

106108
# 2. Node requests the missing parent by txid.
107109
parent_txid_int = int(low_fee_parent["txid"], 16)
110+
node.bumpmocktime(NONPREF_PEER_TX_DELAY + TXID_RELAY_DELAY)
108111
peer_sender.wait_for_getdata([parent_txid_int])
109112

110113
# 3. Sender relays the parent. Parent+Child are evaluated as a package and accepted.
@@ -120,6 +123,7 @@ def test_basic_child_then_parent(self):
120123
@cleanup
121124
def test_basic_parent_then_child(self, wallet):
122125
node = self.nodes[0]
126+
node.setmocktime(int(time.time()))
123127
low_fee_parent = self.create_tx_below_mempoolminfee(wallet)
124128
high_fee_child = wallet.create_self_transfer(utxo_to_spend=low_fee_parent["new_utxo"], fee_rate=20*FEERATE_1SAT_VB)
125129

@@ -146,6 +150,7 @@ def test_basic_parent_then_child(self, wallet):
146150
# 3. Node requests the missing parent by txid.
147151
# It should do so even if it has previously rejected that parent for being too low feerate.
148152
parent_txid_int = int(low_fee_parent["txid"], 16)
153+
node.bumpmocktime(TXID_RELAY_DELAY)
149154
peer_sender.wait_for_getdata([parent_txid_int])
150155

151156
# 4. Sender re-relays the parent. Parent+Child are evaluated as a package and accepted.
@@ -159,6 +164,7 @@ def test_basic_parent_then_child(self, wallet):
159164
@cleanup
160165
def test_low_and_high_child(self, wallet):
161166
node = self.nodes[0]
167+
node.setmocktime(int(time.time()))
162168
low_fee_parent = self.create_tx_below_mempoolminfee(wallet)
163169
# This feerate is above mempoolminfee, but not enough to also bump the low feerate parent.
164170
feerate_just_above = node.getmempoolinfo()["mempoolminfee"]
@@ -189,6 +195,7 @@ def test_low_and_high_child(self, wallet):
189195

190196
# 3. Node requests the orphan's missing parent.
191197
parent_txid_int = int(low_fee_parent["txid"], 16)
198+
node.bumpmocktime(TXID_RELAY_DELAY)
192199
peer_sender.wait_for_getdata([parent_txid_int])
193200

194201
# 4. The low parent + low child are submitted as a package. They are not accepted due to low package feerate.
@@ -216,6 +223,7 @@ def test_low_and_high_child(self, wallet):
216223
# 6. Node requests the orphan's parent, even though it has already been rejected, both by
217224
# itself and with a child. This is necessary, otherwise high_fee_child can be censored.
218225
parent_txid_int = int(low_fee_parent["txid"], 16)
226+
node.bumpmocktime(TXID_RELAY_DELAY)
219227
peer_sender.wait_for_getdata([parent_txid_int])
220228

221229
# 7. The low feerate parent + high feerate child are submitted as a package.
@@ -231,6 +239,7 @@ def test_low_and_high_child(self, wallet):
231239
def test_orphan_consensus_failure(self):
232240
self.log.info("Check opportunistic 1p1c logic requires parent and child to be from the same peer")
233241
node = self.nodes[0]
242+
node.setmocktime(int(time.time()))
234243
low_fee_parent = self.create_tx_below_mempoolminfee(self.wallet)
235244
coin = low_fee_parent["new_utxo"]
236245
address = node.get_deterministic_priv_key().address
@@ -246,11 +255,13 @@ def test_orphan_consensus_failure(self):
246255
# 1. Child is received first. It is missing an input.
247256
child_wtxid_int = tx_orphan_bad_wit.wtxid_int
248257
bad_orphan_sender.send_and_ping(msg_inv([CInv(t=MSG_WTX, h=child_wtxid_int)]))
258+
node.bumpmocktime(NONPREF_PEER_TX_DELAY)
249259
bad_orphan_sender.wait_for_getdata([child_wtxid_int])
250260
bad_orphan_sender.send_and_ping(msg_tx(tx_orphan_bad_wit))
251261

252262
# 2. Node requests the missing parent by txid.
253263
parent_txid_int = int(low_fee_parent["txid"], 16)
264+
node.bumpmocktime(NONPREF_PEER_TX_DELAY + TXID_RELAY_DELAY)
254265
bad_orphan_sender.wait_for_getdata([parent_txid_int])
255266

256267
# 3. A different peer relays the parent. Package is not evaluated because the transactions
@@ -273,6 +284,8 @@ def test_orphan_consensus_failure(self):
273284
def test_parent_consensus_failure(self):
274285
self.log.info("Check opportunistic 1p1c logic with consensus-invalid parent causes disconnect of the correct peer")
275286
node = self.nodes[0]
287+
node.setmocktime(int(time.time()))
288+
276289
low_fee_parent = self.create_tx_below_mempoolminfee(self.wallet)
277290
high_fee_child = self.wallet.create_self_transfer(utxo_to_spend=low_fee_parent["new_utxo"], fee_rate=999*FEERATE_1SAT_VB)
278291

@@ -287,11 +300,13 @@ def test_parent_consensus_failure(self):
287300
# 1. Child is received first. It is missing an input.
288301
child_wtxid_int = high_fee_child["tx"].wtxid_int
289302
package_sender.send_and_ping(msg_inv([CInv(t=MSG_WTX, h=child_wtxid_int)]))
303+
node.bumpmocktime(NONPREF_PEER_TX_DELAY)
290304
package_sender.wait_for_getdata([child_wtxid_int])
291305
package_sender.send_and_ping(msg_tx(high_fee_child["tx"]))
292306

293307
# 2. Node requests the missing parent by txid.
294308
parent_txid_int = tx_parent_bad_wit.txid_int
309+
node.bumpmocktime(NONPREF_PEER_TX_DELAY + TXID_RELAY_DELAY)
295310
package_sender.wait_for_getdata([parent_txid_int])
296311

297312
# 3. A different node relays the parent. The parent is first evaluated by itself and
@@ -309,6 +324,7 @@ def test_parent_consensus_failure(self):
309324
# It can send the "real" parent transaction, and the package is accepted.
310325
parent_wtxid_int = low_fee_parent["tx"].wtxid_int
311326
package_sender.send_and_ping(msg_inv([CInv(t=MSG_WTX, h=parent_wtxid_int)]))
327+
node.bumpmocktime(NONPREF_PEER_TX_DELAY)
312328
package_sender.wait_for_getdata([parent_wtxid_int])
313329
package_sender.send_and_ping(msg_tx(low_fee_parent["tx"]))
314330

@@ -355,6 +371,7 @@ def test_multiple_parents(self):
355371
def test_other_parent_in_mempool(self):
356372
self.log.info("Check opportunistic 1p1c fails if child already has another parent in mempool")
357373
node = self.nodes[0]
374+
node.setmocktime(int(time.time()))
358375

359376
# This parent needs CPFP
360377
parent_low = self.create_tx_below_mempoolminfee(self.wallet)
@@ -376,6 +393,7 @@ def test_other_parent_in_mempool(self):
376393

377394
# 3. Node requests parent_low. However, 1p1c fails because package-not-child-with-unconfirmed-parents
378395
parent_low_txid_int = int(parent_low["txid"], 16)
396+
node.bumpmocktime(NONPREF_PEER_TX_DELAY + TXID_RELAY_DELAY)
379397
peer_sender.wait_for_getdata([parent_low_txid_int])
380398
peer_sender.send_and_ping(msg_tx(parent_low["tx"]))
381399

0 commit comments

Comments
 (0)