From 8bca9a3449b019924b3f5936a21693984955256a Mon Sep 17 00:00:00 2001
From: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
Date: Fri, 19 Jul 2024 16:44:03 +0200
Subject: [PATCH] Fix return type annotations in tests (#122184)

---
 .../components/device_sun_light_trigger/test_init.py  | 11 ++++++-----
 tests/components/doorbird/conftest.py                 |  8 +++++---
 tests/components/doorbird/test_button.py              | 11 ++++-------
 tests/components/doorbird/test_init.py                |  9 +++------
 tests/components/homeassistant_hardware/conftest.py   |  2 +-
 tests/components/homeassistant_yellow/conftest.py     |  2 +-
 tests/components/improv_ble/test_config_flow.py       |  2 +-
 tests/components/screenlogic/__init__.py              |  2 +-
 tests/test_core.py                                    |  2 +-
 9 files changed, 23 insertions(+), 26 deletions(-)

diff --git a/tests/components/device_sun_light_trigger/test_init.py b/tests/components/device_sun_light_trigger/test_init.py
index 65afd5743f5..f3821eb5af9 100644
--- a/tests/components/device_sun_light_trigger/test_init.py
+++ b/tests/components/device_sun_light_trigger/test_init.py
@@ -77,11 +77,10 @@ async def scanner(
     )
     await hass.async_block_till_done()
 
-    return scanner
-
 
+@pytest.mark.usefixtures("scanner")
 async def test_lights_on_when_sun_sets(
-    hass: HomeAssistant, freezer: FrozenDateTimeFactory, scanner
+    hass: HomeAssistant, freezer: FrozenDateTimeFactory
 ) -> None:
     """Test lights go on when there is someone home and the sun sets."""
     test_time = datetime(2017, 4, 5, 1, 2, 3, tzinfo=dt_util.UTC)
@@ -136,8 +135,9 @@ async def test_lights_turn_off_when_everyone_leaves(hass: HomeAssistant) -> None
     )
 
 
+@pytest.mark.usefixtures("scanner")
 async def test_lights_turn_on_when_coming_home_after_sun_set(
-    hass: HomeAssistant, freezer: FrozenDateTimeFactory, scanner
+    hass: HomeAssistant, freezer: FrozenDateTimeFactory
 ) -> None:
     """Test lights turn on when coming home after sun set."""
     test_time = datetime(2017, 4, 5, 3, 2, 3, tzinfo=dt_util.UTC)
@@ -172,8 +172,9 @@ async def test_lights_turn_on_when_coming_home_after_sun_set(
     )
 
 
+@pytest.mark.usefixtures("scanner")
 async def test_lights_turn_on_when_coming_home_after_sun_set_person(
-    hass: HomeAssistant, freezer: FrozenDateTimeFactory, scanner
+    hass: HomeAssistant, freezer: FrozenDateTimeFactory
 ) -> None:
     """Test lights turn on when coming home after sun set."""
     device_1 = f"{DOMAIN}.device_1"
diff --git a/tests/components/doorbird/conftest.py b/tests/components/doorbird/conftest.py
index dbd72a0bac9..98dbec18b4c 100644
--- a/tests/components/doorbird/conftest.py
+++ b/tests/components/doorbird/conftest.py
@@ -1,6 +1,6 @@
 """Test configuration for DoorBird tests."""
 
-from collections.abc import Generator
+from collections.abc import Callable, Coroutine, Generator
 from contextlib import contextmanager
 from dataclasses import dataclass
 from typing import Any
@@ -16,6 +16,8 @@ from . import VALID_CONFIG, get_mock_doorbird_api
 
 from tests.common import MockConfigEntry, load_json_value_fixture
 
+type DoorbirdMockerType = Callable[[], Coroutine[Any, Any, MockDoorbirdEntry]]
+
 
 @dataclass
 class MockDoorbirdEntry:
@@ -70,7 +72,7 @@ async def doorbird_mocker(
     hass: HomeAssistant,
     doorbird_info: dict[str, Any],
     doorbird_schedule: dict[str, Any],
-) -> MockDoorbirdEntry:
+) -> DoorbirdMockerType:
     """Create a MockDoorbirdEntry."""
 
     async def _async_mock(
@@ -79,7 +81,7 @@ async def doorbird_mocker(
         info: dict[str, Any] | None = None,
         info_side_effect: Exception | None = None,
         schedule: list[DoorBirdScheduleEntry] | None = None,
-    ) -> None:
+    ) -> MockDoorbirdEntry:
         """Create a MockDoorbirdEntry from defaults or specific values."""
         entry = entry or MockConfigEntry(
             domain=DOMAIN,
diff --git a/tests/components/doorbird/test_button.py b/tests/components/doorbird/test_button.py
index 7d1f987017b..fc10362a077 100644
--- a/tests/components/doorbird/test_button.py
+++ b/tests/components/doorbird/test_button.py
@@ -1,18 +1,15 @@
 """Test DoorBird buttons."""
 
-from collections.abc import Callable, Coroutine
-from typing import Any
-
 from homeassistant.components.button import DOMAIN, SERVICE_PRESS
 from homeassistant.const import ATTR_ENTITY_ID, STATE_UNKNOWN
 from homeassistant.core import HomeAssistant
 
-from .conftest import MockDoorbirdEntry
+from .conftest import DoorbirdMockerType
 
 
 async def test_relay_button(
     hass: HomeAssistant,
-    doorbird_mocker: Callable[[], Coroutine[Any, Any, MockDoorbirdEntry]],
+    doorbird_mocker: DoorbirdMockerType,
 ) -> None:
     """Test pressing a relay button."""
     doorbird_entry = await doorbird_mocker()
@@ -27,7 +24,7 @@ async def test_relay_button(
 
 async def test_ir_button(
     hass: HomeAssistant,
-    doorbird_mocker: Callable[[], Coroutine[Any, Any, MockDoorbirdEntry]],
+    doorbird_mocker: DoorbirdMockerType,
 ) -> None:
     """Test pressing the IR button."""
     doorbird_entry = await doorbird_mocker()
@@ -42,7 +39,7 @@ async def test_ir_button(
 
 async def test_reset_favorites_button(
     hass: HomeAssistant,
-    doorbird_mocker: Callable[[], Coroutine[Any, Any, MockDoorbirdEntry]],
+    doorbird_mocker: DoorbirdMockerType,
 ) -> None:
     """Test pressing the reset favorites button."""
     doorbird_entry = await doorbird_mocker()
diff --git a/tests/components/doorbird/test_init.py b/tests/components/doorbird/test_init.py
index 5263a1db389..6bbf694dd7c 100644
--- a/tests/components/doorbird/test_init.py
+++ b/tests/components/doorbird/test_init.py
@@ -1,18 +1,15 @@
 """Test DoorBird init."""
 
-from collections.abc import Callable, Coroutine
-from typing import Any
-
 from homeassistant.components.doorbird.const import DOMAIN
 from homeassistant.config_entries import ConfigEntryState
 from homeassistant.core import HomeAssistant
 
 from . import mock_unauthorized_exception
-from .conftest import MockDoorbirdEntry
+from .conftest import DoorbirdMockerType
 
 
 async def test_basic_setup(
-    doorbird_mocker: Callable[[], Coroutine[Any, Any, MockDoorbirdEntry]],
+    doorbird_mocker: DoorbirdMockerType,
 ) -> None:
     """Test basic setup."""
     doorbird_entry = await doorbird_mocker()
@@ -22,7 +19,7 @@ async def test_basic_setup(
 
 async def test_auth_fails(
     hass: HomeAssistant,
-    doorbird_mocker: Callable[[], Coroutine[Any, Any, MockDoorbirdEntry]],
+    doorbird_mocker: DoorbirdMockerType,
 ) -> None:
     """Test basic setup with an auth failure."""
     doorbird_entry = await doorbird_mocker(
diff --git a/tests/components/homeassistant_hardware/conftest.py b/tests/components/homeassistant_hardware/conftest.py
index d3dcd443a07..b62ccaf855b 100644
--- a/tests/components/homeassistant_hardware/conftest.py
+++ b/tests/components/homeassistant_hardware/conftest.py
@@ -11,7 +11,7 @@ import pytest
 def mock_zha_config_flow_setup() -> Generator[None]:
     """Mock the radio connection and probing of the ZHA config flow."""
 
-    def mock_probe(config: dict[str, Any]) -> None:
+    def mock_probe(config: dict[str, Any]) -> dict[str, Any]:
         # The radio probing will return the correct baudrate
         return {**config, "baudrate": 115200}
 
diff --git a/tests/components/homeassistant_yellow/conftest.py b/tests/components/homeassistant_yellow/conftest.py
index 2e6340bf54a..0077fb27058 100644
--- a/tests/components/homeassistant_yellow/conftest.py
+++ b/tests/components/homeassistant_yellow/conftest.py
@@ -11,7 +11,7 @@ import pytest
 def mock_zha_config_flow_setup() -> Generator[None]:
     """Mock the radio connection and probing of the ZHA config flow."""
 
-    def mock_probe(config: dict[str, Any]) -> None:
+    def mock_probe(config: dict[str, Any]) -> dict[str, Any]:
         # The radio probing will return the correct baudrate
         return {**config, "baudrate": 115200}
 
diff --git a/tests/components/improv_ble/test_config_flow.py b/tests/components/improv_ble/test_config_flow.py
index 53da1f28425..640a931bee5 100644
--- a/tests/components/improv_ble/test_config_flow.py
+++ b/tests/components/improv_ble/test_config_flow.py
@@ -543,7 +543,7 @@ async def test_authorize_fails(hass: HomeAssistant, exc, error) -> None:
     assert result["reason"] == error
 
 
-async def _test_provision_error(hass: HomeAssistant, exc) -> None:
+async def _test_provision_error(hass: HomeAssistant, exc) -> str:
     """Test bluetooth flow with error."""
     result = await hass.config_entries.flow.async_init(
         DOMAIN,
diff --git a/tests/components/screenlogic/__init__.py b/tests/components/screenlogic/__init__.py
index 9c8a21b1ba4..169c1f28900 100644
--- a/tests/components/screenlogic/__init__.py
+++ b/tests/components/screenlogic/__init__.py
@@ -20,7 +20,7 @@ GATEWAY_IMPORT_PATH = "homeassistant.components.screenlogic.ScreenLogicGateway"
 GATEWAY_DISCOVERY_IMPORT_PATH = "homeassistant.components.screenlogic.coordinator.async_discover_gateways_by_unique_id"
 
 
-def num_key_string_to_int(data: dict) -> None:
+def num_key_string_to_int(data: dict) -> dict:
     """Convert all string number dict keys to integer.
 
     This needed for screenlogicpy's data dict format.
diff --git a/tests/test_core.py b/tests/test_core.py
index 14bde940c12..671b9fe400b 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -3231,7 +3231,7 @@ async def test_async_add_import_executor_job(hass: HomeAssistant) -> None:
     evt = threading.Event()
     loop = asyncio.get_running_loop()
 
-    def executor_func() -> None:
+    def executor_func() -> threading.Event:
         evt.set()
         return evt
 
-- 
GitLab