"""Tests for the PVOutput integration.""" from unittest.mock import MagicMock from pvo import PVOutputAuthenticationError, PVOutputConnectionError import pytest from homeassistant.components.pvoutput.const import CONF_SYSTEM_ID, DOMAIN from homeassistant.components.sensor import DOMAIN as SENSOR_DOMAIN from homeassistant.config_entries import SOURCE_REAUTH, ConfigEntryState from homeassistant.const import CONF_API_KEY from homeassistant.core import HomeAssistant from homeassistant.setup import async_setup_component from tests.common import MockConfigEntry async def test_load_unload_config_entry( hass: HomeAssistant, mock_config_entry: MockConfigEntry, mock_pvoutput: MagicMock, ) -> None: """Test the PVOutput configuration entry loading/unloading.""" mock_config_entry.add_to_hass(hass) await hass.config_entries.async_setup(mock_config_entry.entry_id) await hass.async_block_till_done() assert mock_config_entry.state is ConfigEntryState.LOADED assert len(mock_pvoutput.status.mock_calls) == 1 assert len(mock_pvoutput.system.mock_calls) == 1 await hass.config_entries.async_unload(mock_config_entry.entry_id) await hass.async_block_till_done() assert not hass.data.get(DOMAIN) assert mock_config_entry.state is ConfigEntryState.NOT_LOADED async def test_config_entry_not_ready( hass: HomeAssistant, mock_config_entry: MockConfigEntry, mock_pvoutput: MagicMock, ) -> None: """Test the PVOutput configuration entry not ready.""" mock_pvoutput.status.side_effect = PVOutputConnectionError mock_config_entry.add_to_hass(hass) await hass.config_entries.async_setup(mock_config_entry.entry_id) await hass.async_block_till_done() assert len(mock_pvoutput.status.mock_calls) == 1 assert mock_config_entry.state is ConfigEntryState.SETUP_RETRY async def test_config_entry_authentication_failed( hass: HomeAssistant, mock_config_entry: MockConfigEntry, mock_pvoutput: MagicMock, ) -> None: """Test trigger reauthentication flow.""" mock_config_entry.add_to_hass(hass) mock_pvoutput.status.side_effect = PVOutputAuthenticationError await hass.config_entries.async_setup(mock_config_entry.entry_id) await hass.async_block_till_done() assert mock_config_entry.state is ConfigEntryState.SETUP_ERROR flows = hass.config_entries.flow.async_progress() assert len(flows) == 1 flow = flows[0] assert flow.get("step_id") == "reauth_confirm" assert flow.get("handler") == DOMAIN assert "context" in flow assert flow["context"].get("source") == SOURCE_REAUTH assert flow["context"].get("entry_id") == mock_config_entry.entry_id async def test_import_config( hass: HomeAssistant, mock_pvoutput_config_flow: MagicMock, mock_pvoutput: MagicMock, caplog: pytest.LogCaptureFixture, ) -> None: """Test PVOutput being set up from config via import.""" assert await async_setup_component( hass, SENSOR_DOMAIN, { SENSOR_DOMAIN: { "platform": DOMAIN, CONF_SYSTEM_ID: 12345, CONF_API_KEY: "abcdefghijklmnopqrstuvwxyz", } }, ) await hass.async_block_till_done() assert len(hass.config_entries.async_entries(DOMAIN)) == 1 assert len(mock_pvoutput.status.mock_calls) == 1 assert len(mock_pvoutput.system.mock_calls) == 1 assert "the PVOutput platform in YAML is deprecated" in caplog.text