Extend component root imports in tests (1) (#120122)

This commit is contained in:
Marc Mueller 2024-06-22 09:06:31 +02:00 committed by GitHub
parent 2e3aeae520
commit bd72637fec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 68 additions and 63 deletions

View file

@ -1,6 +1,6 @@
"""The tests for the Homematic notification platform.""" """The tests for the Homematic notification platform."""
import homeassistant.components.notify as notify_comp from homeassistant.components.notify import DOMAIN as NOTIFY_DOMAIN
from homeassistant.core import HomeAssistant from homeassistant.core import HomeAssistant
from homeassistant.setup import async_setup_component from homeassistant.setup import async_setup_component
@ -30,7 +30,7 @@ async def test_setup_full(hass: HomeAssistant) -> None:
} }
}, },
) )
assert handle_config[notify_comp.DOMAIN] assert handle_config[NOTIFY_DOMAIN]
async def test_setup_without_optional(hass: HomeAssistant) -> None: async def test_setup_without_optional(hass: HomeAssistant) -> None:
@ -55,12 +55,12 @@ async def test_setup_without_optional(hass: HomeAssistant) -> None:
} }
}, },
) )
assert handle_config[notify_comp.DOMAIN] assert handle_config[NOTIFY_DOMAIN]
async def test_bad_config(hass: HomeAssistant) -> None: async def test_bad_config(hass: HomeAssistant) -> None:
"""Test invalid configuration.""" """Test invalid configuration."""
config = {notify_comp.DOMAIN: {"name": "test", "platform": "homematic"}} config = {NOTIFY_DOMAIN: {"name": "test", "platform": "homematic"}}
with assert_setup_component(0, domain="notify") as handle_config: with assert_setup_component(0, domain="notify") as handle_config:
assert await async_setup_component(hass, notify_comp.DOMAIN, config) assert await async_setup_component(hass, NOTIFY_DOMAIN, config)
assert not handle_config[notify_comp.DOMAIN] assert not handle_config[NOTIFY_DOMAIN]

View file

@ -4,8 +4,8 @@ from unittest.mock import PropertyMock, patch
import pytest import pytest
import homeassistant.components.image_processing as ip from homeassistant.components.image_processing import DOMAIN as IP_DOMAIN
import homeassistant.components.microsoft_face as mf from homeassistant.components.microsoft_face import DOMAIN as MF_DOMAIN, FACE_API_URL
from homeassistant.const import ATTR_ENTITY_PICTURE from homeassistant.const import ATTR_ENTITY_PICTURE
from homeassistant.core import HomeAssistant, callback from homeassistant.core import HomeAssistant, callback
from homeassistant.setup import async_setup_component from homeassistant.setup import async_setup_component
@ -15,16 +15,16 @@ from tests.components.image_processing import common
from tests.test_util.aiohttp import AiohttpClientMocker from tests.test_util.aiohttp import AiohttpClientMocker
CONFIG = { CONFIG = {
ip.DOMAIN: { IP_DOMAIN: {
"platform": "microsoft_face_detect", "platform": "microsoft_face_detect",
"source": {"entity_id": "camera.demo_camera", "name": "test local"}, "source": {"entity_id": "camera.demo_camera", "name": "test local"},
"attributes": ["age", "gender"], "attributes": ["age", "gender"],
}, },
"camera": {"platform": "demo"}, "camera": {"platform": "demo"},
mf.DOMAIN: {"api_key": "12345678abcdef6"}, MF_DOMAIN: {"api_key": "12345678abcdef6"},
} }
ENDPOINT_URL = f"https://westus.{mf.FACE_API_URL}" ENDPOINT_URL = f"https://westus.{FACE_API_URL}"
@pytest.fixture(autouse=True) @pytest.fixture(autouse=True)
@ -57,17 +57,17 @@ def poll_mock():
async def test_setup_platform(hass: HomeAssistant, store_mock) -> None: async def test_setup_platform(hass: HomeAssistant, store_mock) -> None:
"""Set up platform with one entity.""" """Set up platform with one entity."""
config = { config = {
ip.DOMAIN: { IP_DOMAIN: {
"platform": "microsoft_face_detect", "platform": "microsoft_face_detect",
"source": {"entity_id": "camera.demo_camera"}, "source": {"entity_id": "camera.demo_camera"},
"attributes": ["age", "gender"], "attributes": ["age", "gender"],
}, },
"camera": {"platform": "demo"}, "camera": {"platform": "demo"},
mf.DOMAIN: {"api_key": "12345678abcdef6"}, MF_DOMAIN: {"api_key": "12345678abcdef6"},
} }
with assert_setup_component(1, ip.DOMAIN): with assert_setup_component(1, IP_DOMAIN):
await async_setup_component(hass, ip.DOMAIN, config) await async_setup_component(hass, IP_DOMAIN, config)
await hass.async_block_till_done() await hass.async_block_till_done()
assert hass.states.get("image_processing.microsoftface_demo_camera") assert hass.states.get("image_processing.microsoftface_demo_camera")
@ -76,16 +76,16 @@ async def test_setup_platform(hass: HomeAssistant, store_mock) -> None:
async def test_setup_platform_name(hass: HomeAssistant, store_mock) -> None: async def test_setup_platform_name(hass: HomeAssistant, store_mock) -> None:
"""Set up platform with one entity and set name.""" """Set up platform with one entity and set name."""
config = { config = {
ip.DOMAIN: { IP_DOMAIN: {
"platform": "microsoft_face_detect", "platform": "microsoft_face_detect",
"source": {"entity_id": "camera.demo_camera", "name": "test local"}, "source": {"entity_id": "camera.demo_camera", "name": "test local"},
}, },
"camera": {"platform": "demo"}, "camera": {"platform": "demo"},
mf.DOMAIN: {"api_key": "12345678abcdef6"}, MF_DOMAIN: {"api_key": "12345678abcdef6"},
} }
with assert_setup_component(1, ip.DOMAIN): with assert_setup_component(1, IP_DOMAIN):
await async_setup_component(hass, ip.DOMAIN, config) await async_setup_component(hass, IP_DOMAIN, config)
await hass.async_block_till_done() await hass.async_block_till_done()
assert hass.states.get("image_processing.test_local") assert hass.states.get("image_processing.test_local")
@ -108,7 +108,7 @@ async def test_ms_detect_process_image(
text=load_fixture("persons.json", "microsoft_face_detect"), text=load_fixture("persons.json", "microsoft_face_detect"),
) )
await async_setup_component(hass, ip.DOMAIN, CONFIG) await async_setup_component(hass, IP_DOMAIN, CONFIG)
await hass.async_block_till_done() await hass.async_block_till_done()
state = hass.states.get("camera.demo_camera") state = hass.states.get("camera.demo_camera")

View file

@ -4,8 +4,8 @@ from unittest.mock import PropertyMock, patch
import pytest import pytest
import homeassistant.components.image_processing as ip from homeassistant.components.image_processing import DOMAIN as IP_DOMAIN
import homeassistant.components.microsoft_face as mf from homeassistant.components.microsoft_face import DOMAIN as MF_DOMAIN, FACE_API_URL
from homeassistant.const import ATTR_ENTITY_PICTURE, STATE_UNKNOWN from homeassistant.const import ATTR_ENTITY_PICTURE, STATE_UNKNOWN
from homeassistant.core import HomeAssistant, callback from homeassistant.core import HomeAssistant, callback
from homeassistant.setup import async_setup_component from homeassistant.setup import async_setup_component
@ -43,32 +43,32 @@ def poll_mock():
CONFIG = { CONFIG = {
ip.DOMAIN: { IP_DOMAIN: {
"platform": "microsoft_face_identify", "platform": "microsoft_face_identify",
"source": {"entity_id": "camera.demo_camera", "name": "test local"}, "source": {"entity_id": "camera.demo_camera", "name": "test local"},
"group": "Test Group1", "group": "Test Group1",
}, },
"camera": {"platform": "demo"}, "camera": {"platform": "demo"},
mf.DOMAIN: {"api_key": "12345678abcdef6"}, MF_DOMAIN: {"api_key": "12345678abcdef6"},
} }
ENDPOINT_URL = f"https://westus.{mf.FACE_API_URL}" ENDPOINT_URL = f"https://westus.{FACE_API_URL}"
async def test_setup_platform(hass: HomeAssistant, store_mock) -> None: async def test_setup_platform(hass: HomeAssistant, store_mock) -> None:
"""Set up platform with one entity.""" """Set up platform with one entity."""
config = { config = {
ip.DOMAIN: { IP_DOMAIN: {
"platform": "microsoft_face_identify", "platform": "microsoft_face_identify",
"source": {"entity_id": "camera.demo_camera"}, "source": {"entity_id": "camera.demo_camera"},
"group": "Test Group1", "group": "Test Group1",
}, },
"camera": {"platform": "demo"}, "camera": {"platform": "demo"},
mf.DOMAIN: {"api_key": "12345678abcdef6"}, MF_DOMAIN: {"api_key": "12345678abcdef6"},
} }
with assert_setup_component(1, ip.DOMAIN): with assert_setup_component(1, IP_DOMAIN):
await async_setup_component(hass, ip.DOMAIN, config) await async_setup_component(hass, IP_DOMAIN, config)
await hass.async_block_till_done() await hass.async_block_till_done()
assert hass.states.get("image_processing.microsoftface_demo_camera") assert hass.states.get("image_processing.microsoftface_demo_camera")
@ -77,17 +77,17 @@ async def test_setup_platform(hass: HomeAssistant, store_mock) -> None:
async def test_setup_platform_name(hass: HomeAssistant, store_mock) -> None: async def test_setup_platform_name(hass: HomeAssistant, store_mock) -> None:
"""Set up platform with one entity and set name.""" """Set up platform with one entity and set name."""
config = { config = {
ip.DOMAIN: { IP_DOMAIN: {
"platform": "microsoft_face_identify", "platform": "microsoft_face_identify",
"source": {"entity_id": "camera.demo_camera", "name": "test local"}, "source": {"entity_id": "camera.demo_camera", "name": "test local"},
"group": "Test Group1", "group": "Test Group1",
}, },
"camera": {"platform": "demo"}, "camera": {"platform": "demo"},
mf.DOMAIN: {"api_key": "12345678abcdef6"}, MF_DOMAIN: {"api_key": "12345678abcdef6"},
} }
with assert_setup_component(1, ip.DOMAIN): with assert_setup_component(1, IP_DOMAIN):
await async_setup_component(hass, ip.DOMAIN, config) await async_setup_component(hass, IP_DOMAIN, config)
await hass.async_block_till_done() await hass.async_block_till_done()
assert hass.states.get("image_processing.test_local") assert hass.states.get("image_processing.test_local")
@ -110,7 +110,7 @@ async def test_ms_identify_process_image(
text=load_fixture("persons.json", "microsoft_face_identify"), text=load_fixture("persons.json", "microsoft_face_identify"),
) )
await async_setup_component(hass, ip.DOMAIN, CONFIG) await async_setup_component(hass, IP_DOMAIN, CONFIG)
await hass.async_block_till_done() await hass.async_block_till_done()
state = hass.states.get("camera.demo_camera") state = hass.states.get("camera.demo_camera")

View file

@ -1,7 +1,7 @@
"""The tests for the notify.persistent_notification service.""" """The tests for the notify.persistent_notification service."""
from homeassistant.components import notify from homeassistant.components import notify
import homeassistant.components.persistent_notification as pn from homeassistant.components.persistent_notification import DOMAIN as PN_DOMAIN
from homeassistant.core import HomeAssistant from homeassistant.core import HomeAssistant
from homeassistant.setup import async_setup_component from homeassistant.setup import async_setup_component
@ -10,7 +10,7 @@ from tests.common import async_get_persistent_notifications
async def test_async_send_message(hass: HomeAssistant) -> None: async def test_async_send_message(hass: HomeAssistant) -> None:
"""Test sending a message to notify.persistent_notification service.""" """Test sending a message to notify.persistent_notification service."""
await async_setup_component(hass, pn.DOMAIN, {"core": {}}) await async_setup_component(hass, PN_DOMAIN, {"core": {}})
await async_setup_component(hass, notify.DOMAIN, {}) await async_setup_component(hass, notify.DOMAIN, {})
await hass.async_block_till_done() await hass.async_block_till_done()
@ -30,7 +30,7 @@ async def test_async_send_message(hass: HomeAssistant) -> None:
async def test_async_supports_notification_id(hass: HomeAssistant) -> None: async def test_async_supports_notification_id(hass: HomeAssistant) -> None:
"""Test that notify.persistent_notification supports notification_id.""" """Test that notify.persistent_notification supports notification_id."""
await async_setup_component(hass, pn.DOMAIN, {"core": {}}) await async_setup_component(hass, PN_DOMAIN, {"core": {}})
await async_setup_component(hass, notify.DOMAIN, {}) await async_setup_component(hass, notify.DOMAIN, {})
await hass.async_block_till_done() await hass.async_block_till_done()

View file

@ -10,19 +10,24 @@ from PIL import UnidentifiedImageError
import pytest import pytest
import simplehound.core as hound import simplehound.core as hound
import homeassistant.components.image_processing as ip from homeassistant.components.image_processing import DOMAIN as IP_DOMAIN, SERVICE_SCAN
import homeassistant.components.sighthound.image_processing as sh import homeassistant.components.sighthound.image_processing as sh
from homeassistant.const import ATTR_ENTITY_ID, CONF_API_KEY from homeassistant.const import (
ATTR_ENTITY_ID,
CONF_API_KEY,
CONF_ENTITY_ID,
CONF_SOURCE,
)
from homeassistant.core import HomeAssistant, callback from homeassistant.core import HomeAssistant, callback
from homeassistant.setup import async_setup_component from homeassistant.setup import async_setup_component
TEST_DIR = os.path.dirname(__file__) TEST_DIR = os.path.dirname(__file__)
VALID_CONFIG = { VALID_CONFIG = {
ip.DOMAIN: { IP_DOMAIN: {
"platform": "sighthound", "platform": "sighthound",
CONF_API_KEY: "abc123", CONF_API_KEY: "abc123",
ip.CONF_SOURCE: {ip.CONF_ENTITY_ID: "camera.demo_camera"}, CONF_SOURCE: {CONF_ENTITY_ID: "camera.demo_camera"},
}, },
"camera": {"platform": "demo"}, "camera": {"platform": "demo"},
} }
@ -96,7 +101,7 @@ async def test_bad_api_key(
with mock.patch( with mock.patch(
"simplehound.core.cloud.detect", side_effect=hound.SimplehoundException "simplehound.core.cloud.detect", side_effect=hound.SimplehoundException
): ):
await async_setup_component(hass, ip.DOMAIN, VALID_CONFIG) await async_setup_component(hass, IP_DOMAIN, VALID_CONFIG)
await hass.async_block_till_done() await hass.async_block_till_done()
assert "Sighthound error" in caplog.text assert "Sighthound error" in caplog.text
assert not hass.states.get(VALID_ENTITY_ID) assert not hass.states.get(VALID_ENTITY_ID)
@ -104,14 +109,14 @@ async def test_bad_api_key(
async def test_setup_platform(hass: HomeAssistant, mock_detections) -> None: async def test_setup_platform(hass: HomeAssistant, mock_detections) -> None:
"""Set up platform with one entity.""" """Set up platform with one entity."""
await async_setup_component(hass, ip.DOMAIN, VALID_CONFIG) await async_setup_component(hass, IP_DOMAIN, VALID_CONFIG)
await hass.async_block_till_done() await hass.async_block_till_done()
assert hass.states.get(VALID_ENTITY_ID) assert hass.states.get(VALID_ENTITY_ID)
async def test_process_image(hass: HomeAssistant, mock_image, mock_detections) -> None: async def test_process_image(hass: HomeAssistant, mock_image, mock_detections) -> None:
"""Process an image.""" """Process an image."""
await async_setup_component(hass, ip.DOMAIN, VALID_CONFIG) await async_setup_component(hass, IP_DOMAIN, VALID_CONFIG)
await hass.async_block_till_done() await hass.async_block_till_done()
assert hass.states.get(VALID_ENTITY_ID) assert hass.states.get(VALID_ENTITY_ID)
@ -125,7 +130,7 @@ async def test_process_image(hass: HomeAssistant, mock_image, mock_detections) -
hass.bus.async_listen(sh.EVENT_PERSON_DETECTED, capture_person_event) hass.bus.async_listen(sh.EVENT_PERSON_DETECTED, capture_person_event)
data = {ATTR_ENTITY_ID: VALID_ENTITY_ID} data = {ATTR_ENTITY_ID: VALID_ENTITY_ID}
await hass.services.async_call(ip.DOMAIN, ip.SERVICE_SCAN, service_data=data) await hass.services.async_call(IP_DOMAIN, SERVICE_SCAN, service_data=data)
await hass.async_block_till_done() await hass.async_block_till_done()
state = hass.states.get(VALID_ENTITY_ID) state = hass.states.get(VALID_ENTITY_ID)
@ -142,13 +147,13 @@ async def test_catch_bad_image(
) -> None: ) -> None:
"""Process an image.""" """Process an image."""
valid_config_save_file = deepcopy(VALID_CONFIG) valid_config_save_file = deepcopy(VALID_CONFIG)
valid_config_save_file[ip.DOMAIN].update({sh.CONF_SAVE_FILE_FOLDER: TEST_DIR}) valid_config_save_file[IP_DOMAIN].update({sh.CONF_SAVE_FILE_FOLDER: TEST_DIR})
await async_setup_component(hass, ip.DOMAIN, valid_config_save_file) await async_setup_component(hass, IP_DOMAIN, valid_config_save_file)
await hass.async_block_till_done() await hass.async_block_till_done()
assert hass.states.get(VALID_ENTITY_ID) assert hass.states.get(VALID_ENTITY_ID)
data = {ATTR_ENTITY_ID: VALID_ENTITY_ID} data = {ATTR_ENTITY_ID: VALID_ENTITY_ID}
await hass.services.async_call(ip.DOMAIN, ip.SERVICE_SCAN, service_data=data) await hass.services.async_call(IP_DOMAIN, SERVICE_SCAN, service_data=data)
await hass.async_block_till_done() await hass.async_block_till_done()
assert "Sighthound unable to process image" in caplog.text assert "Sighthound unable to process image" in caplog.text
@ -156,8 +161,8 @@ async def test_catch_bad_image(
async def test_save_image(hass: HomeAssistant, mock_image, mock_detections) -> None: async def test_save_image(hass: HomeAssistant, mock_image, mock_detections) -> None:
"""Save a processed image.""" """Save a processed image."""
valid_config_save_file = deepcopy(VALID_CONFIG) valid_config_save_file = deepcopy(VALID_CONFIG)
valid_config_save_file[ip.DOMAIN].update({sh.CONF_SAVE_FILE_FOLDER: TEST_DIR}) valid_config_save_file[IP_DOMAIN].update({sh.CONF_SAVE_FILE_FOLDER: TEST_DIR})
await async_setup_component(hass, ip.DOMAIN, valid_config_save_file) await async_setup_component(hass, IP_DOMAIN, valid_config_save_file)
await hass.async_block_till_done() await hass.async_block_till_done()
assert hass.states.get(VALID_ENTITY_ID) assert hass.states.get(VALID_ENTITY_ID)
@ -167,7 +172,7 @@ async def test_save_image(hass: HomeAssistant, mock_image, mock_detections) -> N
pil_img = pil_img_open.return_value pil_img = pil_img_open.return_value
pil_img = pil_img.convert.return_value pil_img = pil_img.convert.return_value
data = {ATTR_ENTITY_ID: VALID_ENTITY_ID} data = {ATTR_ENTITY_ID: VALID_ENTITY_ID}
await hass.services.async_call(ip.DOMAIN, ip.SERVICE_SCAN, service_data=data) await hass.services.async_call(IP_DOMAIN, SERVICE_SCAN, service_data=data)
await hass.async_block_till_done() await hass.async_block_till_done()
state = hass.states.get(VALID_ENTITY_ID) state = hass.states.get(VALID_ENTITY_ID)
assert state.state == "2" assert state.state == "2"
@ -183,9 +188,9 @@ async def test_save_timestamped_image(
) -> None: ) -> None:
"""Save a processed image.""" """Save a processed image."""
valid_config_save_ts_file = deepcopy(VALID_CONFIG) valid_config_save_ts_file = deepcopy(VALID_CONFIG)
valid_config_save_ts_file[ip.DOMAIN].update({sh.CONF_SAVE_FILE_FOLDER: TEST_DIR}) valid_config_save_ts_file[IP_DOMAIN].update({sh.CONF_SAVE_FILE_FOLDER: TEST_DIR})
valid_config_save_ts_file[ip.DOMAIN].update({sh.CONF_SAVE_TIMESTAMPTED_FILE: True}) valid_config_save_ts_file[IP_DOMAIN].update({sh.CONF_SAVE_TIMESTAMPTED_FILE: True})
await async_setup_component(hass, ip.DOMAIN, valid_config_save_ts_file) await async_setup_component(hass, IP_DOMAIN, valid_config_save_ts_file)
await hass.async_block_till_done() await hass.async_block_till_done()
assert hass.states.get(VALID_ENTITY_ID) assert hass.states.get(VALID_ENTITY_ID)
@ -195,7 +200,7 @@ async def test_save_timestamped_image(
pil_img = pil_img_open.return_value pil_img = pil_img_open.return_value
pil_img = pil_img.convert.return_value pil_img = pil_img.convert.return_value
data = {ATTR_ENTITY_ID: VALID_ENTITY_ID} data = {ATTR_ENTITY_ID: VALID_ENTITY_ID}
await hass.services.async_call(ip.DOMAIN, ip.SERVICE_SCAN, service_data=data) await hass.services.async_call(IP_DOMAIN, SERVICE_SCAN, service_data=data)
await hass.async_block_till_done() await hass.async_block_till_done()
state = hass.states.get(VALID_ENTITY_ID) state = hass.states.get(VALID_ENTITY_ID)
assert state.state == "2" assert state.state == "2"

View file

@ -4,7 +4,7 @@ from unittest.mock import MagicMock, PropertyMock, call, patch
import pytest import pytest
import homeassistant.components.media_player as mp from homeassistant.components.media_player import DOMAIN as MP_DOMAIN
from homeassistant.components.yamaha import media_player as yamaha from homeassistant.components.yamaha import media_player as yamaha
from homeassistant.components.yamaha.const import DOMAIN from homeassistant.components.yamaha.const import DOMAIN
from homeassistant.core import HomeAssistant from homeassistant.core import HomeAssistant
@ -52,7 +52,7 @@ def device_fixture(main_zone):
async def test_setup_host(hass: HomeAssistant, device, main_zone) -> None: async def test_setup_host(hass: HomeAssistant, device, main_zone) -> None:
"""Test set up integration with host.""" """Test set up integration with host."""
assert await async_setup_component(hass, mp.DOMAIN, CONFIG) assert await async_setup_component(hass, MP_DOMAIN, CONFIG)
await hass.async_block_till_done() await hass.async_block_till_done()
state = hass.states.get("media_player.yamaha_receiver_main_zone") state = hass.states.get("media_player.yamaha_receiver_main_zone")
@ -65,7 +65,7 @@ async def test_setup_no_host(hass: HomeAssistant, device, main_zone) -> None:
"""Test set up integration without host.""" """Test set up integration without host."""
with patch("rxv.find", return_value=[device]): with patch("rxv.find", return_value=[device]):
assert await async_setup_component( assert await async_setup_component(
hass, mp.DOMAIN, {"media_player": {"platform": "yamaha"}} hass, MP_DOMAIN, {"media_player": {"platform": "yamaha"}}
) )
await hass.async_block_till_done() await hass.async_block_till_done()
@ -84,7 +84,7 @@ async def test_setup_discovery(hass: HomeAssistant, device, main_zone) -> None:
"description_url": "http://receiver/description", "description_url": "http://receiver/description",
} }
await async_load_platform( await async_load_platform(
hass, mp.DOMAIN, "yamaha", discovery_info, {mp.DOMAIN: {}} hass, MP_DOMAIN, "yamaha", discovery_info, {MP_DOMAIN: {}}
) )
await hass.async_block_till_done() await hass.async_block_till_done()
@ -98,7 +98,7 @@ async def test_setup_zone_ignore(hass: HomeAssistant, device, main_zone) -> None
"""Test set up integration without host.""" """Test set up integration without host."""
assert await async_setup_component( assert await async_setup_component(
hass, hass,
mp.DOMAIN, MP_DOMAIN,
{ {
"media_player": { "media_player": {
"platform": "yamaha", "platform": "yamaha",
@ -116,7 +116,7 @@ async def test_setup_zone_ignore(hass: HomeAssistant, device, main_zone) -> None
async def test_enable_output(hass: HomeAssistant, device, main_zone) -> None: async def test_enable_output(hass: HomeAssistant, device, main_zone) -> None:
"""Test enable output service.""" """Test enable output service."""
assert await async_setup_component(hass, mp.DOMAIN, CONFIG) assert await async_setup_component(hass, MP_DOMAIN, CONFIG)
await hass.async_block_till_done() await hass.async_block_till_done()
port = "hdmi1" port = "hdmi1"
@ -147,7 +147,7 @@ async def test_enable_output(hass: HomeAssistant, device, main_zone) -> None:
@pytest.mark.usefixtures("device") @pytest.mark.usefixtures("device")
async def test_menu_cursor(hass: HomeAssistant, main_zone, cursor, method) -> None: async def test_menu_cursor(hass: HomeAssistant, main_zone, cursor, method) -> None:
"""Verify that the correct menu method is called for the menu_cursor service.""" """Verify that the correct menu method is called for the menu_cursor service."""
assert await async_setup_component(hass, mp.DOMAIN, CONFIG) assert await async_setup_component(hass, MP_DOMAIN, CONFIG)
await hass.async_block_till_done() await hass.async_block_till_done()
data = { data = {
@ -166,7 +166,7 @@ async def test_select_scene(
scene_prop = PropertyMock(return_value=None) scene_prop = PropertyMock(return_value=None)
type(main_zone).scene = scene_prop type(main_zone).scene = scene_prop
assert await async_setup_component(hass, mp.DOMAIN, CONFIG) assert await async_setup_component(hass, MP_DOMAIN, CONFIG)
await hass.async_block_till_done() await hass.async_block_till_done()
scene = "TV Viewing" scene = "TV Viewing"