mirror of
https://github.com/peeringdb/peeringdb.git
synced 2024-05-11 05:55:09 +00:00
* Add check for existing pending affiliations to org * Fix message * 883 consolidation for deskpro tickets * add views tests * ipaddress normalization during search (#913) * remove unused imports * Update lat and long admin fields to not required * black formatting * relock pipfile * fix conditions for failing asn affil test * Update affiliation logic and add tests * make name search case insensitive * add asn to org_id lookup * black format * skip sync test while test.peeringdb.com is down Co-authored-by: Elliot Frank <elliot@20c.com> Co-authored-by: Stefan Pratter <stefan@20c.com>
117 lines
3.2 KiB
Python
117 lines
3.2 KiB
Python
import ipaddress
|
|
|
|
import pytest
|
|
import pytest_filedata
|
|
|
|
from peeringdb_server.inet import RdapNotFoundError, renumber_ipaddress
|
|
|
|
|
|
def test_rdap_asn_lookup(rdap):
|
|
asn = rdap.get_asn(63311)
|
|
assert asn.data
|
|
assert asn.name
|
|
assert asn.emails
|
|
assert asn.org_name
|
|
assert asn.org_address
|
|
|
|
|
|
def test_rdap_asn_lookup_not_found(rdap):
|
|
with pytest.raises(RdapNotFoundError):
|
|
rdap.get_asn(65535)
|
|
|
|
|
|
def test_rdap_asn_lookup_not_found(rdap):
|
|
with pytest.raises(RdapNotFoundError):
|
|
rdap.get_asn(9999999)
|
|
|
|
|
|
def test_mocker(rdap):
|
|
with pytest_filedata.RequestsData("rdap"):
|
|
asn = rdap.get_asn(63311)
|
|
|
|
|
|
@pytest_filedata.RequestsData("rdap")
|
|
def test_arin0(rdap):
|
|
asn = rdap.get_asn(63311)
|
|
assert asn.emails == ["neteng@20c.com"]
|
|
|
|
|
|
def test_recurse_contacts(rdap):
|
|
asn = rdap.get_asn(3333)
|
|
assert rdap == asn._rdapc
|
|
assert len(asn.emails) > 1
|
|
assert len(rdap.history) > 1
|
|
|
|
|
|
def test_renumber_ipaddress():
|
|
ip4 = renumber_ipaddress(
|
|
ipaddress.ip_address("206.41.110.48"),
|
|
ipaddress.ip_network("206.41.110.0/24"),
|
|
ipaddress.ip_network("206.41.111.0/24"),
|
|
)
|
|
|
|
assert ip4.compressed == "206.41.111.48"
|
|
|
|
ip6 = renumber_ipaddress(
|
|
ipaddress.ip_address("2001:504:41:110::20"),
|
|
ipaddress.ip_network("2001:504:41:110::/64"),
|
|
ipaddress.ip_network("2001:504:41:111::/64"),
|
|
)
|
|
|
|
assert ip6.compressed == "2001:504:41:111::20"
|
|
|
|
with pytest.raises(ValueError):
|
|
renumber_ipaddress(
|
|
ipaddress.ip_address("2001:504:41:110::20"),
|
|
ipaddress.ip_network("206.41.110.0/24"),
|
|
ipaddress.ip_network("206.41.111.0/24"),
|
|
)
|
|
|
|
with pytest.raises(ValueError):
|
|
renumber_ipaddress(
|
|
ipaddress.ip_address("2001:504:41:110::20"),
|
|
ipaddress.ip_network("2001:504:41:110::/64"),
|
|
ipaddress.ip_network("206.41.111.0/24"),
|
|
)
|
|
|
|
with pytest.raises(ValueError):
|
|
renumber_ipaddress(
|
|
ipaddress.ip_address("206.41.110.48"),
|
|
ipaddress.ip_network("206.41.0.0/21"),
|
|
ipaddress.ip_network("206.41.111.0/24"),
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"input_str,compressed",
|
|
[
|
|
("2001:0db8::0001", "2001:db8::1"),
|
|
("2001:db8:0:0:0:0:2:1", "2001:db8::2:1"),
|
|
("2001:db8::0:1", "2001:db8::1"),
|
|
("2001:7f8:f2:e1::af21:3376:1", "2001:7f8:f2:e1:0:af21:3376:1"),
|
|
("2001:db8::1:1:1:1:1", "2001:db8:0:1:1:1:1:1"),
|
|
("2001:db8:0:0:1:0:0:1", "2001:db8::1:0:0:1"),
|
|
("2001:7F8:F2:E1:0:AF21:3376:1", "2001:7f8:f2:e1:0:af21:3376:1"),
|
|
],
|
|
ids=[
|
|
"4.1 handling leading zeros",
|
|
"4.2.1 shorten as much as possible (1)",
|
|
"4.2.1 shorten as much as possible (2)",
|
|
"4.2.2 handling one 16-bit 0 field (1)",
|
|
"4.2.2 handling one 16-bit 0 field (2)",
|
|
"4.2.3 choice in placement of ::",
|
|
"4.3 lowercase",
|
|
],
|
|
)
|
|
def test_ipaddress6_compression(input_str, compressed):
|
|
"""
|
|
Testing if the ipaddress string formatting
|
|
is compliant with RFC 5952
|
|
https://tools.ietf.org/html/rfc5952#section-4
|
|
|
|
Ids of parameters denote which rule in the spec
|
|
the test is demonstrating
|
|
"""
|
|
ipv6 = ipaddress.ip_address(input_str)
|
|
assert str(ipv6) == compressed
|