Add ability to ignore rachio discovery (#34649)
* Add ability to ignore rachio discovery * update test * Update tests/components/rachio/test_config_flow.py Co-Authored-By: Chris Talkington <chris@talkingtontech.com> * Update tests/components/rachio/test_config_flow.py Co-Authored-By: Chris Talkington <chris@talkingtontech.com> Co-authored-by: Chris Talkington <chris@talkingtontech.com>
This commit is contained in:
parent
0d700f6a63
commit
c4c2b4f9da
2 changed files with 16 additions and 2 deletions
|
@ -89,6 +89,10 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
||||||
# they already have one configured as they can always
|
# they already have one configured as they can always
|
||||||
# add a new one via "+"
|
# add a new one via "+"
|
||||||
return self.async_abort(reason="already_configured")
|
return self.async_abort(reason="already_configured")
|
||||||
|
properties = {
|
||||||
|
key.lower(): value for (key, value) in homekit_info["properties"].items()
|
||||||
|
}
|
||||||
|
await self.async_set_unique_id(properties["id"])
|
||||||
return await self.async_step_user()
|
return await self.async_step_user()
|
||||||
|
|
||||||
async def async_step_import(self, user_input):
|
async def async_step_import(self, user_input):
|
||||||
|
|
|
@ -111,16 +111,26 @@ async def test_form_homekit(hass):
|
||||||
await setup.async_setup_component(hass, "persistent_notification", {})
|
await setup.async_setup_component(hass, "persistent_notification", {})
|
||||||
|
|
||||||
result = await hass.config_entries.flow.async_init(
|
result = await hass.config_entries.flow.async_init(
|
||||||
DOMAIN, context={"source": "homekit"}
|
DOMAIN,
|
||||||
|
context={"source": "homekit"},
|
||||||
|
data={"properties": {"id": "AA:BB:CC:DD:EE:FF"}},
|
||||||
)
|
)
|
||||||
assert result["type"] == "form"
|
assert result["type"] == "form"
|
||||||
assert result["errors"] == {}
|
assert result["errors"] == {}
|
||||||
|
flow = next(
|
||||||
|
flow
|
||||||
|
for flow in hass.config_entries.flow.async_progress()
|
||||||
|
if flow["flow_id"] == result["flow_id"]
|
||||||
|
)
|
||||||
|
assert flow["context"]["unique_id"] == "AA:BB:CC:DD:EE:FF"
|
||||||
|
|
||||||
entry = MockConfigEntry(domain=DOMAIN, data={CONF_API_KEY: "api_key"})
|
entry = MockConfigEntry(domain=DOMAIN, data={CONF_API_KEY: "api_key"})
|
||||||
entry.add_to_hass(hass)
|
entry.add_to_hass(hass)
|
||||||
|
|
||||||
result = await hass.config_entries.flow.async_init(
|
result = await hass.config_entries.flow.async_init(
|
||||||
DOMAIN, context={"source": "homekit"}
|
DOMAIN,
|
||||||
|
context={"source": "homekit"},
|
||||||
|
data={"properties": {"id": "AA:BB:CC:DD:EE:FF"}},
|
||||||
)
|
)
|
||||||
assert result["type"] == "abort"
|
assert result["type"] == "abort"
|
||||||
assert result["reason"] == "already_configured"
|
assert result["reason"] == "already_configured"
|
||||||
|
|
Loading…
Add table
Reference in a new issue