* Rewrite to import from platform setup * Add config flow for import * Implement reload * Update sensor tests * Add config flow tests * Remove some code * Fix pylint issue * Remove update options code * Add platform import test * Remove infinite while loop * Move async_setup_platform * Check for unload_ok * Remove commented out test code * Implement function to check on host/port already existing Co-authored-by: Chris Talkington <chris@talkingtontech.com> * Implement new method in import * Update tests * Fix test setup platform * Add string * Patch setup_platform * Add block till done to patch block Co-authored-by: Chris Talkington <chris@talkingtontech.com>
102 lines
2.9 KiB
Python
102 lines
2.9 KiB
Python
"""Test the DSMR config flow."""
|
|
from homeassistant import config_entries, setup
|
|
from homeassistant.components.dsmr import DOMAIN
|
|
|
|
from tests.async_mock import patch
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_import_usb(hass):
|
|
"""Test we can import."""
|
|
await setup.async_setup_component(hass, "persistent_notification", {})
|
|
|
|
entry_data = {
|
|
"port": "/dev/ttyUSB0",
|
|
"dsmr_version": "2.2",
|
|
"precision": 4,
|
|
"reconnect_interval": 30,
|
|
}
|
|
|
|
with patch("homeassistant.components.dsmr.async_setup_entry", return_value=True):
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": config_entries.SOURCE_IMPORT},
|
|
data=entry_data,
|
|
)
|
|
|
|
assert result["type"] == "create_entry"
|
|
assert result["title"] == "/dev/ttyUSB0"
|
|
assert result["data"] == entry_data
|
|
|
|
|
|
async def test_import_network(hass):
|
|
"""Test we can import from network."""
|
|
await setup.async_setup_component(hass, "persistent_notification", {})
|
|
|
|
entry_data = {
|
|
"host": "localhost",
|
|
"port": "1234",
|
|
"dsmr_version": "2.2",
|
|
"precision": 4,
|
|
"reconnect_interval": 30,
|
|
}
|
|
|
|
with patch("homeassistant.components.dsmr.async_setup_entry", return_value=True):
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": config_entries.SOURCE_IMPORT},
|
|
data=entry_data,
|
|
)
|
|
|
|
assert result["type"] == "create_entry"
|
|
assert result["title"] == "localhost:1234"
|
|
assert result["data"] == entry_data
|
|
|
|
|
|
async def test_import_update(hass):
|
|
"""Test we can import."""
|
|
await setup.async_setup_component(hass, "persistent_notification", {})
|
|
|
|
entry_data = {
|
|
"port": "/dev/ttyUSB0",
|
|
"dsmr_version": "2.2",
|
|
"precision": 4,
|
|
"reconnect_interval": 30,
|
|
}
|
|
|
|
entry = MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data=entry_data,
|
|
unique_id="/dev/ttyUSB0",
|
|
)
|
|
entry.add_to_hass(hass)
|
|
|
|
with patch(
|
|
"homeassistant.components.dsmr.async_setup_entry", return_value=True
|
|
), patch("homeassistant.components.dsmr.async_unload_entry", return_value=True):
|
|
await hass.config_entries.async_setup(entry.entry_id)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
new_entry_data = {
|
|
"port": "/dev/ttyUSB0",
|
|
"dsmr_version": "2.2",
|
|
"precision": 3,
|
|
"reconnect_interval": 30,
|
|
}
|
|
|
|
with patch(
|
|
"homeassistant.components.dsmr.async_setup_entry", return_value=True
|
|
), patch("homeassistant.components.dsmr.async_unload_entry", return_value=True):
|
|
result = await hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": config_entries.SOURCE_IMPORT},
|
|
data=new_entry_data,
|
|
)
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert result["type"] == "abort"
|
|
assert result["reason"] == "already_configured"
|
|
|
|
assert entry.data["precision"] == 3
|