core/tests/components/sleepiq/test_sensor.py

67 lines
2.1 KiB
Python
Raw Normal View History

"""The tests for SleepIQ sensor platform."""
import unittest
from unittest.mock import MagicMock
import requests_mock
from homeassistant.setup import setup_component
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.sleepiq.sensor as sleepiq
from tests.components.sleepiq.test_init import mock_responses
from tests.common import get_test_home_assistant
class TestSleepIQSensorSetup(unittest.TestCase):
"""Tests the SleepIQ Sensor platform."""
DEVICES = []
def add_entities(self, devices):
"""Mock add devices."""
for device in devices:
self.DEVICES.append(device)
def setUp(self):
"""Initialize values for this testcase class."""
self.hass = get_test_home_assistant()
2019-07-31 19:25:30 +00:00
self.username = "foo"
self.password = "bar"
self.config = {"username": self.username, "password": self.password}
self.DEVICES = []
2017-01-07 00:47:25 +00:00
def tearDown(self): # pylint: disable=invalid-name
"""Stop everything that was started."""
self.hass.stop()
@requests_mock.Mocker()
def test_setup(self, mock):
2016-09-23 08:28:16 +00:00
"""Test for successfully setting up the SleepIQ platform."""
mock_responses(mock)
2019-07-31 19:25:30 +00:00
assert setup_component(self.hass, "sleepiq", {"sleepiq": self.config})
2019-07-31 19:25:30 +00:00
sleepiq.setup_platform(self.hass, self.config, self.add_entities, MagicMock())
assert 2 == len(self.DEVICES)
left_side = self.DEVICES[1]
2019-07-31 19:25:30 +00:00
assert "SleepNumber ILE Test1 SleepNumber" == left_side.name
assert 40 == left_side.state
right_side = self.DEVICES[0]
2019-07-31 19:25:30 +00:00
assert "SleepNumber ILE Test2 SleepNumber" == right_side.name
assert 80 == right_side.state
@requests_mock.Mocker()
def test_setup_sigle(self, mock):
"""Test for successfully setting up the SleepIQ platform."""
mock_responses(mock, single=True)
2019-07-31 19:25:30 +00:00
assert setup_component(self.hass, "sleepiq", {"sleepiq": self.config})
2019-07-31 19:25:30 +00:00
sleepiq.setup_platform(self.hass, self.config, self.add_entities, MagicMock())
assert 1 == len(self.DEVICES)
right_side = self.DEVICES[0]
2019-07-31 19:25:30 +00:00
assert "SleepNumber ILE Test1 SleepNumber" == right_side.name
assert 40 == right_side.state