* initial version of gdacs integration * updated translations * generated files * added abbreviation * bumped library version * small feed entry attribute fixes * add unit tests * need to use original mdi name * bumped library version * improved entity name for earthquakes * round vulnerability number * typo * support for categories * testing support for categories * tie longitude and latitude together * validating categories * simplifying setup * passing domain as parameter * simplified test setup * moved test code * simplified test code * removed superfluous code * changed approach to unique identifier * changed code structure * simplified unit system handling * made schema a constant * comment added * simplifying code * added message if location already configured * removed unnecessary code * simplified test code * avoid mocking __init__ * pylint * simplified code * fetch categories from integration library * setting PARALLEL_UPDATES * setting PARALLEL_UPDATES to zero/unlimited * added quality scale
31 lines
738 B
Python
31 lines
738 B
Python
"""Configuration for GDACS tests."""
|
|
import pytest
|
|
|
|
from homeassistant.components.gdacs import CONF_CATEGORIES, DOMAIN
|
|
from homeassistant.const import (
|
|
CONF_LATITUDE,
|
|
CONF_LONGITUDE,
|
|
CONF_RADIUS,
|
|
CONF_SCAN_INTERVAL,
|
|
CONF_UNIT_SYSTEM,
|
|
)
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.fixture
|
|
def config_entry():
|
|
"""Create a mock GDACS config entry."""
|
|
return MockConfigEntry(
|
|
domain=DOMAIN,
|
|
data={
|
|
CONF_LATITUDE: -41.2,
|
|
CONF_LONGITUDE: 174.7,
|
|
CONF_RADIUS: 25,
|
|
CONF_UNIT_SYSTEM: "metric",
|
|
CONF_SCAN_INTERVAL: 300.0,
|
|
CONF_CATEGORIES: [],
|
|
},
|
|
title="-41.2, 174.7",
|
|
unique_id="-41.2, 174.7",
|
|
)
|