File: test_ip_rfc1924.py

package info (click to toggle)
python-netaddr 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,912 kB
  • sloc: xml: 8,264; python: 6,697; makefile: 198; sh: 5
file content (17 lines) | stat: -rw-r--r-- 512 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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')