From 0024024897153d23ae446415612b7529ffb67fe2 Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Mon, 19 Mar 2012 08:52:11 -0400 Subject: Parse zone indices in IPv6 addresses in CheckedIPAddress. If a zone index is present in an IPv6 address, it is ignored. ticket 2138 --- tests/test_ipapython/test_ipautil.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/test_ipapython/test_ipautil.py') diff --git a/tests/test_ipapython/test_ipautil.py b/tests/test_ipapython/test_ipautil.py index 68391c2e..650e1ce9 100644 --- a/tests/test_ipapython/test_ipautil.py +++ b/tests/test_ipapython/test_ipautil.py @@ -39,6 +39,8 @@ def test_ip_address(): addrs = [ ('10.11.12.13', (10, 11, 12, 13), 8), ('10.11.12.13/14', (10, 11, 12, 13), 14), + ('10.11.12.13%zoneid',), + ('10.11.12.13%zoneid/14',), ('10.11.12.1337',), ('10.11.12.13/33',), ('127.0.0.1',), @@ -50,6 +52,8 @@ def test_ip_address(): ('2001::1', (0x2001, 0, 0, 0, 0, 0, 0, 1), 64), ('2001::1/72', (0x2001, 0, 0, 0, 0, 0, 0, 1), 72), + ('2001::1%zoneid', (0x2001, 0, 0, 0, 0, 0, 0, 1), 64), + ('2001::1%zoneid/72',), ('2001::1beef',), ('2001::1/129',), ('::1',), -- cgit