aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/requests-mock/py3/requests_mock/mocker.pyi
diff options
context:
space:
mode:
authorshadchin <shadchin@yandex-team.com>2024-03-04 21:16:16 +0300
committershadchin <shadchin@yandex-team.com>2024-03-04 21:43:39 +0300
commit74819c4157bd388a7d429c870ea4b343a282dafa (patch)
tree4bff355b03dfb24b14d33581357cc8e624d170fd /contrib/python/requests-mock/py3/requests_mock/mocker.pyi
parentf64c28a5443395e3a8f27e6f1b15a3507812d2de (diff)
downloadydb-74819c4157bd388a7d429c870ea4b343a282dafa.tar.gz
Extend support pyi files
Сейчас pyi файлы в макросе PY_SRCS используются исключительно в Arcadia плагине для продуктов JB, при сборке эти файлы просто игнорируются. В этом PR добавил шаг, который будет содержимое этих файлов складывать в ресурсы, секция PY_SRCS удобна тем, что позволяет раскладывать pyi файлы с учетом TOP_LEVEL/NAMESPACE, а это необходимо для правильной работы mypy. 3924b0556bc99947e6893cd79e5ce62ec72a18a9
Diffstat (limited to 'contrib/python/requests-mock/py3/requests_mock/mocker.pyi')
-rw-r--r--contrib/python/requests-mock/py3/requests_mock/mocker.pyi263
1 files changed, 263 insertions, 0 deletions
diff --git a/contrib/python/requests-mock/py3/requests_mock/mocker.pyi b/contrib/python/requests-mock/py3/requests_mock/mocker.pyi
new file mode 100644
index 0000000000..891e7d6c9a
--- /dev/null
+++ b/contrib/python/requests-mock/py3/requests_mock/mocker.pyi
@@ -0,0 +1,263 @@
+# Stubs for requests_mock.mocker
+
+from json import JSONEncoder
+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, Session
+from urllib3.response import HTTPResponse
+
+from requests_mock.adapter import AnyMatcher, _Matcher, Callback, AdditionalMatcher
+from requests_mock.request import Request
+
+DELETE: str
+GET: str
+HEAD: str
+OPTIONS: str
+PATCH: str
+POST: str
+PUT: str
+
+class MockerCore:
+ case_sensitive: bool = ...
+ def __init__(self, **kwargs: Any) -> None: ...
+ def start(self) -> None: ...
+ def stop(self) -> None: ...
+ def add_matcher(self, matcher: Callable[[Request], Optional[Response]]) -> None: ...
+ @property
+ def request_history(self) -> List[Request]: ...
+ @property
+ def last_request(self) -> Optional[Request]: ...
+ @property
+ def called(self) -> bool: ...
+ @property
+ def called_once(self) -> bool: ...
+ @property
+ def call_count(self) -> int: ...
+ def reset(self) -> None: ...
+ def reset_mock(self) -> None: ...
+
+ def register_uri(
+ self,
+ method: Union[str, AnyMatcher],
+ url: Union[str, Pattern[str], AnyMatcher],
+ response_list: Optional[List[Dict[str, Any]]] = ...,
+ *,
+ request_headers: Dict[str, str] = ...,
+ complete_qs: bool = ...,
+ status_code: int = ...,
+ reason: str = ...,
+ headers: Dict[str, str] = ...,
+ cookies: Union[CookieJar, Dict[str, str]] = ...,
+ json: Union[Any, Callback[Any]] = ...,
+ text: Union[str, Callback[str]] = ...,
+ content: Union[bytes, Callback[bytes]] = ...,
+ body: Union[IOBase, Callback[IOBase]] = ...,
+ raw: HTTPResponse = ...,
+ exc: Union[Exception, Type[Exception]] = ...,
+ additional_matcher: AdditionalMatcher = ...,
+ json_encoder: Optional[Type[JSONEncoder]] = ...,
+ **kwargs: Any,
+ ) -> _Matcher: ...
+
+ def request(
+ self,
+ method: Union[str, AnyMatcher],
+ url: Union[str, Pattern[str], AnyMatcher],
+ response_list: Optional[List[Dict[str, Any]]] = ...,
+ *,
+ request_headers: Dict[str, str] = ...,
+ complete_qs: bool = ...,
+ status_code: int = ...,
+ reason: str = ...,
+ headers: Dict[str, str] = ...,
+ cookies: Union[CookieJar, Dict[str, str]] = ...,
+ json: Union[Any, Callback[Any]] = ...,
+ text: Union[str, Callback[str]] = ...,
+ content: Union[bytes, Callback[bytes]] = ...,
+ body: Union[IOBase, Callback[IOBase]] = ...,
+ raw: HTTPResponse = ...,
+ exc: Union[Exception, Type[Exception]] = ...,
+ additional_matcher: AdditionalMatcher = ...,
+ json_encoder: Optional[Type[JSONEncoder]] = ...,
+ **kwargs: Any,
+ ) -> _Matcher: ...
+
+ def get(
+ self,
+ url: Union[str, Pattern[str], AnyMatcher],
+ response_list: Optional[List[Dict[str, Any]]] = ...,
+ *,
+ request_headers: Dict[str, str] = ...,
+ complete_qs: bool = ...,
+ status_code: int = ...,
+ reason: str = ...,
+ headers: Dict[str, str] = ...,
+ cookies: Union[CookieJar, Dict[str, str]] = ...,
+ json: Union[Any, Callback[Any]] = ...,
+ text: Union[str, Callback[str]] = ...,
+ content: Union[bytes, Callback[bytes]] = ...,
+ body: Union[IOBase, Callback[IOBase]] = ...,
+ raw: HTTPResponse = ...,
+ exc: Union[Exception, Type[Exception]] = ...,
+ additional_matcher: AdditionalMatcher = ...,
+ json_encoder: Optional[Type[JSONEncoder]] = ...,
+ **kwargs: Any,
+ ) -> _Matcher: ...
+
+ def head(
+ self,
+ url: Union[str, Pattern[str], AnyMatcher],
+ response_list: Optional[List[Dict[str, Any]]] = ...,
+ *,
+ request_headers: Dict[str, str] = ...,
+ complete_qs: bool = ...,
+ status_code: int = ...,
+ reason: str = ...,
+ headers: Dict[str, str] = ...,
+ cookies: Union[CookieJar, Dict[str, str]] = ...,
+ json: Union[Any, Callback[Any]] = ...,
+ text: Union[str, Callback[str]] = ...,
+ content: Union[bytes, Callback[bytes]] = ...,
+ body: Union[IOBase, Callback[IOBase]] = ...,
+ raw: HTTPResponse = ...,
+ exc: Union[Exception, Type[Exception]] = ...,
+ additional_matcher: AdditionalMatcher = ...,
+ json_encoder: Optional[Type[JSONEncoder]] = ...,
+ **kwargs: Any,
+ ) -> _Matcher: ...
+
+ def options(
+ self,
+ url: Union[str, Pattern[str], AnyMatcher],
+ response_list: Optional[List[Dict[str, Any]]] = ...,
+ *,
+ request_headers: Dict[str, str] = ...,
+ complete_qs: bool = ...,
+ status_code: int = ...,
+ reason: str = ...,
+ headers: Dict[str, str] = ...,
+ cookies: Union[CookieJar, Dict[str, str]] = ...,
+ json: Union[Any, Callback[Any]] = ...,
+ text: Union[str, Callback[str]] = ...,
+ content: Union[bytes, Callback[bytes]] = ...,
+ body: Union[IOBase, Callback[IOBase]] = ...,
+ raw: HTTPResponse = ...,
+ exc: Union[Exception, Type[Exception]] = ...,
+ additional_matcher: AdditionalMatcher = ...,
+ json_encoder: Optional[Type[JSONEncoder]] = ...,
+ **kwargs: Any,
+ ) -> _Matcher: ...
+
+ def post(
+ self,
+ url: Union[str, Pattern[str], AnyMatcher],
+ response_list: Optional[List[Dict[str, Any]]] = ...,
+ *,
+ request_headers: Dict[str, str] = ...,
+ complete_qs: bool = ...,
+ status_code: int = ...,
+ reason: str = ...,
+ headers: Dict[str, str] = ...,
+ cookies: Union[CookieJar, Dict[str, str]] = ...,
+ json: Union[Any, Callback[Any]] = ...,
+ text: Union[str, Callback[str]] = ...,
+ content: Union[bytes, Callback[bytes]] = ...,
+ body: Union[IOBase, Callback[IOBase]] = ...,
+ raw: HTTPResponse = ...,
+ exc: Union[Exception, Type[Exception]] = ...,
+ additional_matcher: AdditionalMatcher = ...,
+ json_encoder: Optional[Type[JSONEncoder]] = ...,
+ **kwargs: Any,
+ ) -> _Matcher: ...
+
+ def put(
+ self,
+ url: Union[str, Pattern[str], AnyMatcher],
+ response_list: Optional[List[Dict[str, Any]]] = ...,
+ *,
+ request_headers: Dict[str, str] = ...,
+ complete_qs: bool = ...,
+ status_code: int = ...,
+ reason: str = ...,
+ headers: Dict[str, str] = ...,
+ cookies: Union[CookieJar, Dict[str, str]] = ...,
+ json: Union[Any, Callback[Any]] = ...,
+ text: Union[str, Callback[str]] = ...,
+ content: Union[bytes, Callback[bytes]] = ...,
+ body: Union[IOBase, Callback[IOBase]] = ...,
+ raw: HTTPResponse = ...,
+ exc: Union[Exception, Type[Exception]] = ...,
+ additional_matcher: AdditionalMatcher = ...,
+ json_encoder: Optional[Type[JSONEncoder]] = ...,
+ **kwargs: Any,
+ ) -> _Matcher: ...
+
+ def patch(
+ self,
+ url: Union[str, Pattern[str], AnyMatcher],
+ response_list: Optional[List[Dict[str, Any]]] = ...,
+ *,
+ request_headers: Dict[str, str] = ...,
+ complete_qs: bool = ...,
+ status_code: int = ...,
+ reason: str = ...,
+ headers: Dict[str, str] = ...,
+ cookies: Union[CookieJar, Dict[str, str]] = ...,
+ json: Union[Any, Callback[Any]] = ...,
+ text: Union[str, Callback[str]] = ...,
+ content: Union[bytes, Callback[bytes]] = ...,
+ body: Union[IOBase, Callback[IOBase]] = ...,
+ raw: HTTPResponse = ...,
+ exc: Union[Exception, Type[Exception]] = ...,
+ additional_matcher: AdditionalMatcher = ...,
+ json_encoder: Optional[Type[JSONEncoder]] = ...,
+ **kwargs: Any,
+ ) -> _Matcher: ...
+
+ def delete(
+ self,
+ url: Union[str, Pattern[str], AnyMatcher],
+ response_list: Optional[List[Dict[str, Any]]] = ...,
+ *,
+ request_headers: Dict[str, str] = ...,
+ complete_qs: bool = ...,
+ status_code: int = ...,
+ reason: str = ...,
+ headers: Dict[str, str] = ...,
+ cookies: Union[CookieJar, Dict[str, str]] = ...,
+ json: Union[Any, Callback[Any]] = ...,
+ text: Union[str, Callback[str]] = ...,
+ content: Union[bytes, Callback[bytes]] = ...,
+ body: Union[IOBase, Callback[IOBase]] = ...,
+ raw: HTTPResponse = ...,
+ exc: Union[Exception, Type[Exception]] = ...,
+ additional_matcher: AdditionalMatcher = ...,
+ json_encoder: Optional[Type[JSONEncoder]] = ...,
+ **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 = ...,
+ session: Optional[Session] = ...,
+ real_http: bool = ...,
+ json_encoder: Optional[Type[JSONEncoder]] = ...,
+ ) -> 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