mirror of
https://github.com/esphome/aioesphomeapi.git
synced 2024-11-25 12:35:19 +01:00
Add coverage to ensure log runner reconnects on disconnect (#751)
This commit is contained in:
parent
c98eaa1250
commit
c53aeff924
@ -1,6 +1,7 @@
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
|
from datetime import timedelta
|
||||||
from unittest.mock import MagicMock, patch
|
from unittest.mock import MagicMock, patch
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
@ -8,18 +9,21 @@ from google.protobuf import message
|
|||||||
|
|
||||||
from aioesphomeapi._frame_helper.plain_text import APIPlaintextFrameHelper
|
from aioesphomeapi._frame_helper.plain_text import APIPlaintextFrameHelper
|
||||||
from aioesphomeapi.api_pb2 import SubscribeLogsResponse # type: ignore
|
from aioesphomeapi.api_pb2 import SubscribeLogsResponse # type: ignore
|
||||||
from aioesphomeapi.api_pb2 import DisconnectResponse
|
from aioesphomeapi.api_pb2 import DisconnectRequest, DisconnectResponse
|
||||||
from aioesphomeapi.client import APIClient
|
from aioesphomeapi.client import APIClient
|
||||||
from aioesphomeapi.connection import APIConnection
|
from aioesphomeapi.connection import APIConnection
|
||||||
from aioesphomeapi.log_runner import async_run
|
from aioesphomeapi.log_runner import async_run
|
||||||
|
from aioesphomeapi.reconnect_logic import EXPECTED_DISCONNECT_COOLDOWN
|
||||||
|
|
||||||
from .common import (
|
from .common import (
|
||||||
Estr,
|
Estr,
|
||||||
|
async_fire_time_changed,
|
||||||
generate_plaintext_packet,
|
generate_plaintext_packet,
|
||||||
get_mock_async_zeroconf,
|
get_mock_async_zeroconf,
|
||||||
mock_data_received,
|
mock_data_received,
|
||||||
send_plaintext_connect_response,
|
send_plaintext_connect_response,
|
||||||
send_plaintext_hello,
|
send_plaintext_hello,
|
||||||
|
utcnow,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -83,3 +87,80 @@ async def test_log_runner(event_loop: asyncio.AbstractEventLoop, conn: APIConnec
|
|||||||
disconnect_response = DisconnectResponse()
|
disconnect_response = DisconnectResponse()
|
||||||
mock_data_received(protocol, generate_plaintext_packet(disconnect_response))
|
mock_data_received(protocol, generate_plaintext_packet(disconnect_response))
|
||||||
await stop_task
|
await stop_task
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_log_runner_reconnects_on_disconnect(
|
||||||
|
event_loop: asyncio.AbstractEventLoop,
|
||||||
|
conn: APIConnection,
|
||||||
|
caplog: pytest.LogCaptureFixture,
|
||||||
|
) -> None:
|
||||||
|
"""Test the log runner reconnects on disconnect."""
|
||||||
|
loop = asyncio.get_event_loop()
|
||||||
|
protocol: APIPlaintextFrameHelper | None = None
|
||||||
|
transport = MagicMock()
|
||||||
|
connected = asyncio.Event()
|
||||||
|
|
||||||
|
class PatchableAPIClient(APIClient):
|
||||||
|
pass
|
||||||
|
|
||||||
|
async_zeroconf = get_mock_async_zeroconf()
|
||||||
|
|
||||||
|
cli = PatchableAPIClient(
|
||||||
|
address=Estr("1.2.3.4"),
|
||||||
|
port=6052,
|
||||||
|
password=None,
|
||||||
|
noise_psk=None,
|
||||||
|
expected_name=Estr("fake"),
|
||||||
|
zeroconf_instance=async_zeroconf.zeroconf,
|
||||||
|
)
|
||||||
|
messages = []
|
||||||
|
|
||||||
|
def on_log(msg: SubscribeLogsResponse) -> None:
|
||||||
|
messages.append(msg)
|
||||||
|
|
||||||
|
def _create_mock_transport_protocol(create_func, **kwargs):
|
||||||
|
nonlocal protocol
|
||||||
|
protocol = create_func()
|
||||||
|
protocol.connection_made(transport)
|
||||||
|
connected.set()
|
||||||
|
return transport, protocol
|
||||||
|
|
||||||
|
subscribed = asyncio.Event()
|
||||||
|
original_subscribe_logs = cli.subscribe_logs
|
||||||
|
|
||||||
|
async def _wait_subscribe_cli(*args, **kwargs):
|
||||||
|
await original_subscribe_logs(*args, **kwargs)
|
||||||
|
subscribed.set()
|
||||||
|
|
||||||
|
with patch.object(event_loop, "sock_connect"), patch.object(
|
||||||
|
loop, "create_connection", side_effect=_create_mock_transport_protocol
|
||||||
|
), patch.object(cli, "subscribe_logs", _wait_subscribe_cli):
|
||||||
|
stop = await async_run(cli, on_log, aio_zeroconf_instance=async_zeroconf)
|
||||||
|
await connected.wait()
|
||||||
|
protocol = cli._connection._frame_helper
|
||||||
|
send_plaintext_hello(protocol)
|
||||||
|
send_plaintext_connect_response(protocol, False)
|
||||||
|
await subscribed.wait()
|
||||||
|
|
||||||
|
response: message.Message = SubscribeLogsResponse()
|
||||||
|
response.message = b"Hello world"
|
||||||
|
mock_data_received(protocol, generate_plaintext_packet(response))
|
||||||
|
assert len(messages) == 1
|
||||||
|
assert messages[0].message == b"Hello world"
|
||||||
|
|
||||||
|
with patch.object(cli, "start_connection") as mock_start_connection:
|
||||||
|
response: message.Message = DisconnectRequest()
|
||||||
|
mock_data_received(protocol, generate_plaintext_packet(response))
|
||||||
|
|
||||||
|
await asyncio.sleep(0)
|
||||||
|
assert cli._connection is None
|
||||||
|
async_fire_time_changed(
|
||||||
|
utcnow() + timedelta(seconds=EXPECTED_DISCONNECT_COOLDOWN)
|
||||||
|
)
|
||||||
|
await asyncio.sleep(0)
|
||||||
|
|
||||||
|
assert "Disconnected from API" in caplog.text
|
||||||
|
assert mock_start_connection.called
|
||||||
|
|
||||||
|
await stop()
|
||||||
|
Loading…
Reference in New Issue
Block a user