|
Server : Apache System : Linux ecngx264.inmotionhosting.com 4.18.0-553.77.1.lve.el8.x86_64 #1 SMP Wed Oct 8 14:21:00 UTC 2025 x86_64 User : lonias5 ( 3576) PHP Version : 7.3.33 Disable Function : NONE Directory : /usr/lib/imh-fail2ban/lib64/python3.13/site-packages/netaddr/tests/ip/ |
Upload File : |
import pytest
from netaddr import AddrFormatError
from netaddr.ip.rfc1924 import ipv6_to_base85, base85_to_ipv6
def test_RFC_1924():
ip_addr = '1080::8:800:200c:417a'
base85 = ipv6_to_base85(ip_addr)
assert base85 == '4)+k&C#VzJ4br>0wv%Yp'
assert base85_to_ipv6(base85) == '1080::8:800:200c:417a'
# RFC specifies that "leading zeroes are never omitted"
ipv6_to_base85('::1') == '00000000000000000001'
with pytest.raises(AddrFormatError):
base85_to_ipv6('not 20 chars')