36 lines
927 B
Python
36 lines
927 B
Python
"""Tests for the auth component."""
|
|
from homeassistant import auth
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from tests.common import ensure_auth_manager_loaded
|
|
|
|
BASE_CONFIG = [
|
|
{
|
|
"name": "Example",
|
|
"type": "insecure_example",
|
|
"users": [
|
|
{"username": "test-user", "password": "test-pass", "name": "Test Name"}
|
|
],
|
|
}
|
|
]
|
|
|
|
EMPTY_CONFIG = []
|
|
|
|
|
|
async def async_setup_auth(
|
|
hass,
|
|
aiohttp_client,
|
|
provider_configs=BASE_CONFIG,
|
|
module_configs=EMPTY_CONFIG,
|
|
setup_api=False,
|
|
):
|
|
"""Set up authentication and create an HTTP client."""
|
|
hass.auth = await auth.auth_manager_from_config(
|
|
hass, provider_configs, module_configs
|
|
)
|
|
ensure_auth_manager_loaded(hass.auth)
|
|
await async_setup_component(hass, "auth", {})
|
|
if setup_api:
|
|
await async_setup_component(hass, "api", {})
|
|
return await aiohttp_client(hass.http.app)
|