38 lines
1.0 KiB
Python
38 lines
1.0 KiB
Python
"""Fixtures for websocket tests."""
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.websocket_api.auth import TYPE_AUTH_REQUIRED
|
|
from homeassistant.components.websocket_api.http import URL
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from tests.typing import MockHAClientWebSocket, WebSocketGenerator
|
|
|
|
|
|
@pytest.fixture
|
|
async def websocket_client(
|
|
hass: HomeAssistant, hass_ws_client: WebSocketGenerator
|
|
) -> MockHAClientWebSocket:
|
|
"""Create a websocket client."""
|
|
return await hass_ws_client(hass)
|
|
|
|
|
|
@pytest.fixture
|
|
async def no_auth_websocket_client(hass, hass_client_no_auth):
|
|
"""Websocket connection that requires authentication."""
|
|
assert await async_setup_component(hass, "websocket_api", {})
|
|
await hass.async_block_till_done()
|
|
|
|
client = await hass_client_no_auth()
|
|
ws = await client.ws_connect(URL)
|
|
|
|
auth_ok = await ws.receive_json()
|
|
assert auth_ok["type"] == TYPE_AUTH_REQUIRED
|
|
|
|
ws.client = client
|
|
yield ws
|
|
|
|
if not ws.closed:
|
|
await ws.close()
|