* Rainbird config flow Convert rainbird to a config flow. Still need to handle irrigation numbers. * Add options for irrigation time and deprecate yaml * Combine exception handling paths to get 100% test coverage * Bump the rainird config deprecation release * Apply suggestions from code review Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * Remove unnecessary sensor/binary sensor and address some PR feedback * Simplify configuration flow and options based on PR feedback * Consolidate data update coordinators to simplify overall integration * Fix type error on python3.9 * Handle yaml name import * Fix naming import post serialization * Parallelize requests to the device * Complete conversion to entity service * Update homeassistant/components/rainbird/switch.py Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * Update homeassistant/components/rainbird/config_flow.py Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * Remove unused import * Set default duration in options used in tests * Add separate devices for each sprinkler zone and update service to use config entry Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
37 lines
896 B
Python
37 lines
896 B
Python
"""Tests for rainbird sensor platform."""
|
|
|
|
|
|
import pytest
|
|
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .conftest import RAIN_DELAY, RAIN_DELAY_OFF, ComponentSetup
|
|
|
|
|
|
@pytest.fixture
|
|
def platforms() -> list[str]:
|
|
"""Fixture to specify platforms to test."""
|
|
return [Platform.SENSOR]
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"rain_delay_response,expected_state",
|
|
[(RAIN_DELAY, "16"), (RAIN_DELAY_OFF, "0")],
|
|
)
|
|
async def test_sensors(
|
|
hass: HomeAssistant,
|
|
setup_integration: ComponentSetup,
|
|
expected_state: str,
|
|
) -> None:
|
|
"""Test sensor platform."""
|
|
|
|
assert await setup_integration()
|
|
|
|
raindelay = hass.states.get("sensor.raindelay")
|
|
assert raindelay is not None
|
|
assert raindelay.state == expected_state
|
|
assert raindelay.attributes == {
|
|
"friendly_name": "Raindelay",
|
|
"icon": "mdi:water-off",
|
|
}
|