summaryrefslogtreecommitdiff
path: root/kazoo/tests/test_hosts.py
diff options
context:
space:
mode:
Diffstat (limited to 'kazoo/tests/test_hosts.py')
-rw-r--r--kazoo/tests/test_hosts.py53
1 files changed, 29 insertions, 24 deletions
diff --git a/kazoo/tests/test_hosts.py b/kazoo/tests/test_hosts.py
index 0ad83cf..8f8a811 100644
--- a/kazoo/tests/test_hosts.py
+++ b/kazoo/tests/test_hosts.py
@@ -4,50 +4,55 @@ from kazoo.hosts import collect_hosts
class HostsTestCase(TestCase):
-
def test_ipv4(self):
- hosts, chroot = collect_hosts('127.0.0.1:2181, 192.168.1.2:2181, \
- 132.254.111.10:2181')
- assert hosts == [('127.0.0.1', 2181),
- ('192.168.1.2', 2181),
- ('132.254.111.10', 2181)]
+ hosts, chroot = collect_hosts(
+ "127.0.0.1:2181, 192.168.1.2:2181, \
+ 132.254.111.10:2181"
+ )
+ assert hosts == [
+ ("127.0.0.1", 2181),
+ ("192.168.1.2", 2181),
+ ("132.254.111.10", 2181),
+ ]
assert chroot is None
- hosts, chroot = collect_hosts(['127.0.0.1:2181',
- '192.168.1.2:2181',
- '132.254.111.10:2181'])
- assert hosts == [('127.0.0.1', 2181),
- ('192.168.1.2', 2181),
- ('132.254.111.10', 2181)]
+ hosts, chroot = collect_hosts(
+ ["127.0.0.1:2181", "192.168.1.2:2181", "132.254.111.10:2181"]
+ )
+ assert hosts == [
+ ("127.0.0.1", 2181),
+ ("192.168.1.2", 2181),
+ ("132.254.111.10", 2181),
+ ]
assert chroot is None
def test_ipv6(self):
- hosts, chroot = collect_hosts('[fe80::200:5aee:feaa:20a2]:2181')
- assert hosts == [('fe80::200:5aee:feaa:20a2', 2181)]
+ hosts, chroot = collect_hosts("[fe80::200:5aee:feaa:20a2]:2181")
+ assert hosts == [("fe80::200:5aee:feaa:20a2", 2181)]
assert chroot is None
- hosts, chroot = collect_hosts(['[fe80::200:5aee:feaa:20a2]:2181'])
- assert hosts == [('fe80::200:5aee:feaa:20a2', 2181)]
+ hosts, chroot = collect_hosts(["[fe80::200:5aee:feaa:20a2]:2181"])
+ assert hosts == [("fe80::200:5aee:feaa:20a2", 2181)]
assert chroot is None
def test_hosts_list(self):
- hosts, chroot = collect_hosts('zk01:2181, zk02:2181, zk03:2181')
- expected1 = [('zk01', 2181), ('zk02', 2181), ('zk03', 2181)]
+ hosts, chroot = collect_hosts("zk01:2181, zk02:2181, zk03:2181")
+ expected1 = [("zk01", 2181), ("zk02", 2181), ("zk03", 2181)]
assert hosts == expected1
assert chroot is None
- hosts, chroot = collect_hosts(['zk01:2181', 'zk02:2181', 'zk03:2181'])
+ hosts, chroot = collect_hosts(["zk01:2181", "zk02:2181", "zk03:2181"])
assert hosts == expected1
assert chroot is None
- expected2 = '/test'
- hosts, chroot = collect_hosts('zk01:2181, zk02:2181, zk03:2181/test')
+ expected2 = "/test"
+ hosts, chroot = collect_hosts("zk01:2181, zk02:2181, zk03:2181/test")
assert hosts == expected1
assert chroot == expected2
- hosts, chroot = collect_hosts(['zk01:2181',
- 'zk02:2181',
- 'zk03:2181', '/test'])
+ hosts, chroot = collect_hosts(
+ ["zk01:2181", "zk02:2181", "zk03:2181", "/test"]
+ )
assert hosts == expected1
assert chroot == expected2