* refactoring for multi platform * adopted test_bridge to refactoring * refactoring tests for multi-platform additional coverage in config and init * comment for clarity * more specific imports from lib * library version bump * removed async_update * changed parameter order to start with hass * removed pylint disable * unsubscribe from signal dispatcher inherit from Entity * use device.unique_id * changed hass_obj to hass * added test for remove entity bug fix from the test * removed the polling try_connect. hate polling... it is now part of the async_setup() significantly makes the code clearer and simplifies the tests * removed leftover debug logs in the library * changed tests to get the entry_id from hass * changed place to assign hass.data only after success * fixes for test_init * removed assert * removed device_info * removed bridge internal from common * modified test_bridge to work without the bridge directly * removed bridge from test_existing_update * changed update to not use bridge internals * dyn_bridge fixture no longer used - removed
36 lines
1.5 KiB
Python
Executable file
36 lines
1.5 KiB
Python
Executable file
"""Config flow to configure Dynalite hub."""
|
|
from homeassistant import config_entries
|
|
from homeassistant.const import CONF_HOST
|
|
|
|
from .bridge import DynaliteBridge
|
|
from .const import DOMAIN, LOGGER # pylint: disable=unused-import
|
|
|
|
|
|
class DynaliteFlowHandler(config_entries.ConfigFlow, domain=DOMAIN):
|
|
"""Handle a Dynalite config flow."""
|
|
|
|
VERSION = 1
|
|
CONNECTION_CLASS = config_entries.CONN_CLASS_LOCAL_POLL
|
|
|
|
# pylint: disable=no-member # https://github.com/PyCQA/pylint/issues/3167
|
|
|
|
def __init__(self):
|
|
"""Initialize the Dynalite flow."""
|
|
self.host = None
|
|
|
|
async def async_step_import(self, import_info):
|
|
"""Import a new bridge as a config entry."""
|
|
LOGGER.debug("Starting async_step_import - %s", import_info)
|
|
host = import_info[CONF_HOST]
|
|
for entry in self.hass.config_entries.async_entries(DOMAIN):
|
|
if entry.data[CONF_HOST] == host:
|
|
if entry.data != import_info:
|
|
self.hass.config_entries.async_update_entry(entry, data=import_info)
|
|
return self.async_abort(reason="already_configured")
|
|
# New entry
|
|
bridge = DynaliteBridge(self.hass, import_info)
|
|
if not await bridge.async_setup():
|
|
LOGGER.error("Unable to setup bridge - import info=%s", import_info)
|
|
return self.async_abort(reason="no_connection")
|
|
LOGGER.debug("Creating entry for the bridge - %s", import_info)
|
|
return self.async_create_entry(title=host, data=import_info)
|