2017-02-27 19:19:11 +00:00
|
|
|
"""Tests for MH-Z19 sensor."""
|
2021-01-01 21:31:56 +00:00
|
|
|
from unittest.mock import DEFAULT, Mock, patch
|
|
|
|
|
2020-10-10 11:05:08 +00:00
|
|
|
from pmsensor import co2sensor
|
|
|
|
from pmsensor.co2sensor import read_mh_z19_with_temperature
|
2017-02-27 19:19:11 +00:00
|
|
|
|
2019-03-19 06:07:39 +00:00
|
|
|
import homeassistant.components.mhz19.sensor as mhz19
|
2019-12-09 13:20:40 +00:00
|
|
|
from homeassistant.components.sensor import DOMAIN
|
2020-04-10 17:17:46 +00:00
|
|
|
from homeassistant.const import (
|
|
|
|
CONCENTRATION_PARTS_PER_MILLION,
|
|
|
|
TEMP_CELSIUS,
|
|
|
|
TEMP_FAHRENHEIT,
|
|
|
|
)
|
2020-10-10 11:05:08 +00:00
|
|
|
from homeassistant.setup import async_setup_component
|
2019-12-09 13:20:40 +00:00
|
|
|
|
2020-10-10 11:05:08 +00:00
|
|
|
from tests.common import assert_setup_component
|
2017-02-27 19:19:11 +00:00
|
|
|
|
|
|
|
|
2020-10-10 11:05:08 +00:00
|
|
|
async def test_setup_missing_config(hass):
|
|
|
|
"""Test setup with configuration missing required entries."""
|
|
|
|
with assert_setup_component(0):
|
|
|
|
assert await async_setup_component(
|
|
|
|
hass, DOMAIN, {"sensor": {"platform": "mhz19"}}
|
|
|
|
)
|
2017-02-27 19:19:11 +00:00
|
|
|
|
|
|
|
|
2020-10-10 11:05:08 +00:00
|
|
|
@patch("pmsensor.co2sensor.read_mh_z19", side_effect=OSError("test error"))
|
|
|
|
async def test_setup_failed_connect(mock_co2, hass):
|
|
|
|
"""Test setup when connection error occurs."""
|
|
|
|
assert not mhz19.setup_platform(
|
|
|
|
hass,
|
|
|
|
{"platform": "mhz19", mhz19.CONF_SERIAL_DEVICE: "test.serial"},
|
|
|
|
None,
|
|
|
|
)
|
2017-02-27 19:19:11 +00:00
|
|
|
|
|
|
|
|
2020-10-10 11:05:08 +00:00
|
|
|
async def test_setup_connected(hass):
|
|
|
|
"""Test setup when connection succeeds."""
|
|
|
|
with patch.multiple(
|
|
|
|
"pmsensor.co2sensor",
|
|
|
|
read_mh_z19=DEFAULT,
|
|
|
|
read_mh_z19_with_temperature=DEFAULT,
|
|
|
|
):
|
|
|
|
read_mh_z19_with_temperature.return_value = None
|
|
|
|
mock_add = Mock()
|
|
|
|
assert mhz19.setup_platform(
|
|
|
|
hass,
|
|
|
|
{
|
|
|
|
"platform": "mhz19",
|
|
|
|
"monitored_conditions": ["co2", "temperature"],
|
|
|
|
mhz19.CONF_SERIAL_DEVICE: "test.serial",
|
|
|
|
},
|
|
|
|
mock_add,
|
2019-07-31 19:25:30 +00:00
|
|
|
)
|
2020-10-10 11:05:08 +00:00
|
|
|
assert mock_add.call_count == 1
|
2017-02-27 19:19:11 +00:00
|
|
|
|
2020-10-10 11:05:08 +00:00
|
|
|
|
|
|
|
@patch(
|
|
|
|
"pmsensor.co2sensor.read_mh_z19_with_temperature",
|
|
|
|
side_effect=OSError("test error"),
|
|
|
|
)
|
|
|
|
async def aiohttp_client_update_oserror(mock_function):
|
|
|
|
"""Test MHZClient when library throws OSError."""
|
|
|
|
client = mhz19.MHZClient(co2sensor, "test.serial")
|
|
|
|
client.update()
|
|
|
|
assert {} == client.data
|
|
|
|
|
|
|
|
|
|
|
|
@patch("pmsensor.co2sensor.read_mh_z19_with_temperature", return_value=(5001, 24))
|
|
|
|
async def aiohttp_client_update_ppm_overflow(mock_function):
|
|
|
|
"""Test MHZClient when ppm is too high."""
|
|
|
|
client = mhz19.MHZClient(co2sensor, "test.serial")
|
|
|
|
client.update()
|
|
|
|
assert client.data.get("co2") is None
|
|
|
|
|
|
|
|
|
|
|
|
@patch("pmsensor.co2sensor.read_mh_z19_with_temperature", return_value=(1000, 24))
|
|
|
|
async def aiohttp_client_update_good_read(mock_function):
|
|
|
|
"""Test MHZClient when ppm is too high."""
|
|
|
|
client = mhz19.MHZClient(co2sensor, "test.serial")
|
|
|
|
client.update()
|
|
|
|
assert {"temperature": 24, "co2": 1000} == client.data
|
|
|
|
|
|
|
|
|
|
|
|
@patch("pmsensor.co2sensor.read_mh_z19_with_temperature", return_value=(1000, 24))
|
|
|
|
async def test_co2_sensor(mock_function):
|
|
|
|
"""Test CO2 sensor."""
|
|
|
|
client = mhz19.MHZClient(co2sensor, "test.serial")
|
|
|
|
sensor = mhz19.MHZ19Sensor(client, mhz19.SENSOR_CO2, None, "name")
|
|
|
|
sensor.update()
|
|
|
|
|
|
|
|
assert sensor.name == "name: CO2"
|
|
|
|
assert sensor.state == 1000
|
|
|
|
assert sensor.unit_of_measurement == CONCENTRATION_PARTS_PER_MILLION
|
|
|
|
assert sensor.should_poll
|
2021-03-11 19:11:25 +00:00
|
|
|
assert sensor.extra_state_attributes == {"temperature": 24}
|
2020-10-10 11:05:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
@patch("pmsensor.co2sensor.read_mh_z19_with_temperature", return_value=(1000, 24))
|
|
|
|
async def test_temperature_sensor(mock_function):
|
|
|
|
"""Test temperature sensor."""
|
|
|
|
client = mhz19.MHZClient(co2sensor, "test.serial")
|
|
|
|
sensor = mhz19.MHZ19Sensor(client, mhz19.SENSOR_TEMPERATURE, None, "name")
|
|
|
|
sensor.update()
|
|
|
|
|
|
|
|
assert sensor.name == "name: Temperature"
|
|
|
|
assert sensor.state == 24
|
|
|
|
assert sensor.unit_of_measurement == TEMP_CELSIUS
|
|
|
|
assert sensor.should_poll
|
2021-03-11 19:11:25 +00:00
|
|
|
assert sensor.extra_state_attributes == {"co2_concentration": 1000}
|
2020-10-10 11:05:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
@patch("pmsensor.co2sensor.read_mh_z19_with_temperature", return_value=(1000, 24))
|
|
|
|
async def test_temperature_sensor_f(mock_function):
|
|
|
|
"""Test temperature sensor."""
|
|
|
|
client = mhz19.MHZClient(co2sensor, "test.serial")
|
|
|
|
sensor = mhz19.MHZ19Sensor(
|
|
|
|
client, mhz19.SENSOR_TEMPERATURE, TEMP_FAHRENHEIT, "name"
|
2019-07-31 19:25:30 +00:00
|
|
|
)
|
2020-10-10 11:05:08 +00:00
|
|
|
sensor.update()
|
2017-02-27 19:19:11 +00:00
|
|
|
|
2020-10-10 11:05:08 +00:00
|
|
|
assert sensor.state == 75.2
|