aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-04-19 12:42:39 -0400
committerJohn Newbery <john@johnnewbery.com>2017-04-19 13:47:56 -0400
commit12de2f252c8f48e05c579cb679866a68af8c660e (patch)
treeee422b5b099214f9bd87f1d429011dac07c07d87 /test
parent2077fdacd32adae8d118f019628ecdaa24632550 (diff)
downloadbitcoin-12de2f252c8f48e05c579cb679866a68af8c660e.tar.xz
[tests] disconnect_ban: use wait_until instead of sleep
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/disconnect_ban.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/test/functional/disconnect_ban.py b/test/functional/disconnect_ban.py
index 4c50f85aee..c3ca2aee9b 100755
--- a/test/functional/disconnect_ban.py
+++ b/test/functional/disconnect_ban.py
@@ -3,9 +3,9 @@
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
"""Test node disconnect and ban behavior"""
-import time
import urllib.parse
+from test_framework.mininode import wait_until
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import (assert_equal,
assert_raises_jsonrpc,
@@ -32,7 +32,7 @@ class DisconnectBanTest(BitcoinTestFramework):
self.log.info("setban: successfully ban single IP address")
assert_equal(len(self.nodes[1].getpeerinfo()), 2) # node1 should have 2 connections to node0 at this point
self.nodes[1].setban("127.0.0.1", "add")
- time.sleep(3) # wait till the nodes are disconected
+ wait_until(lambda: len(self.nodes[1].getpeerinfo()) == 0)
assert_equal(len(self.nodes[1].getpeerinfo()), 0) # all nodes must be disconnected at this point
assert_equal(len(self.nodes[1].listbanned()), 1)
@@ -65,10 +65,9 @@ class DisconnectBanTest(BitcoinTestFramework):
self.nodes[1].setban("192.168.0.1", "add", 1) # ban for 1 seconds
self.nodes[1].setban("2001:4d48:ac57:400:cacf:e9ff:fe1d:9c63/19", "add", 1000) # ban for 1000 seconds
listBeforeShutdown = self.nodes[1].listbanned()
- assert_equal("192.168.0.1/32", listBeforeShutdown[2]['address']) # must be here
- time.sleep(2) # make 100% sure we expired 192.168.0.1 node time
+ assert_equal("192.168.0.1/32", listBeforeShutdown[2]['address'])
+ wait_until(lambda: len(self.nodes[1].listbanned()) == 3)
- # stop node
stop_node(self.nodes[1], 1)
self.nodes[1] = start_node(1, self.options.tmpdir)
@@ -86,7 +85,7 @@ class DisconnectBanTest(BitcoinTestFramework):
self.log.info("disconnectnode: successfully disconnect node")
url = urllib.parse.urlparse(self.nodes[1].url)
self.nodes[0].disconnectnode(url.hostname + ":" + str(p2p_port(1)))
- time.sleep(2) # disconnecting a node needs a little bit of time
+ wait_until(lambda: len(self.nodes[0].getpeerinfo()) == 1)
for node in self.nodes[0].getpeerinfo():
assert(node['addr'] != url.hostname + ":" + str(p2p_port(1)))