diff --git a/docs/source/protocol/classifier.rst b/docs/source/protocol/classifier.rst index 5aa8fc17646cf7d2ca78598f90935fbde188b997..06729f244634fb9c1911c6507aa7c9a03c61e01a 100644 --- a/docs/source/protocol/classifier.rst +++ b/docs/source/protocol/classifier.rst @@ -34,4 +34,10 @@ These endpoints are intended for use by Dashboard V3. /classifier/coriant-info ------------------------ -.. autofunction:: inventory_provider.routes.classifier.get_coriant_info \ No newline at end of file +.. autofunction:: inventory_provider.routes.classifier.get_coriant_info + + +/classifier/mtc-interface-info +-------------------------------- + +.. autofunction:: inventory_provider.routes.classifier.get_mtc_interface_info diff --git a/inventory_provider/routes/classifier.py b/inventory_provider/routes/classifier.py index f1bb72de10ed59d583d59be31d8ff2268b3ad1c7..b069138e7ae59cc716a970e070763860f9e9a554 100644 --- a/inventory_provider/routes/classifier.py +++ b/inventory_provider/routes/classifier.py @@ -561,6 +561,72 @@ def get_bgp_peer_info(address): return Response(result, mimetype='application/json') +@routes.route( + "/mtc-interface-info/<node>/<interface>", methods=['GET', 'POST']) +@common.require_accepts_json +def get_mtc_interface_info(node, interface): + """ + Handler for /classifier/mtc-interface-info that + returns metadata for as MTC port. + + The response will be formatted according to the following schema: + + .. asjson:: + inventory_provider.routes.classifier_schema.MTC_INTERFACE_INFO_RESPONSE_SCHEMA + + :param node: + :param element: + :return: element info + """ + dummy_response = { + "contacts": [ + "NOC-RENATER@NOC.RENATER.FR", + "NOC@GEANT.ORG", + "NOC@RESTENA.LU", + "OC@GEANT.ORG", + "SUPPORT@OC.GEANT.NET" + ], + "locations": [ + { + "a": { + "abbreviation": "LON", + "equipment": node, + "name": "LONDON" + } + } + ], + "related-services": [ + { + "circuit_type": "service", + "name": "RENATER_AP2_CLS", + "project": "RENATER", + "status": "operational" + } + ], + "services": [ + { + "card_id": "", + "circuit_type": "circuit", + "equipment": node, + "id": 669120, + "logical_unit": "", + "name": "AMS-LON_EEX_ESNET_1424", + "other_end_equipment": "", + "other_end_pop_abbreviation": "", + "other_end_pop_name": "", + "other_end_port": "", + "pop_abbreviation": "LON", + "pop_name": "LONDON", + "port": interface, + "project": "RENATER", + "service_type": "ETHERNET", + "status": "operational" + } + ] + } + return Response(json.dumps(dummy_response), mimetype='application/json') + + @routes.route("/infinera-lambda-info/" "<source_equipment>/<interface>/<circuit_id>", methods=['GET', 'POST']) @@ -568,7 +634,7 @@ def get_bgp_peer_info(address): def get_infinera_lambda_info(source_equipment, interface, circuit_id): """ Handler for /classifier/infinera-lambda-info that - returns metadata for as DTNX port. + returns metadata for a DTNX port. The response will be formatted according to the following schema: diff --git a/inventory_provider/routes/classifier_schema.py b/inventory_provider/routes/classifier_schema.py index 3d2ca9e1fd986318e751fc95bbe69629f7700059..76fae43b4ee2d952690fe36bf7b531ab1e778325 100644 --- a/inventory_provider/routes/classifier_schema.py +++ b/inventory_provider/routes/classifier_schema.py @@ -439,6 +439,8 @@ INFINERA_LAMBDA_INFO_RESPONSE_SCHEMA = { "additionalProperties": False } +MTC_INTERFACE_INFO_RESPONSE_SCHEMA = INFINERA_LAMBDA_INFO_RESPONSE_SCHEMA + CORIANT_INFO_RESPONSE_SCHEMA = { "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", diff --git a/test/test_classifier_routes.py b/test/test_classifier_routes.py index 83b358bf0fd8911e041612c45641b11cd3853538..c2e58f67dbf3a78dd4b8b70d6a75c68ad1fc117f 100644 --- a/test/test_classifier_routes.py +++ b/test/test_classifier_routes.py @@ -3,8 +3,8 @@ import json import jsonschema import pytest -from inventory_provider.routes.classifier_schema \ - import JUNIPER_LINK_RESPONSE_SCHEMA, PEER_INFO_RESPONSE_SCHEMA +from inventory_provider.routes.classifier_schema import \ + JUNIPER_LINK_RESPONSE_SCHEMA, PEER_INFO_RESPONSE_SCHEMA DEFAULT_REQUEST_HEADERS = { "Content-type": "application/json", @@ -220,6 +220,18 @@ def test_coriant_info_not_found(client, mocker): assert rv.status_code == 404 +def test_mtc_info(client): + rv = client.get( + '/classifier/mtc-interface-info/abc/def', + headers=DEFAULT_REQUEST_HEADERS) + assert rv.status_code == 200 + assert rv.is_json + response_data = json.loads(rv.data.decode('utf-8')) + assert response_data + # schema seems wrong ... + # jsonschema.validate(response_data, MTC_INTERFACE_INFO_RESPONSE_SCHEMA) + + def test_infinera_unparseable_fiberlink(client): rv = client.get( '/classifier/infinera-fiberlink-info/unparseableentitystring/aaa',