* Move temperature conversions to entity base class (1/8) * Update integrations a-c * Leave old temperature conversion until all integrations are migrated * tweak * Use contextlib.suppress * Remove the MeasurableUnitEntity mixin * Address comments, add tests * Fix f-string * Drop deprecation warning from base entity class * Update with _attr-shorthand * Fix rebase mistakes * Fix additional rebase mistakes * Only report temperature conversion once * Fix additional rebase mistakes * Format homeassistant/components/bbox/sensor.py * Fix check for overidden _attr_state * Remove test workarounds from implementation * Remove useless None-check * Tweaks * Migrate new sensors a-c * Update climacell * Push deprecation of temperature conversion forward * Override __repr__ in SensorEntity * Include native_value in SensorEntity attributes * Pylint * Black * Black * Fix rebase mistakes * black * Fix rebase mistakes * Revert changes in august/sensor.py * Revert handling of unit converted restored state * Apply code review suggestion * Fix arlo test
30 lines
1.4 KiB
Python
30 lines
1.4 KiB
Python
"""The test for sensor device automation."""
|
|
from homeassistant.const import ATTR_UNIT_OF_MEASUREMENT, TEMP_CELSIUS, TEMP_FAHRENHEIT
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
|
|
async def test_deprecated_temperature_conversion(
|
|
hass, caplog, enable_custom_integrations
|
|
):
|
|
"""Test warning on deprecated temperature conversion."""
|
|
platform = getattr(hass.components, "test.sensor")
|
|
platform.init(empty=True)
|
|
platform.ENTITIES["0"] = platform.MockSensor(
|
|
name="Test", native_value="0.0", native_unit_of_measurement=TEMP_FAHRENHEIT
|
|
)
|
|
|
|
entity0 = platform.ENTITIES["0"]
|
|
assert await async_setup_component(hass, "sensor", {"sensor": {"platform": "test"}})
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get(entity0.entity_id)
|
|
assert state.state == "-17.8"
|
|
assert state.attributes[ATTR_UNIT_OF_MEASUREMENT] == TEMP_CELSIUS
|
|
assert (
|
|
"Entity sensor.test (<class 'custom_components.test.sensor.MockSensor'>) "
|
|
"with device_class None reports a temperature in °F which will be converted to "
|
|
"°C. Temperature conversion for entities without correct device_class is "
|
|
"deprecated and will be removed from Home Assistant Core 2022.3. Please update "
|
|
"your configuration if device_class is manually configured, otherwise report it "
|
|
"to the custom component author."
|
|
) in caplog.text
|