Use mock_restore_cache in mqtt tests (#77297)

This commit is contained in:
Erik Montnemery 2022-08-25 09:27:38 +02:00 committed by GitHub
parent cef6ffb552
commit c55505b47b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 152 additions and 170 deletions

View file

@ -53,6 +53,7 @@ from tests.common import (
assert_setup_component, assert_setup_component,
async_fire_mqtt_message, async_fire_mqtt_message,
async_fire_time_changed, async_fire_time_changed,
mock_restore_cache,
) )
DEFAULT_CONFIG = { DEFAULT_CONFIG = {
@ -1062,10 +1063,9 @@ async def test_skip_restoring_state_with_over_due_expire_trigger(
{}, {},
last_changed=datetime.fromisoformat("2022-02-02 12:01:35+01:00"), last_changed=datetime.fromisoformat("2022-02-02 12:01:35+01:00"),
) )
with patch( mock_restore_cache(hass, (fake_state,))
"homeassistant.helpers.restore_state.RestoreEntity.async_get_last_state",
return_value=fake_state, with assert_setup_component(1, domain):
), assert_setup_component(1, domain):
assert await async_setup_component(hass, domain, {domain: config3}) assert await async_setup_component(hass, domain, {domain: config3})
await hass.async_block_till_done() await hass.async_block_till_done()
await mqtt_mock_entry_with_yaml_config() await mqtt_mock_entry_with_yaml_config()

View file

@ -43,6 +43,7 @@ from tests.common import (
async_fire_time_changed, async_fire_time_changed,
mock_device_registry, mock_device_registry,
mock_registry, mock_registry,
mock_restore_cache,
) )
from tests.testing_config.custom_components.test.sensor import DEVICE_CLASSES from tests.testing_config.custom_components.test.sensor import DEVICE_CLASSES
@ -284,12 +285,9 @@ async def test_command_template_variables(hass, mqtt_mock_entry_with_yaml_config
"""Test the rendering of entity variables.""" """Test the rendering of entity variables."""
topic = "test/select" topic = "test/select"
fake_state = ha.State("select.test", "milk") fake_state = ha.State("select.test_select", "milk")
mock_restore_cache(hass, (fake_state,))
with patch(
"homeassistant.helpers.restore_state.RestoreEntity.async_get_last_state",
return_value=fake_state,
):
assert await async_setup_component( assert await async_setup_component(
hass, hass,
"select", "select",

View file

@ -226,7 +226,11 @@ from .test_common import (
help_test_update_with_json_attrs_not_dict, help_test_update_with_json_attrs_not_dict,
) )
from tests.common import assert_setup_component, async_fire_mqtt_message from tests.common import (
assert_setup_component,
async_fire_mqtt_message,
mock_restore_cache,
)
from tests.components.light import common from tests.components.light import common
DEFAULT_CONFIG = { DEFAULT_CONFIG = {
@ -792,10 +796,9 @@ async def test_sending_mqtt_commands_and_optimistic(
"color_mode": "hs", "color_mode": "hs",
}, },
) )
with patch( mock_restore_cache(hass, (fake_state,))
"homeassistant.helpers.restore_state.RestoreEntity.async_get_last_state",
return_value=fake_state, with assert_setup_component(1, light.DOMAIN):
), assert_setup_component(1, light.DOMAIN):
assert await async_setup_component(hass, light.DOMAIN, config) assert await async_setup_component(hass, light.DOMAIN, config)
await hass.async_block_till_done() await hass.async_block_till_done()
mqtt_mock = await mqtt_mock_entry_with_yaml_config() mqtt_mock = await mqtt_mock_entry_with_yaml_config()

View file

@ -124,7 +124,7 @@ from .test_common import (
help_test_update_with_json_attrs_not_dict, help_test_update_with_json_attrs_not_dict,
) )
from tests.common import async_fire_mqtt_message from tests.common import async_fire_mqtt_message, mock_restore_cache
from tests.components.light import common from tests.components.light import common
DEFAULT_CONFIG = { DEFAULT_CONFIG = {
@ -614,11 +614,8 @@ async def test_sending_mqtt_commands_and_optimistic(
"color_temp": 100, "color_temp": 100,
}, },
) )
mock_restore_cache(hass, (fake_state,))
with patch(
"homeassistant.helpers.restore_state.RestoreEntity.async_get_last_state",
return_value=fake_state,
):
assert await async_setup_component( assert await async_setup_component(
hass, hass,
light.DOMAIN, light.DOMAIN,
@ -754,11 +751,8 @@ async def test_sending_mqtt_commands_and_optimistic2(
"hs_color": [100, 100], "hs_color": [100, 100],
}, },
) )
mock_restore_cache(hass, (fake_state,))
with patch(
"homeassistant.helpers.restore_state.RestoreEntity.async_get_last_state",
return_value=fake_state,
):
assert await async_setup_component( assert await async_setup_component(
hass, hass,
light.DOMAIN, light.DOMAIN,

View file

@ -74,7 +74,11 @@ from .test_common import (
help_test_update_with_json_attrs_not_dict, help_test_update_with_json_attrs_not_dict,
) )
from tests.common import assert_setup_component, async_fire_mqtt_message from tests.common import (
assert_setup_component,
async_fire_mqtt_message,
mock_restore_cache,
)
from tests.components.light import common from tests.components.light import common
DEFAULT_CONFIG = { DEFAULT_CONFIG = {
@ -334,11 +338,9 @@ async def test_sending_mqtt_commands_and_optimistic(
"color_temp": 100, "color_temp": 100,
}, },
) )
mock_restore_cache(hass, (fake_state,))
with patch( with assert_setup_component(1, light.DOMAIN):
"homeassistant.helpers.restore_state.RestoreEntity.async_get_last_state",
return_value=fake_state,
), assert_setup_component(1, light.DOMAIN):
assert await async_setup_component( assert await async_setup_component(
hass, hass,
light.DOMAIN, light.DOMAIN,

View file

@ -25,6 +25,8 @@ from .test_common import (
help_test_unload_config_entry_with_platform, help_test_unload_config_entry_with_platform,
) )
from tests.common import mock_restore_cache
DEFAULT_CONFIG = { DEFAULT_CONFIG = {
scene.DOMAIN: { scene.DOMAIN: {
"platform": "mqtt", "platform": "mqtt",
@ -45,11 +47,8 @@ def scene_platform_only():
async def test_sending_mqtt_commands(hass, mqtt_mock_entry_with_yaml_config): async def test_sending_mqtt_commands(hass, mqtt_mock_entry_with_yaml_config):
"""Test the sending MQTT commands.""" """Test the sending MQTT commands."""
fake_state = ha.State("scene.test", STATE_UNKNOWN) fake_state = ha.State("scene.test", STATE_UNKNOWN)
mock_restore_cache(hass, (fake_state,))
with patch(
"homeassistant.helpers.restore_state.RestoreEntity.async_get_last_state",
return_value=fake_state,
):
assert await async_setup_component( assert await async_setup_component(
hass, hass,
scene.DOMAIN, scene.DOMAIN,

View file

@ -53,7 +53,7 @@ from .test_common import (
help_test_update_with_json_attrs_not_dict, help_test_update_with_json_attrs_not_dict,
) )
from tests.common import async_fire_mqtt_message from tests.common import async_fire_mqtt_message, mock_restore_cache
DEFAULT_CONFIG = { DEFAULT_CONFIG = {
select.DOMAIN: { select.DOMAIN: {
@ -152,12 +152,9 @@ async def test_run_select_service_optimistic(hass, mqtt_mock_entry_with_yaml_con
"""Test that set_value service works in optimistic mode.""" """Test that set_value service works in optimistic mode."""
topic = "test/select" topic = "test/select"
fake_state = ha.State("select.test", "milk") fake_state = ha.State("select.test_select", "milk")
mock_restore_cache(hass, (fake_state,))
with patch(
"homeassistant.helpers.restore_state.RestoreEntity.async_get_last_state",
return_value=fake_state,
):
assert await async_setup_component( assert await async_setup_component(
hass, hass,
select.DOMAIN, select.DOMAIN,
@ -196,12 +193,9 @@ async def test_run_select_service_optimistic_with_command_template(
"""Test that set_value service works in optimistic mode and with a command_template.""" """Test that set_value service works in optimistic mode and with a command_template."""
topic = "test/select" topic = "test/select"
fake_state = ha.State("select.test", "milk") fake_state = ha.State("select.test_select", "milk")
mock_restore_cache(hass, (fake_state,))
with patch(
"homeassistant.helpers.restore_state.RestoreEntity.async_get_last_state",
return_value=fake_state,
):
assert await async_setup_component( assert await async_setup_component(
hass, hass,
select.DOMAIN, select.DOMAIN,

View file

@ -67,6 +67,7 @@ from tests.common import (
assert_setup_component, assert_setup_component,
async_fire_mqtt_message, async_fire_mqtt_message,
async_fire_time_changed, async_fire_time_changed,
mock_restore_cache_with_extra_data,
) )
DEFAULT_CONFIG = { DEFAULT_CONFIG = {
@ -1160,15 +1161,9 @@ async def test_skip_restoring_state_with_over_due_expire_trigger(
last_changed=datetime.fromisoformat("2022-02-02 12:01:35+01:00"), last_changed=datetime.fromisoformat("2022-02-02 12:01:35+01:00"),
) )
fake_extra_data = MagicMock() fake_extra_data = MagicMock()
with patch( mock_restore_cache_with_extra_data(hass, ((fake_state, fake_extra_data),))
"homeassistant.helpers.restore_state.RestoreEntity.async_get_last_state",
return_value=fake_state, with assert_setup_component(1, domain):
), patch(
"homeassistant.helpers.restore_state.RestoreEntity.async_get_last_extra_data",
return_value=fake_extra_data,
), assert_setup_component(
1, domain
):
assert await async_setup_component(hass, domain, {domain: config3}) assert await async_setup_component(hass, domain, {domain: config3})
await hass.async_block_till_done() await hass.async_block_till_done()
await mqtt_mock_entry_with_yaml_config() await mqtt_mock_entry_with_yaml_config()

View file

@ -47,7 +47,7 @@ from .test_common import (
help_test_update_with_json_attrs_not_dict, help_test_update_with_json_attrs_not_dict,
) )
from tests.common import async_fire_mqtt_message from tests.common import async_fire_mqtt_message, mock_restore_cache
from tests.components.switch import common from tests.components.switch import common
DEFAULT_CONFIG = { DEFAULT_CONFIG = {
@ -108,11 +108,8 @@ async def test_sending_mqtt_commands_and_optimistic(
): ):
"""Test the sending MQTT commands in optimistic mode.""" """Test the sending MQTT commands in optimistic mode."""
fake_state = ha.State("switch.test", "on") fake_state = ha.State("switch.test", "on")
mock_restore_cache(hass, (fake_state,))
with patch(
"homeassistant.helpers.restore_state.RestoreEntity.async_get_last_state",
return_value=fake_state,
):
assert await async_setup_component( assert await async_setup_component(
hass, hass,
switch.DOMAIN, switch.DOMAIN,