mirror of
https://github.com/home-assistant/core.git
synced 2025-07-13 08:17:08 +00:00
Add subentry reconfigure support to kitchen_sink
This commit is contained in:
parent
fa6cc8edfe
commit
3ef9f7360f
@ -37,20 +37,13 @@ class KitchenSinkConfigFlow(ConfigFlow, domain=DOMAIN):
|
|||||||
"""Get the options flow for this handler."""
|
"""Get the options flow for this handler."""
|
||||||
return OptionsFlowHandler()
|
return OptionsFlowHandler()
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
@callback
|
|
||||||
def async_get_subentry_flow(
|
|
||||||
config_entry: ConfigEntry, subentry_type: str
|
|
||||||
) -> ConfigSubentryFlow:
|
|
||||||
"""Get the subentry flow for this handler."""
|
|
||||||
|
|
||||||
return SubentryFlowHandler()
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
@callback
|
@callback
|
||||||
def async_supported_subentries(cls, config_entry: ConfigEntry) -> tuple[str, ...]:
|
def async_get_supported_subentry_flows(
|
||||||
|
cls, config_entry: ConfigEntry
|
||||||
|
) -> dict[str, type[ConfigSubentryFlow]]:
|
||||||
"""Return subentries supported by this handler."""
|
"""Return subentries supported by this handler."""
|
||||||
return ("add_entity",)
|
return {"add_entity": SubentryFlowHandler}
|
||||||
|
|
||||||
async def async_step_import(self, import_data: dict[str, Any]) -> ConfigFlowResult:
|
async def async_step_import(self, import_data: dict[str, Any]) -> ConfigFlowResult:
|
||||||
"""Set the config entry up from yaml."""
|
"""Set the config entry up from yaml."""
|
||||||
@ -116,7 +109,7 @@ class OptionsFlowHandler(OptionsFlow):
|
|||||||
class SubentryFlowHandler(ConfigSubentryFlow):
|
class SubentryFlowHandler(ConfigSubentryFlow):
|
||||||
"""Handle subentry flow."""
|
"""Handle subentry flow."""
|
||||||
|
|
||||||
async def async_step_init(
|
async def async_step_user(
|
||||||
self, user_input: dict[str, Any] | None = None
|
self, user_input: dict[str, Any] | None = None
|
||||||
) -> SubentryFlowResult:
|
) -> SubentryFlowResult:
|
||||||
"""Manage the options."""
|
"""Manage the options."""
|
||||||
@ -139,3 +132,32 @@ class SubentryFlowHandler(ConfigSubentryFlow):
|
|||||||
}
|
}
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
async def async_step_reconfigure(
|
||||||
|
self, user_input: dict[str, Any] | None = None
|
||||||
|
) -> SubentryFlowResult:
|
||||||
|
"""Manage the options."""
|
||||||
|
return await self.async_step_reconfigure_sensor()
|
||||||
|
|
||||||
|
async def async_step_reconfigure_sensor(
|
||||||
|
self, user_input: dict[str, Any] | None = None
|
||||||
|
) -> SubentryFlowResult:
|
||||||
|
"""Add a new sensor."""
|
||||||
|
if user_input is not None:
|
||||||
|
title = user_input.pop("name")
|
||||||
|
return self.async_update_and_abort(
|
||||||
|
self._get_reconfigure_entry(),
|
||||||
|
self._get_reconfigure_subentry(),
|
||||||
|
data=user_input,
|
||||||
|
title=title,
|
||||||
|
)
|
||||||
|
|
||||||
|
return self.async_show_form(
|
||||||
|
step_id="reconfigure_sensor",
|
||||||
|
data_schema=vol.Schema(
|
||||||
|
{
|
||||||
|
vol.Required("name"): str,
|
||||||
|
vol.Required("state"): int,
|
||||||
|
}
|
||||||
|
),
|
||||||
|
)
|
||||||
|
@ -116,7 +116,8 @@ async def test_subentry_flow(hass: HomeAssistant) -> None:
|
|||||||
await hass.async_block_till_done()
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
result = await hass.config_entries.subentries.async_init(
|
result = await hass.config_entries.subentries.async_init(
|
||||||
(config_entry.entry_id, "add_entity")
|
(config_entry.entry_id, "add_entity"),
|
||||||
|
context={"source": config_entries.SOURCE_USER},
|
||||||
)
|
)
|
||||||
assert result["type"] is FlowResultType.FORM
|
assert result["type"] is FlowResultType.FORM
|
||||||
assert result["step_id"] == "add_sensor"
|
assert result["step_id"] == "add_sensor"
|
||||||
@ -137,3 +138,48 @@ async def test_subentry_flow(hass: HomeAssistant) -> None:
|
|||||||
}
|
}
|
||||||
|
|
||||||
await hass.async_block_till_done()
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.usefixtures("no_platforms")
|
||||||
|
async def test_subentry_reconfigure_flow(hass: HomeAssistant) -> None:
|
||||||
|
"""Test config flow options."""
|
||||||
|
subentry_id = "mock_id"
|
||||||
|
config_entry = MockConfigEntry(
|
||||||
|
domain=DOMAIN,
|
||||||
|
subentries_data=[
|
||||||
|
config_entries.ConfigSubentryData(
|
||||||
|
data={"state": 15},
|
||||||
|
subentry_id="mock_id",
|
||||||
|
title="Sensor 1",
|
||||||
|
unique_id=None,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
)
|
||||||
|
config_entry.add_to_hass(hass)
|
||||||
|
|
||||||
|
assert await hass.config_entries.async_setup(config_entry.entry_id)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
|
result = await config_entry.start_subentry_reconfigure_flow(
|
||||||
|
hass, "add_entity", subentry_id
|
||||||
|
)
|
||||||
|
assert result["type"] is FlowResultType.FORM
|
||||||
|
assert result["step_id"] == "reconfigure_sensor"
|
||||||
|
|
||||||
|
result = await hass.config_entries.subentries.async_configure(
|
||||||
|
result["flow_id"],
|
||||||
|
user_input={"name": "Renamed sensor 1", "state": 5},
|
||||||
|
)
|
||||||
|
assert result["type"] is FlowResultType.ABORT
|
||||||
|
assert result["reason"] == "reconfigure_successful"
|
||||||
|
|
||||||
|
assert config_entry.subentries == {
|
||||||
|
subentry_id: config_entries.ConfigSubentry(
|
||||||
|
data={"state": 5},
|
||||||
|
subentry_id=subentry_id,
|
||||||
|
title="Renamed sensor 1",
|
||||||
|
unique_id=None,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user