56 lines
1.7 KiB
Python
56 lines
1.7 KiB
Python
"""
|
|
tests.test_component_demo
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Tests demo component.
|
|
"""
|
|
import json
|
|
import os
|
|
import unittest
|
|
from unittest.mock import patch
|
|
|
|
from homeassistant.components import demo, device_tracker
|
|
from homeassistant.remote import JSONEncoder
|
|
|
|
from tests.common import mock_http_component, get_test_home_assistant
|
|
|
|
|
|
@patch('homeassistant.components.sun.setup')
|
|
class TestDemo(unittest.TestCase):
|
|
""" Test the demo module. """
|
|
|
|
def setUp(self): # pylint: disable=invalid-name
|
|
self.hass = get_test_home_assistant()
|
|
mock_http_component(self.hass)
|
|
|
|
def tearDown(self): # pylint: disable=invalid-name
|
|
""" Stop down stuff we started. """
|
|
self.hass.stop()
|
|
|
|
try:
|
|
os.remove(self.hass.config.path(device_tracker.YAML_DEVICES))
|
|
except FileNotFoundError:
|
|
pass
|
|
|
|
def test_if_demo_state_shows_by_default(self, mock_sun_setup):
|
|
""" Test if demo state shows if we give no configuration. """
|
|
demo.setup(self.hass, {demo.DOMAIN: {}})
|
|
|
|
self.assertIsNotNone(self.hass.states.get('a.Demo_Mode'))
|
|
|
|
def test_hiding_demo_state(self, mock_sun_setup):
|
|
""" Test if you can hide the demo card. """
|
|
demo.setup(self.hass, {demo.DOMAIN: {'hide_demo_state': 1}})
|
|
|
|
self.assertIsNone(self.hass.states.get('a.Demo_Mode'))
|
|
|
|
def test_all_entities_can_be_loaded_over_json(self, mock_sun_setup):
|
|
""" Test if you can hide the demo card. """
|
|
demo.setup(self.hass, {demo.DOMAIN: {'hide_demo_state': 1}})
|
|
|
|
try:
|
|
json.dumps(self.hass.states.all(), cls=JSONEncoder)
|
|
except Exception:
|
|
self.fail('Unable to convert all demo entities to JSON. '
|
|
'Wrong data in state machine!')
|