39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
"""Tests for the Gree Integration."""
|
|
|
|
from homeassistant.components.gree.const import DOMAIN as GREE_DOMAIN
|
|
from homeassistant.config_entries import ENTRY_STATE_LOADED, ENTRY_STATE_NOT_LOADED
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from tests.async_mock import patch
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_setup_simple(hass):
|
|
"""Test gree integration is setup."""
|
|
await async_setup_component(hass, GREE_DOMAIN, {})
|
|
await hass.async_block_till_done()
|
|
|
|
# No flows started
|
|
assert len(hass.config_entries.flow.async_progress()) == 0
|
|
|
|
|
|
async def test_unload_config_entry(hass):
|
|
"""Test that the async_unload_entry works."""
|
|
# As we have currently no configuration, we just to pass the domain here.
|
|
entry = MockConfigEntry(domain=GREE_DOMAIN)
|
|
entry.add_to_hass(hass)
|
|
|
|
with patch(
|
|
"homeassistant.components.gree.climate.async_setup_entry",
|
|
return_value=True,
|
|
) as climate_setup:
|
|
assert await async_setup_component(hass, GREE_DOMAIN, {})
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(climate_setup.mock_calls) == 1
|
|
assert entry.state == ENTRY_STATE_LOADED
|
|
|
|
await hass.config_entries.async_unload(entry.entry_id)
|
|
|
|
assert entry.state == ENTRY_STATE_NOT_LOADED
|