mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 19:27:45 +00:00
Replace dash in language if needed (#106559)
* Replace dash in language if needed * Add tests
This commit is contained in:
parent
285bb5632d
commit
d24a923a73
@ -47,7 +47,7 @@ class HolidayConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|||||||
self._async_abort_entries_match({CONF_COUNTRY: user_input[CONF_COUNTRY]})
|
self._async_abort_entries_match({CONF_COUNTRY: user_input[CONF_COUNTRY]})
|
||||||
|
|
||||||
try:
|
try:
|
||||||
locale = Locale(self.hass.config.language)
|
locale = Locale(self.hass.config.language.replace("-", "_"))
|
||||||
except UnknownLocaleError:
|
except UnknownLocaleError:
|
||||||
# Default to (US) English if language not recognized by babel
|
# Default to (US) English if language not recognized by babel
|
||||||
# Mainly an issue with English flavors such as "en-GB"
|
# Mainly an issue with English flavors such as "en-GB"
|
||||||
@ -87,7 +87,7 @@ class HolidayConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|||||||
)
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
locale = Locale(self.hass.config.language)
|
locale = Locale(self.hass.config.language.replace("-", "_"))
|
||||||
except UnknownLocaleError:
|
except UnknownLocaleError:
|
||||||
# Default to (US) English if language not recognized by babel
|
# Default to (US) English if language not recognized by babel
|
||||||
# Mainly an issue with English flavors such as "en-GB"
|
# Mainly an issue with English flavors such as "en-GB"
|
||||||
|
@ -130,13 +130,13 @@ async def test_single_combination_country_province(hass: HomeAssistant) -> None:
|
|||||||
|
|
||||||
async def test_form_babel_unresolved_language(hass: HomeAssistant) -> None:
|
async def test_form_babel_unresolved_language(hass: HomeAssistant) -> None:
|
||||||
"""Test the config flow if using not babel supported language."""
|
"""Test the config flow if using not babel supported language."""
|
||||||
hass.config.language = "en-GB"
|
hass.config.language = "en-XX"
|
||||||
|
|
||||||
result = await hass.config_entries.flow.async_init(
|
result = await hass.config_entries.flow.async_init(
|
||||||
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
||||||
)
|
)
|
||||||
|
|
||||||
result2 = await hass.config_entries.flow.async_configure(
|
result = await hass.config_entries.flow.async_configure(
|
||||||
result["flow_id"],
|
result["flow_id"],
|
||||||
{
|
{
|
||||||
CONF_COUNTRY: "SE",
|
CONF_COUNTRY: "SE",
|
||||||
@ -144,4 +144,77 @@ async def test_form_babel_unresolved_language(hass: HomeAssistant) -> None:
|
|||||||
)
|
)
|
||||||
await hass.async_block_till_done()
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
assert result2["title"] == "Sweden"
|
assert result["title"] == "Sweden"
|
||||||
|
|
||||||
|
result = await hass.config_entries.flow.async_init(
|
||||||
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
||||||
|
)
|
||||||
|
|
||||||
|
result = await hass.config_entries.flow.async_configure(
|
||||||
|
result["flow_id"],
|
||||||
|
{
|
||||||
|
CONF_COUNTRY: "DE",
|
||||||
|
},
|
||||||
|
)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
|
result = await hass.config_entries.flow.async_configure(
|
||||||
|
result["flow_id"],
|
||||||
|
{
|
||||||
|
CONF_PROVINCE: "BW",
|
||||||
|
},
|
||||||
|
)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
|
assert result["type"] == FlowResultType.CREATE_ENTRY
|
||||||
|
assert result["title"] == "Germany, BW"
|
||||||
|
assert result["data"] == {
|
||||||
|
"country": "DE",
|
||||||
|
"province": "BW",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
async def test_form_babel_replace_dash_with_underscore(hass: HomeAssistant) -> None:
|
||||||
|
"""Test the config flow if using language with dash."""
|
||||||
|
hass.config.language = "en-GB"
|
||||||
|
|
||||||
|
result = await hass.config_entries.flow.async_init(
|
||||||
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
||||||
|
)
|
||||||
|
|
||||||
|
result = await hass.config_entries.flow.async_configure(
|
||||||
|
result["flow_id"],
|
||||||
|
{
|
||||||
|
CONF_COUNTRY: "SE",
|
||||||
|
},
|
||||||
|
)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
|
assert result["title"] == "Sweden"
|
||||||
|
|
||||||
|
result = await hass.config_entries.flow.async_init(
|
||||||
|
DOMAIN, context={"source": config_entries.SOURCE_USER}
|
||||||
|
)
|
||||||
|
|
||||||
|
result = await hass.config_entries.flow.async_configure(
|
||||||
|
result["flow_id"],
|
||||||
|
{
|
||||||
|
CONF_COUNTRY: "DE",
|
||||||
|
},
|
||||||
|
)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
|
result = await hass.config_entries.flow.async_configure(
|
||||||
|
result["flow_id"],
|
||||||
|
{
|
||||||
|
CONF_PROVINCE: "BW",
|
||||||
|
},
|
||||||
|
)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
|
assert result["type"] == FlowResultType.CREATE_ENTRY
|
||||||
|
assert result["title"] == "Germany, BW"
|
||||||
|
assert result["data"] == {
|
||||||
|
"country": "DE",
|
||||||
|
"province": "BW",
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user