28 lines
912 B
Python
28 lines
912 B
Python
"""Tests for the cloud component."""
|
|
|
|
from homeassistant.components import cloud
|
|
from homeassistant.components.cloud import const
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from tests.async_mock import AsyncMock, patch
|
|
|
|
|
|
async def mock_cloud(hass, config=None):
|
|
"""Mock cloud."""
|
|
assert await async_setup_component(hass, cloud.DOMAIN, {"cloud": config or {}})
|
|
cloud_inst = hass.data["cloud"]
|
|
with patch("hass_nabucasa.Cloud.run_executor", AsyncMock(return_value=None)):
|
|
await cloud_inst.start()
|
|
|
|
|
|
def mock_cloud_prefs(hass, prefs={}):
|
|
"""Fixture for cloud component."""
|
|
prefs_to_set = {
|
|
const.PREF_ENABLE_ALEXA: True,
|
|
const.PREF_ENABLE_GOOGLE: True,
|
|
const.PREF_GOOGLE_SECURE_DEVICES_PIN: None,
|
|
}
|
|
prefs_to_set.update(prefs)
|
|
hass.data[cloud.DOMAIN].client._prefs._prefs = prefs_to_set
|
|
return hass.data[cloud.DOMAIN].client._prefs
|