61 lines
2.2 KiB
Python
61 lines
2.2 KiB
Python
"""Tests for the Gree Integration."""
|
|
from unittest.mock import patch
|
|
|
|
from homeassistant import config_entries, data_entry_flow
|
|
from homeassistant.components.gree.const import DOMAIN as GREE_DOMAIN
|
|
|
|
from .common import FakeDiscovery
|
|
|
|
|
|
async def test_creating_entry_sets_up_climate(hass):
|
|
"""Test setting up Gree creates the climate components."""
|
|
with patch(
|
|
"homeassistant.components.gree.climate.async_setup_entry", return_value=True
|
|
) as setup, patch(
|
|
"homeassistant.components.gree.bridge.Discovery", return_value=FakeDiscovery()
|
|
), patch(
|
|
"homeassistant.components.gree.config_flow.Discovery",
|
|
return_value=FakeDiscovery(),
|
|
):
|
|
result = await hass.config_entries.flow.async_init(
|
|
GREE_DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
# Confirmation form
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_FORM
|
|
|
|
result = await hass.config_entries.flow.async_configure(result["flow_id"], {})
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_CREATE_ENTRY
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(setup.mock_calls) == 1
|
|
|
|
|
|
async def test_creating_entry_has_no_devices(hass):
|
|
"""Test setting up Gree creates the climate components."""
|
|
with patch(
|
|
"homeassistant.components.gree.climate.async_setup_entry", return_value=True
|
|
) as setup, patch(
|
|
"homeassistant.components.gree.bridge.Discovery", return_value=FakeDiscovery()
|
|
) as discovery, patch(
|
|
"homeassistant.components.gree.config_flow.Discovery",
|
|
return_value=FakeDiscovery(),
|
|
) as discovery2:
|
|
discovery.return_value.mock_devices = []
|
|
discovery2.return_value.mock_devices = []
|
|
|
|
result = await hass.config_entries.flow.async_init(
|
|
GREE_DOMAIN, context={"source": config_entries.SOURCE_USER}
|
|
)
|
|
|
|
# Confirmation form
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_FORM
|
|
|
|
result = await hass.config_entries.flow.async_configure(result["flow_id"], {})
|
|
assert result["type"] == data_entry_flow.RESULT_TYPE_ABORT
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(setup.mock_calls) == 0
|