Skip to content
Snippets Groups Projects
Commit c4fadb7e authored by Erik Reid's avatar Erik Reid
Browse files

added asn to peer-info response schema

parent d3efc074
No related branches found
No related tags found
No related merge requests found
...@@ -250,16 +250,18 @@ def test_juniper_link_unknown_router(client): ...@@ -250,16 +250,18 @@ def test_juniper_link_unknown_router(client):
VPN_RR_PEER_INFO_KEYS = {'vpn-rr-peer-info', 'locations', 'snmp'} VPN_RR_PEER_INFO_KEYS = {'vpn-rr-peer-info', 'locations', 'snmp'}
IX_PUBLIC_PEER_INFO_KEYS = { IX_PUBLIC_PEER_INFO_KEYS = {
'ix-public-peer-info', 'interfaces', 'locations', 'snmp'} 'ix-public-peer-info', 'interfaces', 'locations', 'snmp', 'asn'}
@pytest.mark.parametrize('peer_address,expected_response_keys', [ @pytest.mark.parametrize('peer_address,expected_response_keys', [
('147.91.0.117', VPN_RR_PEER_INFO_KEYS), # MDVPN, asn=13092
('147.91.0.117', VPN_RR_PEER_INFO_KEYS | {'asn'}),
# MDVPN, no asn
('62.40.96.18', VPN_RR_PEER_INFO_KEYS | {'interfaces'}), ('62.40.96.18', VPN_RR_PEER_INFO_KEYS | {'interfaces'}),
('2001:07f8:0036:0000:0000:3417:0000:0001', IX_PUBLIC_PEER_INFO_KEYS), ('2001:07f8:0036:0000:0000:3417:0000:0001', IX_PUBLIC_PEER_INFO_KEYS),
('2001:07f8:0030:0000:0002:0002:0003:2934', IX_PUBLIC_PEER_INFO_KEYS), ('2001:07f8:0030:0000:0002:0002:0003:2934', IX_PUBLIC_PEER_INFO_KEYS),
('195.66.227.154', IX_PUBLIC_PEER_INFO_KEYS), ('195.66.227.154', IX_PUBLIC_PEER_INFO_KEYS),
('149.29.9.9', {'interfaces', 'locations', 'snmp'}), ('149.29.9.9', {'interfaces', 'locations', 'snmp', 'asn'}),
('62.40.125.142', {'interfaces', 'locations', 'snmp'}) ('62.40.125.142', {'interfaces', 'locations', 'snmp'})
]) ])
def test_peer_info( def test_peer_info(
...@@ -358,6 +360,28 @@ def test_peer_info( ...@@ -358,6 +360,28 @@ def test_peer_info(
}, },
"required": ["oid", "community", "hostname"], "required": ["oid", "community", "hostname"],
"additionalProperties": False "additionalProperties": False
},
"asn-group-member": {
"type": "object",
"properties": {
"router": {"type": "string"},
"address": {"type": "string"},
"group": {"type": "string"}
},
"required": ["router", "address", "group"],
"additionalProperties": False
},
"asn-group": {
"type": "object",
"properties": {
"asn": {"type": "integer"},
"peers": {
"type": "array",
"items": {"$ref": "#/definitions/asn-group-member"}
}
},
"required": ["asn", "peers"],
"additionalProperties": False
} }
} }
response_schema = { response_schema = {
...@@ -381,7 +405,8 @@ def test_peer_info( ...@@ -381,7 +405,8 @@ def test_peer_info(
"snmp": { "snmp": {
"type": "array", "type": "array",
"items": {"$ref": "#/definitions/snmp-info"} "items": {"$ref": "#/definitions/snmp-info"}
} },
"asn": {"$ref": "#/definitions/asn-group"}
}, },
"additionalProperties": False "additionalProperties": False
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment