Boxiang Zhu 88ef320dc6 feat: Support mypy check
1. support mypy check, tox -e mypy or tox -e pep8
2. fix error of mypy check

Change-Id: I41b0013d271f3c7d3a28e1ea6dd0b083893d8983
2022-07-28 16:09:31 +08:00

95 lines
2.7 KiB
Python

# Copyright 2021 99cloud
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import types
from typing import Any, Dict, Optional
import httpx
from fastapi import HTTPException, status
from httpx import Response, codes
async def _http_request(
method: types.FunctionType = httpx.AsyncClient.get, # type: ignore
**kwargs,
) -> Response:
async with httpx.AsyncClient(verify=False) as client:
try:
response = await method(
client,
**kwargs,
)
return response
except Exception as ex:
raise HTTPException(status_code=status.HTTP_500_INTERNAL_SERVER_ERROR, detail=str(ex))
async def assert_http_request(
method: types.FunctionType,
expectedStatus: codes = codes.OK,
**kwargs,
) -> Response:
response = await _http_request(method, **kwargs)
if response.status_code != expectedStatus:
raise HTTPException(
status_code=response.status_code,
detail=response.text,
)
return response
async def get_assert_200(
url: str,
cookies: Optional[Dict[str, Any]] = None,
headers: Optional[Dict[str, Any]] = None,
params: Optional[Dict[str, Any]] = None,
) -> Response:
return await assert_http_request(
method=httpx.AsyncClient.get, # type: ignore
expectedStatus=codes.OK,
url=url,
cookies=cookies,
headers=headers,
params=params,
)
async def delete_assert_200(url, cookies: Optional[Dict[str, Any]] = None) -> Response:
return await assert_http_request(
method=httpx.AsyncClient.delete, # type: ignore
expectedStatus=codes.OK,
url=url,
cookies=cookies,
)
async def post_assert_201(url: str, json: Dict[str, Any], cookies: Dict[str, Any]) -> Response:
return await assert_http_request(
method=httpx.AsyncClient.post, # type: ignore
expectedStatus=codes.CREATED,
url=url,
json=json,
cookies=cookies,
)
async def put_assert_200(url: str, json: Dict[str, Any], cookies: Dict[str, Any]) -> Response:
return await assert_http_request(
method=httpx.AsyncClient.put, # type: ignore
expectedStatus=codes.OK,
url=url,
json=json,
cookies=cookies,
)