* First commit * First working release, but there's a lot to do * Added support for preset_modes * Refined logic * Added translations for config_flow * Updated translations * modified: homeassistant/components/hisense_aehw4a1/climate.py * modified: climate.py * Updated library to latest version * Small changes * Null states when AC off * Minor fixes * Latest updates for TOX * First commit * First working release, but there's a lot to do * new file: requirements_test_all.txt * Added support for preset_modes * Refined logic * Added translations for config_flow * Updated translations * modified: homeassistant/components/hisense_aehw4a1/climate.py * modified: climate.py * Updated library to latest version * Small changes * Null states when AC off * Minor fixes * Latest updates for TOX * new file: requirements_test_all.txt * Fighting with tox * vs Tox round 2 * Isort and updated requirements_test_all.txt * Fighting with lint * Implemented available state * Changed exception type after Travis-ci pylint fails * Support entry in configuration.yaml * Removed commented code * Switched to async * Minor changes * Updated library and fixed pylint errors * Code optimization * Implemented static ip addresses in configuration.yaml * Reverted to existing constant * Corrected pylint wrong-import-order * Recovery from nuke event (messing all while rebase) * Resolved Ci error * Changes for PR * Corrected temp scale for frontend * Added test for config entry from configuration.yaml * Updated dependency * Check on manual config * Imported custom exceptions and modified import config * Optimized * Change based on PR revision * Added logging for failure event on manual config * Tests added but to be corrected * Edited tests * Tests updated to ensure no I/O * Working on tests * Cheanges based on revision for PR * Setting librey exception as direct side_effect in test * Final changes for PR * Redundand on command solved * Improved AC logic
89 lines
3.1 KiB
Python
89 lines
3.1 KiB
Python
"""Tests for the Hisense AEH-W4A1 init file."""
|
|
from unittest.mock import patch
|
|
|
|
from pyaehw4a1 import exceptions
|
|
|
|
from homeassistant import config_entries, data_entry_flow
|
|
from homeassistant.components import hisense_aehw4a1
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from tests.common import mock_coro
|
|
|
|
|
|
async def test_creating_entry_sets_up_climate_discovery(hass):
|
|
"""Test setting up Hisense AEH-W4A1 loads the climate component."""
|
|
with patch(
|
|
"homeassistant.components.hisense_aehw4a1.config_flow.AehW4a1.discovery",
|
|
return_value=mock_coro(["1.2.3.4"]),
|
|
):
|
|
with patch(
|
|
"homeassistant.components.hisense_aehw4a1.climate.async_setup_entry",
|
|
return_value=mock_coro(True),
|
|
) as mock_setup:
|
|
result = await hass.config_entries.flow.async_init(
|
|
hisense_aehw4a1.DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
# Confirmation form
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_FORM
|
|
|
|
result = await hass.config_entries.flow.async_configure(
|
|
result["flow_id"], {}
|
|
)
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_CREATE_ENTRY
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(mock_setup.mock_calls) == 1
|
|
|
|
|
|
async def test_configuring_hisense_w4a1_create_entry(hass):
|
|
"""Test that specifying config will create an entry."""
|
|
with patch(
|
|
"homeassistant.components.hisense_aehw4a1.config_flow.AehW4a1.check",
|
|
return_value=mock_coro(True),
|
|
):
|
|
with patch(
|
|
"homeassistant.components.hisense_aehw4a1.async_setup_entry",
|
|
return_value=mock_coro(True),
|
|
) as mock_setup:
|
|
await async_setup_component(
|
|
hass,
|
|
hisense_aehw4a1.DOMAIN,
|
|
{"hisense_aehw4a1": {"ip_address": ["1.2.3.4"]}},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(mock_setup.mock_calls) == 1
|
|
|
|
|
|
async def test_configuring_hisense_w4a1_not_creates_entry_for_device_not_found(hass):
|
|
"""Test that specifying config will not create an entry."""
|
|
with patch(
|
|
"homeassistant.components.hisense_aehw4a1.config_flow.AehW4a1.check",
|
|
side_effect=exceptions.ConnectionError,
|
|
):
|
|
with patch(
|
|
"homeassistant.components.hisense_aehw4a1.async_setup_entry",
|
|
return_value=mock_coro(True),
|
|
) as mock_setup:
|
|
await async_setup_component(
|
|
hass,
|
|
hisense_aehw4a1.DOMAIN,
|
|
{"hisense_aehw4a1": {"ip_address": ["1.2.3.4"]}},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(mock_setup.mock_calls) == 0
|
|
|
|
|
|
async def test_configuring_hisense_w4a1_not_creates_entry_for_empty_import(hass):
|
|
"""Test that specifying config will not create an entry."""
|
|
with patch(
|
|
"homeassistant.components.hisense_aehw4a1.async_setup_entry",
|
|
return_value=mock_coro(True),
|
|
) as mock_setup:
|
|
await async_setup_component(hass, hisense_aehw4a1.DOMAIN, {})
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(mock_setup.mock_calls) == 0
|