core/tests/components/mhz19/test_sensor.py

134 lines
4.9 KiB
Python
Raw Normal View History

"""Tests for MH-Z19 sensor."""
import unittest
from unittest.mock import DEFAULT, Mock, patch
Consolidate all platforms that have tests (#22109) * Moved climate components with tests into platform dirs. * Updated tests from climate component. * Moved binary_sensor components with tests into platform dirs. * Updated tests from binary_sensor component. * Moved calendar components with tests into platform dirs. * Updated tests from calendar component. * Moved camera components with tests into platform dirs. * Updated tests from camera component. * Moved cover components with tests into platform dirs. * Updated tests from cover component. * Moved device_tracker components with tests into platform dirs. * Updated tests from device_tracker component. * Moved fan components with tests into platform dirs. * Updated tests from fan component. * Moved geo_location components with tests into platform dirs. * Updated tests from geo_location component. * Moved image_processing components with tests into platform dirs. * Updated tests from image_processing component. * Moved light components with tests into platform dirs. * Updated tests from light component. * Moved lock components with tests into platform dirs. * Moved media_player components with tests into platform dirs. * Updated tests from media_player component. * Moved scene components with tests into platform dirs. * Moved sensor components with tests into platform dirs. * Updated tests from sensor component. * Moved switch components with tests into platform dirs. * Updated tests from sensor component. * Moved vacuum components with tests into platform dirs. * Updated tests from vacuum component. * Moved weather components with tests into platform dirs. * Fixed __init__.py files * Fixes for stuff moved as part of this branch. * Fix stuff needed to merge with balloob's branch. * Formatting issues. * Missing __init__.py files. * Fix-ups * Fixup * Regenerated requirements. * Linting errors fixed. * Fixed more broken tests. * Missing init files. * Fix broken tests. * More broken tests * There seems to be a thread race condition. I suspect the logger stuff is running in another thread, which means waiting until the aio loop is done is missing the log messages. Used sleep instead because that allows the logger thread to run. I think the api_streams sensor might not be thread safe. * Disabled tests, will remove sensor in #22147 * Updated coverage and codeowners.
2019-03-19 06:07:39 +00:00
import homeassistant.components.mhz19.sensor as mhz19
from homeassistant.components.sensor import DOMAIN
from homeassistant.const import CONCENTRATION_PARTS_PER_MILLION, TEMP_FAHRENHEIT
from homeassistant.setup import setup_component
from tests.common import assert_setup_component, get_test_home_assistant
class TestMHZ19Sensor(unittest.TestCase):
"""Test the MH-Z19 sensor."""
hass = None
def setup_method(self, method):
2018-08-19 20:29:08 +00:00
"""Set up things to be run when tests are started."""
self.hass = get_test_home_assistant()
def teardown_method(self, method):
"""Stop everything that was started."""
self.hass.stop()
def test_setup_missing_config(self):
"""Test setup with configuration missing required entries."""
with assert_setup_component(0):
2019-07-31 19:25:30 +00:00
assert setup_component(self.hass, DOMAIN, {"sensor": {"platform": "mhz19"}})
2019-07-31 19:25:30 +00:00
@patch("pmsensor.co2sensor.read_mh_z19", side_effect=OSError("test error"))
def test_setup_failed_connect(self, mock_co2):
"""Test setup when connection error occurs."""
2019-07-31 19:25:30 +00:00
assert not mhz19.setup_platform(
self.hass,
{"platform": "mhz19", mhz19.CONF_SERIAL_DEVICE: "test.serial"},
None,
)
def test_setup_connected(self):
"""Test setup when connection succeeds."""
2019-07-31 19:25:30 +00:00
with patch.multiple(
"pmsensor.co2sensor",
read_mh_z19=DEFAULT,
read_mh_z19_with_temperature=DEFAULT,
):
from pmsensor.co2sensor import read_mh_z19_with_temperature
2019-07-31 19:25:30 +00:00
read_mh_z19_with_temperature.return_value = None
mock_add = Mock()
2019-07-31 19:25:30 +00:00
assert mhz19.setup_platform(
self.hass,
{
"platform": "mhz19",
"monitored_conditions": ["co2", "temperature"],
mhz19.CONF_SERIAL_DEVICE: "test.serial",
},
mock_add,
)
assert mock_add.call_count == 1
2019-07-31 19:25:30 +00:00
@patch(
"pmsensor.co2sensor.read_mh_z19_with_temperature",
side_effect=OSError("test error"),
)
def aiohttp_client_update_oserror(self, mock_function):
"""Test MHZClient when library throws OSError."""
from pmsensor import co2sensor
2019-07-31 19:25:30 +00:00
client = mhz19.MHZClient(co2sensor, "test.serial")
client.update()
assert {} == client.data
2019-07-31 19:25:30 +00:00
@patch("pmsensor.co2sensor.read_mh_z19_with_temperature", return_value=(5001, 24))
def aiohttp_client_update_ppm_overflow(self, mock_function):
"""Test MHZClient when ppm is too high."""
from pmsensor import co2sensor
2019-07-31 19:25:30 +00:00
client = mhz19.MHZClient(co2sensor, "test.serial")
client.update()
2019-07-31 19:25:30 +00:00
assert client.data.get("co2") is None
2019-07-31 19:25:30 +00:00
@patch("pmsensor.co2sensor.read_mh_z19_with_temperature", return_value=(1000, 24))
def aiohttp_client_update_good_read(self, mock_function):
"""Test MHZClient when ppm is too high."""
from pmsensor import co2sensor
2019-07-31 19:25:30 +00:00
client = mhz19.MHZClient(co2sensor, "test.serial")
client.update()
2019-07-31 19:25:30 +00:00
assert {"temperature": 24, "co2": 1000} == client.data
2019-07-31 19:25:30 +00:00
@patch("pmsensor.co2sensor.read_mh_z19_with_temperature", return_value=(1000, 24))
def test_co2_sensor(self, mock_function):
"""Test CO2 sensor."""
from pmsensor import co2sensor
2019-07-31 19:25:30 +00:00
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
assert sensor.device_state_attributes == {"temperature": 24}
2019-07-31 19:25:30 +00:00
@patch("pmsensor.co2sensor.read_mh_z19_with_temperature", return_value=(1000, 24))
def test_temperature_sensor(self, mock_function):
"""Test temperature sensor."""
from pmsensor import co2sensor
2019-07-31 19:25:30 +00:00
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 == "°C"
assert sensor.should_poll
assert sensor.device_state_attributes == {"co2_concentration": 1000}
2019-07-31 19:25:30 +00:00
@patch("pmsensor.co2sensor.read_mh_z19_with_temperature", return_value=(1000, 24))
def test_temperature_sensor_f(self, mock_function):
"""Test temperature sensor."""
from pmsensor import co2sensor
2019-07-31 19:25:30 +00:00
client = mhz19.MHZClient(co2sensor, "test.serial")
sensor = mhz19.MHZ19Sensor(
2019-07-31 19:25:30 +00:00
client, mhz19.SENSOR_TEMPERATURE, TEMP_FAHRENHEIT, "name"
)
sensor.update()
assert sensor.state == 75.2