Skip to content

Commit

Permalink
Improvements to Type Hints
Browse files Browse the repository at this point in the history
I found a number of places where the type hints are either incorrect or
not specific enough. Improve or fix warnings as reported by my IDE.
  • Loading branch information
jamielennox committed Apr 20, 2022
1 parent 0aeaecd commit deb2f4a
Show file tree
Hide file tree
Showing 7 changed files with 86 additions and 49 deletions.
16 changes: 9 additions & 7 deletions requests_mock/adapter.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@

from http.cookiejar import CookieJar
from io import IOBase
from typing import Any, Callable, Dict, List, NewType, Optional, Pattern, Union
from typing import Any, Callable, Dict, List, NewType, Optional, Pattern, Type, Union

from requests import Request, Response
from requests.adapters import BaseAdapter
from requests.packages.urllib3.response import HTTPResponse

from requests_mock.request import _RequestObjectProxy
from requests_mock.response import _Context
from requests_mock import _RequestObjectProxy

AnyMatcher = NewType("AnyMatcher", object)

Expand All @@ -30,7 +31,7 @@ class _RunRealHTTP(Exception): ...

class _Matcher(_RequestHistoryTracker):
def __init__(self, method: Any, url: Any, responses: Any, complete_qs: Any, request_headers: Any, additional_matcher: Any, real_http: Any, case_sensitive: Any) -> None: ...
def __call__(self, request: Any) -> Any: ...
def __call__(self, request: Request) -> Optional[Response]: ...

class Adapter(BaseAdapter, _RequestHistoryTracker):
def __init__(self, case_sensitive: bool = ...) -> None: ...
Expand All @@ -51,8 +52,9 @@ class Adapter(BaseAdapter, _RequestHistoryTracker):
content: Union[bytes, Callable[[_RequestObjectProxy, _Context], bytes]] = ...,
body: Union[IOBase, Callable[[_RequestObjectProxy, _Context], IOBase]] = ...,
raw: HTTPResponse = ...,
exc: Exception = ...,
additional_matcher: Optional[Callable[[_RequestObjectProxy], bool]] = ...,
exc: Union[Exception, Type[Exception]] = ...,
additional_matcher: Callable[[_RequestObjectProxy], bool] = ...,
**kwargs: Any
) -> Any: ...
def add_matcher(self, matcher: Any) -> None: ...
) -> _Matcher: ...
def add_matcher(self, matcher: Callable[[Request], Optional[Response]]) -> None: ...
def reset(self) -> None: ...
4 changes: 3 additions & 1 deletion requests_mock/exceptions.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

from typing import Any

from requests import Request

class MockException(Exception): ...

class NoMockAddress(MockException):
request: Any = ...
def __init__(self, request: Any) -> None: ...
def __init__(self, request: Request) -> None: ...

class InvalidRequest(MockException): ...
85 changes: 54 additions & 31 deletions requests_mock/mocker.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ from http.cookiejar import CookieJar
from io import IOBase
from typing import Any, Callable, Dict, List, Optional, Pattern, Type, TypeVar, Union

from requests import Response
from requests import Request, Response, Session
from requests.packages.urllib3.response import HTTPResponse

from requests_mock.adapter import AnyMatcher
from requests_mock.adapter import AnyMatcher, _Matcher
from requests_mock.request import _RequestObjectProxy
from requests_mock.response import _Context

Expand All @@ -24,7 +24,7 @@ class MockerCore:
def __init__(self, **kwargs: Any) -> None: ...
def start(self) -> None: ...
def stop(self) -> None: ...
def add_matcher(self, matcher: Any) -> None: ...
def add_matcher(self, matcher: Callable[[Request], Optional[Response]]) -> None: ...
@property
def request_history(self) -> List[_RequestObjectProxy]: ...
@property
Expand All @@ -37,6 +37,7 @@ class MockerCore:
def call_count(self) -> int: ...
def reset(self) -> None: ...
def reset_mock(self) -> None: ...

def register_uri(
self,
method: Union[str, AnyMatcher],
Expand All @@ -54,9 +55,11 @@ class MockerCore:
content: Union[bytes, Callable[[_RequestObjectProxy, _Context], bytes]] = ...,
body: Union[IOBase, Callable[[_RequestObjectProxy, _Context], IOBase]] = ...,
raw: HTTPResponse = ...,
exc: Exception = ...,
additional_matcher: Optional[Callable[[_RequestObjectProxy], bool]] = ...,
**kwargs: Any) -> Response: ...
exc: Union[Exception, Type[Exception]] = ...,
additional_matcher: Callable[[_RequestObjectProxy], bool] = ...,
**kwargs: Any,
) -> _Matcher: ...

def request(
self,
method: Union[str, AnyMatcher],
Expand All @@ -74,9 +77,11 @@ class MockerCore:
content: Union[bytes, Callable[[_RequestObjectProxy, _Context], bytes]] = ...,
body: Union[IOBase, Callable[[_RequestObjectProxy, _Context], IOBase]] = ...,
raw: HTTPResponse = ...,
exc: Exception = ...,
additional_matcher: Optional[Callable[[_RequestObjectProxy], bool]] = ...,
**kwargs: Any) -> Response: ...
exc: Union[Exception, Type[Exception]] = ...,
additional_matcher: Callable[[_RequestObjectProxy], bool] = ...,
**kwargs: Any,
) -> _Matcher: ...

def get(
self,
url: Union[str, Pattern[str], AnyMatcher],
Expand All @@ -93,9 +98,11 @@ class MockerCore:
content: Union[bytes, Callable[[_RequestObjectProxy, _Context], bytes]] = ...,
body: Union[IOBase, Callable[[_RequestObjectProxy, _Context], IOBase]] = ...,
raw: HTTPResponse = ...,
exc: Exception = ...,
additional_matcher: Optional[Callable[[_RequestObjectProxy], bool]] = ...,
**kwargs: Any) -> Response: ...
exc: Union[Exception, Type[Exception]] = ...,
additional_matcher: Callable[[_RequestObjectProxy], bool] = ...,
**kwargs: Any,
) -> _Matcher: ...

def head(
self,
url: Union[str, Pattern[str], AnyMatcher],
Expand All @@ -112,9 +119,11 @@ class MockerCore:
content: Union[bytes, Callable[[_RequestObjectProxy, _Context], bytes]] = ...,
body: Union[IOBase, Callable[[_RequestObjectProxy, _Context], IOBase]] = ...,
raw: HTTPResponse = ...,
exc: Exception = ...,
additional_matcher: Optional[Callable[[_RequestObjectProxy], bool]] = ...,
**kwargs: Any) -> Response: ...
exc: Union[Exception, Type[Exception]] = ...,
additional_matcher: Callable[[_RequestObjectProxy], bool] = ...,
**kwargs: Any,
) -> _Matcher: ...

def options(
self,
url: Union[str, Pattern[str], AnyMatcher],
Expand All @@ -131,9 +140,11 @@ class MockerCore:
content: Union[bytes, Callable[[_RequestObjectProxy, _Context], bytes]] = ...,
body: Union[IOBase, Callable[[_RequestObjectProxy, _Context], IOBase]] = ...,
raw: HTTPResponse = ...,
exc: Exception = ...,
additional_matcher: Optional[Callable[[_RequestObjectProxy], bool]] = ...,
**kwargs: Any) -> Response: ...
exc: Union[Exception, Type[Exception]] = ...,
additional_matcher: Callable[[_RequestObjectProxy], bool] = ...,
**kwargs: Any,
) -> _Matcher: ...

def post(
self,
url: Union[str, Pattern[str], AnyMatcher],
Expand All @@ -150,9 +161,11 @@ class MockerCore:
content: Union[bytes, Callable[[_RequestObjectProxy, _Context], bytes]] = ...,
body: Union[IOBase, Callable[[_RequestObjectProxy, _Context], IOBase]] = ...,
raw: HTTPResponse = ...,
exc: Exception = ...,
additional_matcher: Optional[Callable[[_RequestObjectProxy], bool]] = ...,
**kwargs: Any) -> Response: ...
exc: Union[Exception, Type[Exception]] = ...,
additional_matcher: Callable[[_RequestObjectProxy], bool] = ...,
**kwargs: Any,
) -> _Matcher: ...

def put(
self,
url: Union[str, Pattern[str], AnyMatcher],
Expand All @@ -169,9 +182,11 @@ class MockerCore:
content: Union[bytes, Callable[[_RequestObjectProxy, _Context], bytes]] = ...,
body: Union[IOBase, Callable[[_RequestObjectProxy, _Context], IOBase]] = ...,
raw: HTTPResponse = ...,
exc: Exception = ...,
additional_matcher: Optional[Callable[[_RequestObjectProxy], bool]] = ...,
**kwargs: Any) -> Response: ...
exc: Union[Exception, Type[Exception]] = ...,
additional_matcher: Callable[[_RequestObjectProxy], bool] = ...,
**kwargs: Any,
) -> _Matcher: ...

def patch(
self,
url: Union[str, Pattern[str], AnyMatcher],
Expand All @@ -188,9 +203,11 @@ class MockerCore:
content: Union[bytes, Callable[[_RequestObjectProxy, _Context], bytes]] = ...,
body: Union[IOBase, Callable[[_RequestObjectProxy, _Context], IOBase]] = ...,
raw: HTTPResponse = ...,
exc: Exception = ...,
additional_matcher: Optional[Callable[[_RequestObjectProxy], bool]] = ...,
**kwargs: Any) -> Response: ...
exc: Union[Exception, Type[Exception]] = ...,
additional_matcher: Callable[[_RequestObjectProxy], bool] = ...,
**kwargs: Any,
) -> _Matcher: ...

def delete(
self,
url: Union[str, Pattern[str], AnyMatcher],
Expand All @@ -207,24 +224,30 @@ class MockerCore:
content: Union[bytes, Callable[[_RequestObjectProxy, _Context], bytes]] = ...,
body: Union[IOBase, Callable[[_RequestObjectProxy, _Context], IOBase]] = ...,
raw: HTTPResponse = ...,
exc: Exception = ...,
additional_matcher: Optional[Callable[[_RequestObjectProxy], bool]] = ...,
**kwargs: Any) -> Response: ...
exc: Union[Exception, Type[Exception]] = ...,
additional_matcher: Callable[[_RequestObjectProxy], bool] = ...,
**kwargs: Any,
) -> _Matcher: ...

_T = TypeVar('_T')

class Mocker(MockerCore):
TEST_PREFIX: str = ...
real_http: bool = ...

def __init__(
self,
kw: str = ...,
case_sensitive: bool = ...,
adapter: Any = ...,
real_http: bool = ...) -> None: ...
session: Optional[Session] = ...,
real_http: bool = ...) -> None:
...
def __enter__(self) -> Any: ...
def __exit__(self, type: Any, value: Any, traceback: Any) -> None: ...
def __call__(self, obj: Any) -> Any: ...
def copy(self) -> Mocker: ...
def decorate_callable(self, func: Callable[..., _T]) -> Callable[..., _T]: ...
def decorate_class(self, klass: Type[_T]) -> Type[_T]: ...

mock = Mocker
2 changes: 1 addition & 1 deletion requests_mock/request.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ class _RequestObjectProxy:
def text(self) -> str: ...
def json(self, **kwargs: Any) -> Any: ...
@property
def matcher(self) -> Any: ...
def matcher(self) -> Any: ...
2 changes: 2 additions & 0 deletions requests_mock/response.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ def create_response(request, **kwargs):
returned upon a successful match.
:param CookieJar cookies: A cookie jar with cookies to set on the
response.
:returns requests.Response: A response object that can be returned to requests.
"""
connection = kwargs.pop('connection', _FakeConnection())

Expand Down
22 changes: 15 additions & 7 deletions requests_mock/response.pyi
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Stubs for requests_mock.response

from typing import Any, Dict, Optional

import six

from requests import Request, Response
from requests.cookies import RequestsCookieJar
from typing import Any

class CookieJar(RequestsCookieJar):
def set(self, name: Any, value: Any, **kwargs: Any) -> Any: ...
Expand All @@ -14,15 +17,20 @@ class _FakeConnection:
class _IOReader(six.BytesIO):
def read(self, *args: Any, **kwargs: Any) -> Any: ...

def create_response(request: Any, **kwargs: Any) -> Any: ...
def create_response(request: Any, **kwargs: Any) -> Response: ...

class _Context:
headers: Any = ...
status_code: Any = ...
reason: Any = ...
headers: Dict[str,str] = ...
status_code: int = ...
reason: str = ...
cookies: Any = ...
def __init__(self, headers: Any, status_code: Any, reason: Any, cookies: Any) -> None: ...

def __init__(self,
headers: Dict[str, str],
status_code: int,
reason: str,
cookies: Any) -> None: ...

class _MatcherResponse:
def __init__(self, **kwargs: Any) -> None: ...
def get_response(self, request: Any) -> Any: ...
def get_response(self, request: Request) -> Response: ...
4 changes: 2 additions & 2 deletions tests/test_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
import pickle
import six

from requests_mock import adapter
from requests_mock import exceptions
from requests_mock import request
from requests_mock import response
from . import base

Expand All @@ -25,7 +25,7 @@ def setUp(self):
super(ResponseTests, self).setUp()
self.method = 'GET'
self.url = 'http://test.url/path'
self.request = adapter._RequestObjectProxy._create(self.method,
self.request = request._RequestObjectProxy._create(self.method,
self.url,
{})

Expand Down

0 comments on commit deb2f4a

Please sign in to comment.