"""Test the Scrape config flow.""" from __future__ import annotations from unittest.mock import AsyncMock from homeassistant import config_entries from homeassistant.components.statistics import DOMAIN from homeassistant.components.statistics.sensor import ( CONF_KEEP_LAST_SAMPLE, CONF_MAX_AGE, CONF_PERCENTILE, CONF_PRECISION, CONF_SAMPLES_MAX_BUFFER_SIZE, CONF_STATE_CHARACTERISTIC, DEFAULT_NAME, STAT_AVERAGE_LINEAR, STAT_COUNT, ) from homeassistant.const import CONF_ENTITY_ID, CONF_NAME from homeassistant.core import HomeAssistant from homeassistant.data_entry_flow import FlowResultType from tests.common import MockConfigEntry async def test_form_sensor(hass: HomeAssistant, mock_setup_entry: AsyncMock) -> None: """Test we get the form for sensor.""" result = await hass.config_entries.flow.async_init( DOMAIN, context={"source": config_entries.SOURCE_USER} ) assert result["step_id"] == "user" assert result["type"] is FlowResultType.FORM result = await hass.config_entries.flow.async_configure( result["flow_id"], { CONF_NAME: DEFAULT_NAME, CONF_ENTITY_ID: "sensor.test_monitored", }, ) await hass.async_block_till_done() result = await hass.config_entries.flow.async_configure( result["flow_id"], { CONF_STATE_CHARACTERISTIC: STAT_AVERAGE_LINEAR, }, ) await hass.async_block_till_done() result = await hass.config_entries.flow.async_configure( result["flow_id"], { CONF_SAMPLES_MAX_BUFFER_SIZE: 20.0, CONF_MAX_AGE: {"hours": 8, "minutes": 0, "seconds": 0}, }, ) await hass.async_block_till_done() assert result["type"] is FlowResultType.CREATE_ENTRY assert result["version"] == 1 assert result["options"] == { CONF_NAME: DEFAULT_NAME, CONF_ENTITY_ID: "sensor.test_monitored", CONF_STATE_CHARACTERISTIC: STAT_AVERAGE_LINEAR, CONF_SAMPLES_MAX_BUFFER_SIZE: 20.0, CONF_MAX_AGE: {"hours": 8, "minutes": 0, "seconds": 0}, CONF_KEEP_LAST_SAMPLE: False, CONF_PERCENTILE: 50.0, CONF_PRECISION: 2.0, } assert len(mock_setup_entry.mock_calls) == 1 async def test_form_binary_sensor( hass: HomeAssistant, mock_setup_entry: AsyncMock ) -> None: """Test we get the form for binary sensor.""" result = await hass.config_entries.flow.async_init( DOMAIN, context={"source": config_entries.SOURCE_USER} ) assert result["step_id"] == "user" assert result["type"] is FlowResultType.FORM result = await hass.config_entries.flow.async_configure( result["flow_id"], { CONF_NAME: DEFAULT_NAME, CONF_ENTITY_ID: "binary_sensor.test_monitored", }, ) await hass.async_block_till_done() result = await hass.config_entries.flow.async_configure( result["flow_id"], { CONF_STATE_CHARACTERISTIC: STAT_COUNT, }, ) await hass.async_block_till_done() result = await hass.config_entries.flow.async_configure( result["flow_id"], { CONF_SAMPLES_MAX_BUFFER_SIZE: 20.0, CONF_MAX_AGE: {"hours": 8, "minutes": 0, "seconds": 0}, }, ) await hass.async_block_till_done() assert result["type"] is FlowResultType.CREATE_ENTRY assert result["version"] == 1 assert result["options"] == { CONF_NAME: DEFAULT_NAME, CONF_ENTITY_ID: "binary_sensor.test_monitored", CONF_STATE_CHARACTERISTIC: STAT_COUNT, CONF_SAMPLES_MAX_BUFFER_SIZE: 20.0, CONF_MAX_AGE: {"hours": 8, "minutes": 0, "seconds": 0}, CONF_KEEP_LAST_SAMPLE: False, CONF_PERCENTILE: 50.0, CONF_PRECISION: 2.0, } assert len(mock_setup_entry.mock_calls) == 1 async def test_options_flow(hass: HomeAssistant, loaded_entry: MockConfigEntry) -> None: """Test options flow.""" result = await hass.config_entries.options.async_init(loaded_entry.entry_id) assert result["type"] is FlowResultType.FORM assert result["step_id"] == "init" result = await hass.config_entries.options.async_configure( result["flow_id"], user_input={ CONF_SAMPLES_MAX_BUFFER_SIZE: 25.0, CONF_MAX_AGE: {"hours": 16, "minutes": 0, "seconds": 0}, }, ) await hass.async_block_till_done() assert result["type"] is FlowResultType.CREATE_ENTRY assert result["data"] == { CONF_NAME: DEFAULT_NAME, CONF_ENTITY_ID: "sensor.test_monitored", CONF_STATE_CHARACTERISTIC: STAT_AVERAGE_LINEAR, CONF_SAMPLES_MAX_BUFFER_SIZE: 25.0, CONF_MAX_AGE: {"hours": 16, "minutes": 0, "seconds": 0}, CONF_KEEP_LAST_SAMPLE: False, CONF_PERCENTILE: 50.0, CONF_PRECISION: 2.0, } await hass.async_block_till_done() # Check the entity was updated, no new entity was created assert len(hass.states.async_all()) == 2 state = hass.states.get("sensor.statistical_characteristic") assert state is not None async def test_validation_options( hass: HomeAssistant, mock_setup_entry: AsyncMock ) -> None: """Test validation.""" result = await hass.config_entries.flow.async_init( DOMAIN, context={"source": config_entries.SOURCE_USER} ) assert result["step_id"] == "user" assert result["type"] is FlowResultType.FORM result = await hass.config_entries.flow.async_configure( result["flow_id"], { CONF_NAME: DEFAULT_NAME, CONF_ENTITY_ID: "sensor.test_monitored", }, ) await hass.async_block_till_done() result = await hass.config_entries.flow.async_configure( result["flow_id"], { CONF_STATE_CHARACTERISTIC: STAT_AVERAGE_LINEAR, }, ) await hass.async_block_till_done() result = await hass.config_entries.flow.async_configure( result["flow_id"], {}, ) await hass.async_block_till_done() assert result["step_id"] == "options" assert result["type"] is FlowResultType.FORM assert result["errors"] == {"base": "missing_max_age_or_sampling_size"} result = await hass.config_entries.flow.async_configure( result["flow_id"], {CONF_KEEP_LAST_SAMPLE: True, CONF_SAMPLES_MAX_BUFFER_SIZE: 20.0}, ) await hass.async_block_till_done() assert result["step_id"] == "options" assert result["type"] is FlowResultType.FORM assert result["errors"] == {"base": "missing_keep_last_sample"} result = await hass.config_entries.flow.async_configure( result["flow_id"], { CONF_SAMPLES_MAX_BUFFER_SIZE: 20.0, CONF_MAX_AGE: {"hours": 8, "minutes": 0, "seconds": 0}, }, ) await hass.async_block_till_done() assert result["type"] is FlowResultType.CREATE_ENTRY assert result["version"] == 1 assert result["options"] == { CONF_NAME: DEFAULT_NAME, CONF_ENTITY_ID: "sensor.test_monitored", CONF_STATE_CHARACTERISTIC: STAT_AVERAGE_LINEAR, CONF_SAMPLES_MAX_BUFFER_SIZE: 20.0, CONF_MAX_AGE: {"hours": 8, "minutes": 0, "seconds": 0}, CONF_KEEP_LAST_SAMPLE: False, CONF_PERCENTILE: 50.0, CONF_PRECISION: 2.0, } assert len(mock_setup_entry.mock_calls) == 1 async def test_entry_already_exist( hass: HomeAssistant, loaded_entry: MockConfigEntry ) -> None: """Test abort when entry already exist.""" result = await hass.config_entries.flow.async_init( DOMAIN, context={"source": config_entries.SOURCE_USER} ) assert result["step_id"] == "user" assert result["type"] is FlowResultType.FORM result = await hass.config_entries.flow.async_configure( result["flow_id"], { CONF_NAME: DEFAULT_NAME, CONF_ENTITY_ID: "sensor.test_monitored", }, ) await hass.async_block_till_done() result = await hass.config_entries.flow.async_configure( result["flow_id"], { CONF_STATE_CHARACTERISTIC: STAT_AVERAGE_LINEAR, }, ) await hass.async_block_till_done() result = await hass.config_entries.flow.async_configure( result["flow_id"], { CONF_SAMPLES_MAX_BUFFER_SIZE: 20.0, CONF_MAX_AGE: {"hours": 8, "minutes": 5, "seconds": 5}, }, ) await hass.async_block_till_done() assert result["type"] is FlowResultType.ABORT assert result["reason"] == "already_configured"