massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Flask / flask / testing.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Flask/flask/testing.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Flask/flask/testing.pyi
new file mode 100644 (file)
index 0000000..053c4dd
--- /dev/null
@@ -0,0 +1,56 @@
+from typing import IO, Any, Iterable, Mapping, Text, TypeVar
+
+from click import BaseCommand
+from click.testing import CliRunner, Result
+from werkzeug.test import Client, EnvironBuilder as WerkzeugEnvironBuilder
+
+# Response type for the client below.
+# By default _R is Tuple[Iterable[Any], Text | int, werkzeug.datastructures.Headers], however
+# most commonly it is wrapped in a Response object.
+_R = TypeVar("_R")
+
+class FlaskClient(Client[_R]):
+    preserve_context: bool = ...
+    environ_base: Any = ...
+    def __init__(self, *args: Any, **kwargs: Any) -> None: ...
+    def session_transaction(self, *args: Any, **kwargs: Any) -> None: ...
+    def __enter__(self): ...
+    def __exit__(self, exc_type: Any, exc_value: Any, tb: Any) -> None: ...
+
+class FlaskCliRunner(CliRunner):
+    app: Any = ...
+    def __init__(self, app: Any, **kwargs: Any) -> None: ...
+    def invoke(
+        self,
+        cli: BaseCommand | None = ...,
+        args: str | Iterable[str] | None = ...,
+        input: bytes | IO[Any] | Text | None = ...,
+        env: Mapping[str, str] | None = ...,
+        catch_exceptions: bool = ...,
+        color: bool = ...,
+        **extra: Any,
+    ) -> Result: ...
+
+class EnvironBuilder(WerkzeugEnvironBuilder):
+    app: Any
+    def __init__(
+        self,
+        app: Any,
+        path: str = ...,
+        base_url: Any | None = ...,
+        subdomain: Any | None = ...,
+        url_scheme: Any | None = ...,
+        *args: Any,
+        **kwargs: Any,
+    ) -> None: ...
+    def json_dumps(self, obj: Any, **kwargs: Any) -> str: ...
+
+def make_test_environ_builder(
+    app: Any,
+    path: str = ...,
+    base_url: Any | None = ...,
+    subdomain: Any | None = ...,
+    url_scheme: Any | None = ...,
+    *args: Any,
+    **kwargs: Any,
+): ...