Swedish weather institute weather component (#16717)
* SMHI Component * Clean up typos * Fixed default values first config to home location (tests will follow) * Fixed tests and removed unused function * Minor fixup after comments from @kane610 * add support for precipitation in forecast * Removed old async_step_init not needed.
This commit is contained in:
parent
56a43436d7
commit
540d22d603
18 changed files with 2716 additions and 2 deletions
276
tests/components/smhi/test_config_flow.py
Normal file
276
tests/components/smhi/test_config_flow.py
Normal file
|
@ -0,0 +1,276 @@
|
|||
"""Tests for SMHI config flow."""
|
||||
from unittest.mock import Mock, patch
|
||||
|
||||
from smhi.smhi_lib import Smhi as SmhiApi, SmhiForecastException
|
||||
|
||||
from tests.common import mock_coro
|
||||
|
||||
from homeassistant.const import CONF_LATITUDE, CONF_LONGITUDE
|
||||
from homeassistant.components.smhi import config_flow
|
||||
|
||||
|
||||
# pylint: disable=W0212
|
||||
async def test_homeassistant_location_exists() -> None:
|
||||
"""Test if homeassistant location exists it should return True."""
|
||||
hass = Mock()
|
||||
flow = config_flow.SmhiFlowHandler()
|
||||
flow.hass = hass
|
||||
with patch.object(flow, '_check_location',
|
||||
return_value=mock_coro(True)):
|
||||
# Test exists
|
||||
hass.config.location_name = 'Home'
|
||||
hass.config.latitude = 17.8419
|
||||
hass.config.longitude = 59.3262
|
||||
|
||||
assert await flow._homeassistant_location_exists() is True
|
||||
|
||||
# Test not exists
|
||||
hass.config.location_name = None
|
||||
hass.config.latitude = 0
|
||||
hass.config.longitude = 0
|
||||
|
||||
assert await flow._homeassistant_location_exists() is False
|
||||
|
||||
|
||||
async def test_name_in_configuration_exists() -> None:
|
||||
"""Test if home location exists in configuration."""
|
||||
hass = Mock()
|
||||
flow = config_flow.SmhiFlowHandler()
|
||||
flow.hass = hass
|
||||
|
||||
# Test exists
|
||||
hass.config.location_name = 'Home'
|
||||
hass.config.latitude = 17.8419
|
||||
hass.config.longitude = 59.3262
|
||||
|
||||
# Check not exists
|
||||
with patch.object(config_flow, 'smhi_locations',
|
||||
return_value={
|
||||
'test': 'something', 'test2': 'something else'
|
||||
}):
|
||||
|
||||
assert flow._name_in_configuration_exists('no_exist_name') is False
|
||||
|
||||
# Check exists
|
||||
with patch.object(config_flow, 'smhi_locations',
|
||||
return_value={
|
||||
'test': 'something', 'name_exist': 'config'
|
||||
}):
|
||||
|
||||
assert flow._name_in_configuration_exists('name_exist') is True
|
||||
|
||||
|
||||
def test_smhi_locations(hass) -> None:
|
||||
"""Test return empty set."""
|
||||
locations = config_flow.smhi_locations(hass)
|
||||
assert not locations
|
||||
|
||||
|
||||
async def test_show_config_form() -> None:
|
||||
"""Test show configuration form."""
|
||||
hass = Mock()
|
||||
flow = config_flow.SmhiFlowHandler()
|
||||
flow.hass = hass
|
||||
|
||||
result = await flow._show_config_form()
|
||||
|
||||
assert result['type'] == 'form'
|
||||
assert result['step_id'] == 'user'
|
||||
|
||||
|
||||
async def test_show_config_form_default_values() -> None:
|
||||
"""Test show configuration form."""
|
||||
hass = Mock()
|
||||
flow = config_flow.SmhiFlowHandler()
|
||||
flow.hass = hass
|
||||
|
||||
result = await flow._show_config_form(
|
||||
name="test", latitude='65', longitude='17')
|
||||
|
||||
assert result['type'] == 'form'
|
||||
assert result['step_id'] == 'user'
|
||||
|
||||
|
||||
async def test_flow_with_home_location(hass) -> None:
|
||||
"""Test config flow .
|
||||
|
||||
Tests the flow when a default location is configured
|
||||
then it should return a form with default values
|
||||
"""
|
||||
flow = config_flow.SmhiFlowHandler()
|
||||
flow.hass = hass
|
||||
|
||||
with patch.object(flow, '_check_location',
|
||||
return_value=mock_coro(True)):
|
||||
hass.config.location_name = 'Home'
|
||||
hass.config.latitude = 17.8419
|
||||
hass.config.longitude = 59.3262
|
||||
|
||||
result = await flow.async_step_user()
|
||||
assert result['type'] == 'form'
|
||||
assert result['step_id'] == 'user'
|
||||
|
||||
|
||||
async def test_flow_show_form() -> None:
|
||||
"""Test show form scenarios first time.
|
||||
|
||||
Test when the form should show when no configurations exists
|
||||
"""
|
||||
hass = Mock()
|
||||
flow = config_flow.SmhiFlowHandler()
|
||||
flow.hass = hass
|
||||
|
||||
# Test show form when home assistant config exists and
|
||||
# home is already configured, then new config is allowed
|
||||
with \
|
||||
patch.object(flow, '_show_config_form',
|
||||
return_value=mock_coro()) as config_form, \
|
||||
patch.object(flow, '_homeassistant_location_exists',
|
||||
return_value=mock_coro(True)), \
|
||||
patch.object(config_flow, 'smhi_locations',
|
||||
return_value={
|
||||
'test': 'something', 'name_exist': 'config'
|
||||
}):
|
||||
await flow.async_step_user()
|
||||
assert len(config_form.mock_calls) == 1
|
||||
|
||||
# Test show form when home assistant config not and
|
||||
# home is not configured
|
||||
with \
|
||||
patch.object(flow, '_show_config_form',
|
||||
return_value=mock_coro()) as config_form, \
|
||||
patch.object(flow, '_homeassistant_location_exists',
|
||||
return_value=mock_coro(False)), \
|
||||
patch.object(config_flow, 'smhi_locations',
|
||||
return_value={
|
||||
'test': 'something', 'name_exist': 'config'
|
||||
}):
|
||||
|
||||
await flow.async_step_user()
|
||||
assert len(config_form.mock_calls) == 1
|
||||
|
||||
|
||||
async def test_flow_show_form_name_exists() -> None:
|
||||
"""Test show form if name already exists.
|
||||
|
||||
Test when the form should show when no configurations exists
|
||||
"""
|
||||
hass = Mock()
|
||||
flow = config_flow.SmhiFlowHandler()
|
||||
flow.hass = hass
|
||||
test_data = {'name': 'home', CONF_LONGITUDE: '0', CONF_LATITUDE: '0'}
|
||||
# Test show form when home assistant config exists and
|
||||
# home is already configured, then new config is allowed
|
||||
with \
|
||||
patch.object(flow, '_show_config_form',
|
||||
return_value=mock_coro()) as config_form, \
|
||||
patch.object(flow, '_name_in_configuration_exists',
|
||||
return_value=True), \
|
||||
patch.object(config_flow, 'smhi_locations',
|
||||
return_value={
|
||||
'test': 'something', 'name_exist': 'config'
|
||||
}), \
|
||||
patch.object(flow, '_check_location',
|
||||
return_value=mock_coro(True)):
|
||||
|
||||
await flow.async_step_user(user_input=test_data)
|
||||
|
||||
assert len(config_form.mock_calls) == 1
|
||||
assert len(flow._errors) == 1
|
||||
|
||||
|
||||
async def test_flow_entry_created_from_user_input() -> None:
|
||||
"""Test that create data from user input.
|
||||
|
||||
Test when the form should show when no configurations exists
|
||||
"""
|
||||
hass = Mock()
|
||||
flow = config_flow.SmhiFlowHandler()
|
||||
flow.hass = hass
|
||||
|
||||
test_data = {'name': 'home', CONF_LONGITUDE: '0', CONF_LATITUDE: '0'}
|
||||
|
||||
# Test that entry created when user_input name not exists
|
||||
with \
|
||||
patch.object(flow, '_show_config_form',
|
||||
return_value=mock_coro()) as config_form, \
|
||||
patch.object(flow, '_name_in_configuration_exists',
|
||||
return_value=False), \
|
||||
patch.object(flow, '_homeassistant_location_exists',
|
||||
return_value=mock_coro(False)), \
|
||||
patch.object(config_flow, 'smhi_locations',
|
||||
return_value={
|
||||
'test': 'something', 'name_exist': 'config'
|
||||
}), \
|
||||
patch.object(flow, '_check_location',
|
||||
return_value=mock_coro(True)):
|
||||
|
||||
result = await flow.async_step_user(user_input=test_data)
|
||||
|
||||
assert result['type'] == 'create_entry'
|
||||
assert result['data'] == test_data
|
||||
assert not config_form.mock_calls
|
||||
|
||||
|
||||
async def test_flow_entry_created_user_input_faulty() -> None:
|
||||
"""Test that create data from user input and are faulty.
|
||||
|
||||
Test when the form should show when user puts faulty location
|
||||
in the config gui. Then the form should show with error
|
||||
"""
|
||||
hass = Mock()
|
||||
flow = config_flow.SmhiFlowHandler()
|
||||
flow.hass = hass
|
||||
|
||||
test_data = {'name': 'home', CONF_LONGITUDE: '0', CONF_LATITUDE: '0'}
|
||||
|
||||
# Test that entry created when user_input name not exists
|
||||
with \
|
||||
patch.object(flow, '_check_location',
|
||||
return_value=mock_coro(True)), \
|
||||
patch.object(flow, '_show_config_form',
|
||||
return_value=mock_coro()) as config_form, \
|
||||
patch.object(flow, '_name_in_configuration_exists',
|
||||
return_value=False), \
|
||||
patch.object(flow, '_homeassistant_location_exists',
|
||||
return_value=mock_coro(False)), \
|
||||
patch.object(config_flow, 'smhi_locations',
|
||||
return_value={
|
||||
'test': 'something', 'name_exist': 'config'
|
||||
}), \
|
||||
patch.object(flow, '_check_location',
|
||||
return_value=mock_coro(False)):
|
||||
|
||||
await flow.async_step_user(user_input=test_data)
|
||||
|
||||
assert len(config_form.mock_calls) == 1
|
||||
assert len(flow._errors) == 1
|
||||
|
||||
|
||||
async def test_check_location_correct() -> None:
|
||||
"""Test check location when correct input."""
|
||||
hass = Mock()
|
||||
flow = config_flow.SmhiFlowHandler()
|
||||
flow.hass = hass
|
||||
|
||||
with \
|
||||
patch.object(config_flow.aiohttp_client, 'async_get_clientsession'),\
|
||||
patch.object(SmhiApi, 'async_get_forecast',
|
||||
return_value=mock_coro()):
|
||||
|
||||
assert await flow._check_location('58', '17') is True
|
||||
|
||||
|
||||
async def test_check_location_faulty() -> None:
|
||||
"""Test check location when faulty input."""
|
||||
hass = Mock()
|
||||
flow = config_flow.SmhiFlowHandler()
|
||||
flow.hass = hass
|
||||
|
||||
with \
|
||||
patch.object(config_flow.aiohttp_client,
|
||||
'async_get_clientsession'), \
|
||||
patch.object(SmhiApi, 'async_get_forecast',
|
||||
side_effect=SmhiForecastException()):
|
||||
|
||||
assert await flow._check_location('58', '17') is False
|
Loading…
Add table
Add a link
Reference in a new issue