summaryrefslogtreecommitdiff
path: root/kazoo/tests/test_hosts.py
blob: a2fae1ae0d2b8992ee3a4100a85acc3c3ab0dcea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from unittest import TestCase

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),
        ]
        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),
        ]
        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)]
        assert chroot is None

        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)]
        assert hosts == expected1
        assert chroot is None

        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")
        assert hosts == expected1
        assert chroot == expected2

        hosts, chroot = collect_hosts(
            ["zk01:2181", "zk02:2181", "zk03:2181", "/test"]
        )
        assert hosts == expected1
        assert chroot == expected2