diff --git a/test/test_general_data_routes.py b/test/test_general_data_routes.py new file mode 100644 index 0000000000000000000000000000000000000000..dd4315cef5d0396b57009619b7ad186204797631 --- /dev/null +++ b/test/test_general_data_routes.py @@ -0,0 +1,23 @@ +import json +import jsonschema + +DEFAULT_REQUEST_HEADERS = { + "Content-type": "application/json", + "Accept": ["application/json"] +} + + +def test_get_routers(client): + version_schema = { + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "array", + "items": {"type": "string"} + } + + rv = client.post( + "data/routers", + headers=DEFAULT_REQUEST_HEADERS) + assert rv.status_code == 200 + response = json.loads(rv.data.decode("utf-8")) + jsonschema.validate(response, version_schema) + assert response