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

re-enable dummy test of debug route

parent c2599401
No related branches found
No related tags found
No related merge requests found
...@@ -187,26 +187,24 @@ def test_router_bgp_routes(router, client_with_mocked_data): ...@@ -187,26 +187,24 @@ def test_router_bgp_routes(router, client_with_mocked_data):
jsonschema.validate(response, bgp_list_schema) jsonschema.validate(response, bgp_list_schema)
assert response # at least shouldn't be empty assert response # at least shouldn't be empty
#
# def test_router_debug_data_route(client_with_mocked_data): def test_router_debug_data_route(router, client_with_mocked_data):
# debug_data_schema = { """
# "$schema": "http://json-schema.org/draft-07/schema#", not really a test ... just providing coverage of temporary code used
# "type": "object", for debugging (should be removed eventually)
# "items": {
# "type": "object", :param router:
# "properties": { :param client_with_mocked_data:
# "vrr": {"type": "object"}, :return:
# "bgp": {"type": "array"}, """
# "interfaces": {"type": "array"} debug_data_schema = {
# }, "$schema": "http://json-schema.org/draft-07/schema#",
# "required": ["vrr", "bgp", "interfaces"], "type": "object",
# "additionalProperties": False "items": {"type": "object"}
# } }
# }
# rv = client_with_mocked_data.post(
# for router in _routers(client_with_mocked_data): "/data/debug-dump/" + router,
# rv = client_with_mocked_data.post( headers=DEFAULT_REQUEST_HEADERS)
# "/data/debug-dump/" + router, response = json.loads(rv.data.decode("utf-8"))
# headers=DEFAULT_REQUEST_HEADERS) jsonschema.validate(response, debug_data_schema)
# response = json.loads(rv.data.decode("utf-8"))
# jsonschema.validate(response, debug_data_schema)
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