2017-02-12 19:31:46 +00:00
|
|
|
"""Test hassbian config."""
|
|
|
|
import asyncio
|
|
|
|
from unittest.mock import patch
|
|
|
|
|
|
|
|
from homeassistant.bootstrap import async_setup_component
|
|
|
|
from homeassistant.components import config
|
2017-05-26 04:13:53 +00:00
|
|
|
from tests.common import mock_coro
|
2017-02-12 19:31:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def test_validate_config_ok(hass, test_client):
|
2017-02-14 05:34:36 +00:00
|
|
|
"""Test checking config."""
|
2017-02-12 19:31:46 +00:00
|
|
|
with patch.object(config, 'SECTIONS', ['core']):
|
|
|
|
yield from async_setup_component(hass, 'config', {})
|
|
|
|
|
2017-03-01 04:33:19 +00:00
|
|
|
yield from asyncio.sleep(0.1, loop=hass.loop)
|
|
|
|
|
2017-05-26 04:13:53 +00:00
|
|
|
client = yield from test_client(hass.http.app)
|
2017-02-12 19:31:46 +00:00
|
|
|
|
|
|
|
with patch(
|
|
|
|
'homeassistant.components.config.core.async_check_ha_config_file',
|
2017-02-16 07:19:34 +00:00
|
|
|
return_value=mock_coro()):
|
2017-02-12 19:31:46 +00:00
|
|
|
resp = yield from client.post('/api/config/core/check_config')
|
|
|
|
|
|
|
|
assert resp.status == 200
|
|
|
|
result = yield from resp.json()
|
|
|
|
assert result['result'] == 'valid'
|
|
|
|
assert result['errors'] is None
|
|
|
|
|
|
|
|
with patch(
|
|
|
|
'homeassistant.components.config.core.async_check_ha_config_file',
|
2017-02-16 07:19:34 +00:00
|
|
|
return_value=mock_coro('beer')):
|
2017-02-12 19:31:46 +00:00
|
|
|
resp = yield from client.post('/api/config/core/check_config')
|
|
|
|
|
|
|
|
assert resp.status == 200
|
|
|
|
result = yield from resp.json()
|
|
|
|
assert result['result'] == 'invalid'
|
|
|
|
assert result['errors'] == 'beer'
|