2018-02-20 23:24:31 +00:00
|
|
|
"""Fixtures for Hass.io."""
|
|
|
|
import os
|
|
|
|
from unittest.mock import patch, Mock
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
from homeassistant.setup import async_setup_component
|
2018-10-03 11:10:38 +00:00
|
|
|
from homeassistant.components.hassio.handler import HassIO, HassioAPIError
|
2018-02-20 23:24:31 +00:00
|
|
|
|
|
|
|
from tests.common import mock_coro
|
2018-02-21 21:42:55 +00:00
|
|
|
from . import API_PASSWORD, HASSIO_TOKEN
|
2018-02-20 23:24:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def hassio_env():
|
|
|
|
"""Fixture to inject hassio env."""
|
|
|
|
with patch.dict(os.environ, {'HASSIO': "127.0.0.1"}), \
|
|
|
|
patch('homeassistant.components.hassio.HassIO.is_connected',
|
|
|
|
Mock(return_value=mock_coro(
|
|
|
|
{"result": "ok", "data": {}}))), \
|
|
|
|
patch.dict(os.environ, {'HASSIO_TOKEN': "123456"}), \
|
|
|
|
patch('homeassistant.components.hassio.HassIO.'
|
|
|
|
'get_homeassistant_info',
|
2018-10-03 11:10:38 +00:00
|
|
|
Mock(side_effect=HassioAPIError())):
|
2018-02-20 23:24:31 +00:00
|
|
|
yield
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
2018-03-15 20:49:49 +00:00
|
|
|
def hassio_client(hassio_env, hass, aiohttp_client):
|
2018-02-20 23:24:31 +00:00
|
|
|
"""Create mock hassio http client."""
|
|
|
|
with patch('homeassistant.components.hassio.HassIO.update_hass_api',
|
|
|
|
Mock(return_value=mock_coro({"result": "ok"}))), \
|
|
|
|
patch('homeassistant.components.hassio.HassIO.'
|
|
|
|
'get_homeassistant_info',
|
2018-10-03 11:10:38 +00:00
|
|
|
Mock(side_effect=HassioAPIError())):
|
2018-02-20 23:24:31 +00:00
|
|
|
hass.loop.run_until_complete(async_setup_component(hass, 'hassio', {
|
|
|
|
'http': {
|
|
|
|
'api_password': API_PASSWORD
|
|
|
|
}
|
|
|
|
}))
|
2018-03-15 20:49:49 +00:00
|
|
|
yield hass.loop.run_until_complete(aiohttp_client(hass.http.app))
|
2018-02-21 21:42:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def hassio_handler(hass, aioclient_mock):
|
|
|
|
"""Create mock hassio handler."""
|
|
|
|
websession = hass.helpers.aiohttp_client.async_get_clientsession()
|
|
|
|
|
|
|
|
with patch.dict(os.environ, {'HASSIO_TOKEN': HASSIO_TOKEN}):
|
|
|
|
yield HassIO(hass.loop, websession, "127.0.0.1")
|