mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-17 17:24:51 +02:00
90 lines
3.0 KiB
Python
90 lines
3.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2015 GNS3 Technologies Inc.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""
|
|
Base code use for all API tests
|
|
"""
|
|
|
|
import json
|
|
import pytest
|
|
|
|
|
|
class Query:
|
|
"""
|
|
Helper to make queries against the test server
|
|
"""
|
|
|
|
def __init__(self, http_client, prefix='', api_version=None):
|
|
"""
|
|
:param prefix: Prefix added before path (ex: /compute)
|
|
:param api_version: Version of the API
|
|
"""
|
|
|
|
self._http_client = http_client
|
|
self._prefix = prefix
|
|
self._api_version = api_version
|
|
|
|
def post(self, path, body={}, **kwargs):
|
|
return self._request("POST", path, body, **kwargs)
|
|
|
|
def put(self, path, body={}, **kwargs):
|
|
return self._request("PUT", path, body, **kwargs)
|
|
|
|
def get(self, path, **kwargs):
|
|
return self._request("GET", path, **kwargs)
|
|
|
|
def delete(self, path, **kwargs):
|
|
return self._request("DELETE", path, **kwargs)
|
|
|
|
def patch(self, path, **kwargs):
|
|
return self._request("PATCH", path, **kwargs)
|
|
|
|
def get_url(self, path):
|
|
|
|
if self._api_version is None:
|
|
return "/{}{}".format(self._prefix, path)
|
|
return "/v{}{}{}".format(self._api_version, self._prefix, path)
|
|
|
|
@pytest.mark.asyncio
|
|
async def _request(self, method, path, body=None, raw=False, **kwargs):
|
|
|
|
if body is not None and raw is False:
|
|
body = json.dumps(body)
|
|
|
|
async with self._http_client as ac:
|
|
response = await ac.request(method, self.get_url(path), data=body, **kwargs)
|
|
#response.body = await response.read()
|
|
# x_route = response.headers.get('X-Route', None)
|
|
# if x_route is not None:
|
|
# response.route = x_route.replace("/v{}".format(self._api_version), "")
|
|
# response.route = response.route.replace(self._prefix, "")
|
|
|
|
#response.json = {}
|
|
#response.html = ""
|
|
if response.content is not None:
|
|
if response.headers.get("content-type") == "application/json":
|
|
try:
|
|
response.json = response.json(encoding="utf-8")
|
|
except ValueError:
|
|
response.json = None
|
|
# else:
|
|
# try:
|
|
# response.html = response.text
|
|
# except UnicodeDecodeError:
|
|
# response.html = None
|
|
return response
|