mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-28 04:52:36 +02:00
Merge bitcoin/bitcoin#23879: test: check ban_duration and time_remaining after setting ban
da349f131a
test: check ban_duration and time_remaining after setting ban (brunoerg) Pull request description: This PR adds functional test coverage for `ban_duration` and `time_remaining` introduced in #21602 ACKs for top commit: shaavan: ACKda349f131a
theStack: Tested ACKda349f131a
Tree-SHA512: 51e63f3a36adb1c81e4d49426486af2cd9c8c4319f94e06a47fa7da8100a8b53c029d28d4a4771bdbf4e0a2bfb4ddd3740b9974bd08d8ff06f2a0fc2b6d8a6b5
This commit is contained in:
commit
f3d6a5ce77
@ -70,6 +70,15 @@ class DisconnectBanTest(BitcoinTestFramework):
|
||||
self.nodes[1].setmocktime(old_time + 3)
|
||||
assert_equal(len(self.nodes[1].listbanned()), 3)
|
||||
|
||||
self.log.info("Test ban_duration and time_remaining")
|
||||
for ban in self.nodes[1].listbanned():
|
||||
if ban["address"] in ["127.0.0.0/32", "127.0.0.0/24"]:
|
||||
assert_equal(ban["ban_duration"], 86400)
|
||||
assert_equal(ban["time_remaining"], 86397)
|
||||
elif ban["address"] == "2001:4d48:ac57:400:cacf:e9ff:fe1d:9c63/19":
|
||||
assert_equal(ban["ban_duration"], 1000)
|
||||
assert_equal(ban["time_remaining"], 997)
|
||||
|
||||
self.restart_node(1)
|
||||
|
||||
listAfterShutdown = self.nodes[1].listbanned()
|
||||
|
Loading…
Reference in New Issue
Block a user