Add version sensor (#8912)

* Add version sensor

* Set version directly

* Rework tests and fix typo

* Remove additional blank line
This commit is contained in:
Fabian Affolter 2017-08-12 08:52:56 +02:00 committed by Pascal Vizeli
parent 49733b7fdf
commit c4550d02c5
2 changed files with 105 additions and 0 deletions

View file

@ -0,0 +1,50 @@
"""The test for the version sensor platform."""
import asyncio
import unittest
from unittest.mock import patch
from homeassistant.setup import setup_component
from tests.common import get_test_home_assistant
MOCK_VERSION = '10.0'
class TestVersionSensor(unittest.TestCase):
"""Test the Version sensor."""
def setup_method(self, method):
"""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_version_sensor(self):
"""Test the Version sensor."""
config = {
'sensor': {
'platform': 'version',
}
}
assert setup_component(self.hass, 'sensor', config)
@asyncio.coroutine
def test_version(self):
"""Test the Version sensor."""
config = {
'sensor': {
'platform': 'version',
'name': 'test',
}
}
with patch('homeassistant.const.__version__', MOCK_VERSION):
assert setup_component(self.hass, 'sensor', config)
self.hass.block_till_done()
state = self.hass.states.get('sensor.test')
self.assertEqual(state.state, '10.0')