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

added interface descriptions to interface/hostname response

parent cd54d301
No related branches found
No related tags found
No related merge requests found
...@@ -59,22 +59,24 @@ def router_interfaces(hostname): ...@@ -59,22 +59,24 @@ def router_interfaces(hostname):
r = redis.StrictRedis( r = redis.StrictRedis(
host=redis_config["hostname"], host=redis_config["hostname"],
port=redis_config["port"]) port=redis_config["port"])
ifc_data_string = r.hget(hostname, 'snmp-interfaces') ifc_data_string = r.hget(hostname, 'interfaces')
if not ifc_data_string: if not ifc_data_string:
return Response( return Response(
response="no available info for '%s'" % hostname, response="no available info for '%s'" % hostname,
status=404, status=404,
mimetype="text/html") mimetype="text/html")
def _interfaces(d):
for ii in d['interface-information']:
for ifc_list in ii['physical-interface'] + ii['logical-interface']:
for ifc in ifc_list:
yield {
'name': ifc['name'][0]['data'],
'description': ifc['description'][0]['data']
}
def _interfaces(s): ifc_data = json.loads(ifc_data_string.decode('utf-8'))
for ifc in json.loads(s): interfaces = list(_interfaces(ifc_data))
if 'v4InterfaceName' in ifc:
yield ifc['v4InterfaceName']
if 'v6InterfaceName' in ifc:
yield ifc['v6InterfaceName']
interfaces = list(_interfaces(ifc_data_string.decode('utf-8')))
if not interfaces: if not interfaces:
return Response( return Response(
response="no interfaces found for '%s'" % hostname, response="no interfaces found for '%s'" % hostname,
......
...@@ -241,7 +241,15 @@ def test_router_interfaces(client_with_mocked_data): ...@@ -241,7 +241,15 @@ def test_router_interfaces(client_with_mocked_data):
interfaces_list_schema = { interfaces_list_schema = {
"$schema": "http://json-schema.org/draft-07/schema#", "$schema": "http://json-schema.org/draft-07/schema#",
"type": "array", "type": "array",
"items": {"type": "string"} "items": {
"type": "object",
"properties": {
"name": {"type": "string"},
"description": {"type": "string"}
},
"required": ["name", "description"],
"additionalProperties": False
}
} }
for router in _routers(client_with_mocked_data): for router in _routers(client_with_mocked_data):
......
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