Remove "Awair" from score entity name (#77522)
This commit is contained in:
parent
cac4015882
commit
3e066e469a
2 changed files with 11 additions and 11 deletions
|
@ -63,7 +63,7 @@ SENSOR_TYPE_SCORE = AwairSensorEntityDescription(
|
||||||
key=API_SCORE,
|
key=API_SCORE,
|
||||||
icon="mdi:blur",
|
icon="mdi:blur",
|
||||||
native_unit_of_measurement=PERCENTAGE,
|
native_unit_of_measurement=PERCENTAGE,
|
||||||
name="Awair score",
|
name="Score",
|
||||||
unique_id_tag="score", # matches legacy format
|
unique_id_tag="score", # matches legacy format
|
||||||
state_class=SensorStateClass.MEASUREMENT,
|
state_class=SensorStateClass.MEASUREMENT,
|
||||||
)
|
)
|
||||||
|
|
|
@ -72,7 +72,7 @@ async def test_awair_gen1_sensors(hass: HomeAssistant, user, cloud_devices, gen1
|
||||||
assert_expected_properties(
|
assert_expected_properties(
|
||||||
hass,
|
hass,
|
||||||
registry,
|
registry,
|
||||||
"sensor.living_room_awair_score",
|
"sensor.living_room_score",
|
||||||
f"{AWAIR_UUID}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
f"{AWAIR_UUID}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
||||||
"88",
|
"88",
|
||||||
{},
|
{},
|
||||||
|
@ -164,7 +164,7 @@ async def test_awair_gen2_sensors(hass: HomeAssistant, user, cloud_devices, gen2
|
||||||
assert_expected_properties(
|
assert_expected_properties(
|
||||||
hass,
|
hass,
|
||||||
registry,
|
registry,
|
||||||
"sensor.living_room_awair_score",
|
"sensor.living_room_score",
|
||||||
f"{AWAIR_UUID}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
f"{AWAIR_UUID}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
||||||
"97",
|
"97",
|
||||||
{},
|
{},
|
||||||
|
@ -197,7 +197,7 @@ async def test_local_awair_sensors(hass: HomeAssistant, local_devices, local_dat
|
||||||
assert_expected_properties(
|
assert_expected_properties(
|
||||||
hass,
|
hass,
|
||||||
registry,
|
registry,
|
||||||
"sensor.mock_title_awair_score",
|
"sensor.mock_title_score",
|
||||||
f"{local_devices['device_uuid']}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
f"{local_devices['device_uuid']}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
||||||
"94",
|
"94",
|
||||||
{},
|
{},
|
||||||
|
@ -214,7 +214,7 @@ async def test_awair_mint_sensors(hass: HomeAssistant, user, cloud_devices, mint
|
||||||
assert_expected_properties(
|
assert_expected_properties(
|
||||||
hass,
|
hass,
|
||||||
registry,
|
registry,
|
||||||
"sensor.living_room_awair_score",
|
"sensor.living_room_score",
|
||||||
f"{AWAIR_UUID}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
f"{AWAIR_UUID}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
||||||
"98",
|
"98",
|
||||||
{},
|
{},
|
||||||
|
@ -255,7 +255,7 @@ async def test_awair_glow_sensors(hass: HomeAssistant, user, cloud_devices, glow
|
||||||
assert_expected_properties(
|
assert_expected_properties(
|
||||||
hass,
|
hass,
|
||||||
registry,
|
registry,
|
||||||
"sensor.living_room_awair_score",
|
"sensor.living_room_score",
|
||||||
f"{AWAIR_UUID}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
f"{AWAIR_UUID}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
||||||
"93",
|
"93",
|
||||||
{},
|
{},
|
||||||
|
@ -275,7 +275,7 @@ async def test_awair_omni_sensors(hass: HomeAssistant, user, cloud_devices, omni
|
||||||
assert_expected_properties(
|
assert_expected_properties(
|
||||||
hass,
|
hass,
|
||||||
registry,
|
registry,
|
||||||
"sensor.living_room_awair_score",
|
"sensor.living_room_score",
|
||||||
f"{AWAIR_UUID}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
f"{AWAIR_UUID}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
||||||
"99",
|
"99",
|
||||||
{},
|
{},
|
||||||
|
@ -315,7 +315,7 @@ async def test_awair_offline(hass: HomeAssistant, user, cloud_devices, awair_off
|
||||||
# device *should* have if it's online. If we don't see it,
|
# device *should* have if it's online. If we don't see it,
|
||||||
# then we probably didn't set anything up. Which is correct,
|
# then we probably didn't set anything up. Which is correct,
|
||||||
# in this case.
|
# in this case.
|
||||||
assert hass.states.get("sensor.living_room_awair_score") is None
|
assert hass.states.get("sensor.living_room_score") is None
|
||||||
|
|
||||||
|
|
||||||
async def test_awair_unavailable(
|
async def test_awair_unavailable(
|
||||||
|
@ -330,18 +330,18 @@ async def test_awair_unavailable(
|
||||||
assert_expected_properties(
|
assert_expected_properties(
|
||||||
hass,
|
hass,
|
||||||
registry,
|
registry,
|
||||||
"sensor.living_room_awair_score",
|
"sensor.living_room_score",
|
||||||
f"{AWAIR_UUID}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
f"{AWAIR_UUID}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
||||||
"88",
|
"88",
|
||||||
{},
|
{},
|
||||||
)
|
)
|
||||||
|
|
||||||
with patch("python_awair.AwairClient.query", side_effect=awair_offline):
|
with patch("python_awair.AwairClient.query", side_effect=awair_offline):
|
||||||
await async_update_entity(hass, "sensor.living_room_awair_score")
|
await async_update_entity(hass, "sensor.living_room_score")
|
||||||
assert_expected_properties(
|
assert_expected_properties(
|
||||||
hass,
|
hass,
|
||||||
registry,
|
registry,
|
||||||
"sensor.living_room_awair_score",
|
"sensor.living_room_score",
|
||||||
f"{AWAIR_UUID}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
f"{AWAIR_UUID}_{SENSOR_TYPES_MAP[API_SCORE].unique_id_tag}",
|
||||||
STATE_UNAVAILABLE,
|
STATE_UNAVAILABLE,
|
||||||
{},
|
{},
|
||||||
|
|
Loading…
Add table
Reference in a new issue