Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zigpy application-level retries #260

Merged
merged 7 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ readme = "README.md"
license = {text = "GPL-3.0"}
requires-python = ">=3.8"
dependencies = [
"zigpy>=0.70.0",
"async_timeout",
"zigpy>=0.78.0",
'async-timeout; python_version<"3.11"',
"voluptuous",
"coloredlogs",
"jsonschema",
Expand Down
13 changes: 9 additions & 4 deletions tests/api/test_request.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
import sys
import asyncio
import logging

import pytest
import async_timeout

if sys.version_info[:2] < (3, 11):
from async_timeout import timeout as asyncio_timeout # pragma: no cover
else:
from asyncio import timeout as asyncio_timeout # pragma: no cover

import zigpy_znp.types as t
import zigpy_znp.config as conf
Expand Down Expand Up @@ -66,7 +71,7 @@ async def test_cleanup_timeout_external(connected_znp):

# This request will timeout because we didn't send anything back
with pytest.raises(asyncio.TimeoutError):
async with async_timeout.timeout(0.1):
async with asyncio_timeout(0.1):
await znp.request(c.UTIL.TimeAlive.Req())

# We should be cleaned up
Expand All @@ -80,7 +85,7 @@ async def test_callback_rsp_cleanup_timeout_external(connected_znp):

# This request will timeout because we didn't send anything back
with pytest.raises(asyncio.TimeoutError):
async with async_timeout.timeout(0.1):
async with asyncio_timeout(0.1):
await znp.request_callback_rsp(
request=c.UTIL.TimeAlive.Req(),
callback=c.SYS.ResetInd.Callback(partial=True),
Expand Down Expand Up @@ -262,7 +267,7 @@ async def test_znp_sreq_srsp(connected_znp):

# Each SREQ must have a corresponding SRSP, so this will fail
with pytest.raises(asyncio.TimeoutError):
async with async_timeout.timeout(0.5):
async with asyncio_timeout(0.5):
await znp.request(c.SYS.Ping.Req())

# This will work
Expand Down
11 changes: 8 additions & 3 deletions tests/api/test_response.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import sys
import asyncio

import pytest
import async_timeout

if sys.version_info[:2] < (3, 11):
from async_timeout import timeout as asyncio_timeout # pragma: no cover
else:
from asyncio import timeout as asyncio_timeout # pragma: no cover

import zigpy_znp.types as t
import zigpy_znp.commands as c
Expand Down Expand Up @@ -61,7 +66,7 @@ async def send_soon(delay):

asyncio.create_task(send_soon(0.1))

async with async_timeout.timeout(0.5):
async with asyncio_timeout(0.5):
assert (await znp.wait_for_response(c.SYS.Ping.Rsp(partial=True))) == response

# The response was successfully received so we should have no outstanding listeners
Expand All @@ -71,7 +76,7 @@ async def send_soon(delay):
asyncio.create_task(send_soon(0.6))

with pytest.raises(asyncio.TimeoutError):
async with async_timeout.timeout(0.5):
async with asyncio_timeout(0.5):
assert (
await znp.wait_for_response(c.SYS.Ping.Rsp(partial=True))
) == response
Expand Down
5 changes: 2 additions & 3 deletions tests/application/test_joining.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,8 @@ async def test_on_zdo_device_join(device, make_application, mocker):

app.handle_join.assert_called_once_with(nwk=nwk, ieee=ieee, parent_nwk=0x0001)

app.get_device(nwk=0x1234).cancel_initialization()

await app.shutdown()


Expand Down Expand Up @@ -269,9 +271,6 @@ async def test_on_zdo_device_join_and_announce_fast(device, make_application, mo
app.get_device(ieee=ieee).cancel_initialization()
await app.shutdown()

with pytest.raises(asyncio.CancelledError):
await app.get_device(ieee=ieee)._initialize_task


@mock.patch("zigpy_znp.zigbee.application.DEVICE_JOIN_MAX_DELAY", new=0.1)
@mock.patch(
Expand Down
193 changes: 11 additions & 182 deletions tests/application/test_requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import zigpy_znp.types as t
import zigpy_znp.config as conf
import zigpy_znp.commands as c
from zigpy_znp.exceptions import InvalidCommandResponse

from ..conftest import (
FORMED_DEVICES,
Expand Down Expand Up @@ -145,10 +144,10 @@ async def test_zigpy_request_failure(device, make_application, mocker):
mocker.spy(app, "send_packet")

# Fail to turn on the light
with pytest.raises(InvalidCommandResponse):
with pytest.raises(DeliveryError):
await device.endpoints[1].on_off.on()

assert app.send_packet.call_count == 1
assert app.send_packet.call_count >= 1
await app.shutdown()


Expand Down Expand Up @@ -425,7 +424,7 @@ async def inner():

asyncio.create_task(inner())

data_req = znp_server.reply_once_to(
znp_server.reply_to(
c.AF.DataRequestExt.Req(partial=True),
responses=[
c.AF.DataRequestExt.Rsp(Status=t.Status.SUCCESS),
Expand All @@ -444,7 +443,6 @@ async def inner():
data=b"\x00",
)

await data_req
await delayed_reply_sent

assert app._znp._unhandled_command.call_count == 0
Expand Down Expand Up @@ -532,9 +530,6 @@ def set_route_discovered(req):
await was_route_discovered
await zdo_req

# 6 accounts for the loopback requests
assert sum(c.value for c in app.state.counters["Retry_NONE"].values()) == 6 + 1

await app.shutdown()


Expand Down Expand Up @@ -583,15 +578,6 @@ def set_route_discovered(req):
],
)

# Ignore the source routing request as well
znp_server.reply_to(
c.AF.DataRequestSrcRtg.Req(partial=True),
responses=[
c.AF.DataRequestSrcRtg.Rsp(Status=t.Status.SUCCESS),
data_confirm_replier,
],
)

await app.request(
device=device,
profile=260,
Expand All @@ -603,75 +589,6 @@ def set_route_discovered(req):
)

await was_route_discovered
assert (
sum(c.value for c in app.state.counters["Retry_RouteDiscovery"].values()) == 1
)

await app.shutdown()


@pytest.mark.parametrize("device", [FormedLaunchpadCC26X2R1])
async def test_request_recovery_use_ieee_addr(device, make_application, mocker):
app, znp_server = make_application(server_cls=device)

await app.startup(auto_form=False)

# The data confirm timeout must be shorter than the ARSP timeout
mocker.patch("zigpy_znp.zigbee.application.DATA_CONFIRM_TIMEOUT", new=0.1)
app._znp._config[conf.CONF_ZNP_CONFIG][conf.CONF_ARSP_TIMEOUT] = 1

device = app.add_initialized_device(ieee=t.EUI64(range(8)), nwk=0xABCD)

was_ieee_addr_used = False

def data_confirm_replier(req):
nonlocal was_ieee_addr_used

if req.DstAddrModeAddress.mode == t.AddrMode.IEEE:
status = t.Status.SUCCESS
was_ieee_addr_used = True
else:
status = t.Status.MAC_NO_ACK

return c.AF.DataConfirm.Callback(Status=status, Endpoint=1, TSN=1)

znp_server.reply_once_to(
c.ZDO.ExtRouteDisc.Req(
Dst=device.nwk, Options=c.zdo.RouteDiscoveryOptions.UNICAST, partial=True
),
responses=[c.ZDO.ExtRouteDisc.Rsp(Status=t.Status.SUCCESS)],
)

znp_server.reply_to(
c.AF.DataRequestExt.Req(partial=True),
responses=[
c.AF.DataRequestExt.Rsp(Status=t.Status.SUCCESS),
data_confirm_replier,
],
)

# Ignore the source routing request as well
znp_server.reply_to(
c.AF.DataRequestSrcRtg.Req(partial=True),
responses=[
c.AF.DataRequestSrcRtg.Rsp(Status=t.Status.SUCCESS),
c.AF.DataConfirm.Callback(Status=t.Status.MAC_NO_ACK, Endpoint=1, TSN=1),
],
)

await app.request(
device=device,
profile=260,
cluster=1,
src_ep=1,
dst_ep=1,
sequence=1,
data=b"\x00",
)

assert was_ieee_addr_used
assert sum(c.value for c in app.state.counters["Retry_IEEEAddress"].values()) == 1

await app.shutdown()


Expand All @@ -686,7 +603,6 @@ async def test_request_recovery_assoc_remove(
await app.startup(auto_form=False)

mocker.patch("zigpy_znp.zigbee.application.DATA_CONFIRM_TIMEOUT", new=0.1)
mocker.patch("zigpy_znp.zigbee.application.REQUEST_ERROR_RETRY_DELAY", new=0)

app._znp._config[conf.CONF_ZNP_CONFIG][conf.CONF_ARSP_TIMEOUT] = 1

Expand All @@ -713,14 +629,6 @@ def data_confirm_replier(req):
],
)

znp_server.reply_to(
c.AF.DataRequestSrcRtg.Req(partial=True),
responses=[
c.AF.DataRequestSrcRtg.Rsp(Status=t.Status.SUCCESS),
data_confirm_replier,
],
)

def assoc_get_with_addr(req):
nonlocal assoc_device

Expand All @@ -730,7 +638,7 @@ def assoc_get_with_addr(req):

return c.UTIL.AssocGetWithAddress.Rsp(Device=assoc_device)

did_assoc_get = znp_server.reply_once_to(
did_assoc_get = znp_server.reply_to(
c.UTIL.AssocGetWithAddress.Req(IEEE=device.ieee, partial=True),
responses=[assoc_get_with_addr],
)
Expand All @@ -750,12 +658,12 @@ def assoc_remove(req):
assoc_device = None
return c.UTIL.AssocRemove.Rsp(Status=t.Status.SUCCESS)

did_assoc_remove = znp_server.reply_once_to(
did_assoc_remove = znp_server.reply_to(
c.UTIL.AssocRemove.Req(IEEE=device.ieee),
responses=[assoc_remove],
)

did_assoc_add = znp_server.reply_once_to(
did_assoc_add = znp_server.reply_to(
c.UTIL.AssocAdd.Req(
NWK=device.nwk,
IEEE=device.ieee,
Expand Down Expand Up @@ -791,102 +699,23 @@ def assoc_remove(req):
await req

if fw_assoc_remove:
await did_assoc_remove
assert len(did_assoc_remove.mock_calls) >= 1

if final_status != t.Status.SUCCESS:
# The association is re-added on failure
await did_assoc_add
assert len(did_assoc_add.mock_calls) >= 1
else:
assert not did_assoc_add.done()
assert len(did_assoc_add.mock_calls) == 0
elif issubclass(device_cls, FormedLaunchpadCC26X2R1):
await did_assoc_get
assert was_route_discovered.call_count >= 1
assert len(did_assoc_get.mock_calls) >= 1
else:
# Don't even attempt this with older firmwares
assert not did_assoc_get.done()
assert len(did_assoc_get.mock_calls) == 0
assert was_route_discovered.call_count == 0

await app.shutdown()


@pytest.mark.parametrize("device", [FormedLaunchpadCC26X2R1])
@pytest.mark.parametrize("succeed", [True, False])
@pytest.mark.parametrize("relays", [[0x1111, 0x2222, 0x3333], []])
async def test_request_recovery_manual_source_route(
device, succeed, relays, make_application, mocker
):
app, znp_server = make_application(server_cls=device)

await app.startup(auto_form=False)

mocker.patch("zigpy_znp.zigbee.application.DATA_CONFIRM_TIMEOUT", new=0.1)
mocker.patch("zigpy_znp.zigbee.application.REQUEST_ERROR_RETRY_DELAY", new=0)

app._znp._config[conf.CONF_ZNP_CONFIG][conf.CONF_ARSP_TIMEOUT] = 1

device = app.add_initialized_device(ieee=t.EUI64(range(8)), nwk=0xABCD)
device.relays = relays

def data_confirm_replier(req):
if isinstance(req, c.AF.DataRequestExt.Req) or not succeed:
return c.AF.DataConfirm.Callback(
Status=t.Status.MAC_NO_ACK,
Endpoint=1,
TSN=1,
)
else:
return c.AF.DataConfirm.Callback(
Status=t.Status.SUCCESS,
Endpoint=1,
TSN=1,
)

normal_data_request = znp_server.reply_to(
c.AF.DataRequestExt.Req(partial=True),
responses=[
c.AF.DataRequestExt.Rsp(Status=t.Status.SUCCESS),
data_confirm_replier,
],
)

source_routing_data_request = znp_server.reply_to(
c.AF.DataRequestSrcRtg.Req(partial=True),
responses=[
c.AF.DataRequestSrcRtg.Rsp(Status=t.Status.SUCCESS),
data_confirm_replier,
],
)

znp_server.reply_to(
c.ZDO.ExtRouteDisc.Req(
Dst=device.nwk, Options=c.zdo.RouteDiscoveryOptions.UNICAST, partial=True
),
responses=[c.ZDO.ExtRouteDisc.Rsp(Status=t.Status.SUCCESS)],
)

req = app.request(
device=device,
profile=260,
cluster=1,
src_ep=1,
dst_ep=1,
sequence=1,
data=b"\x00",
)

if succeed:
await req
else:
with pytest.raises(DeliveryError):
await req

# In either case only one source routing attempt is performed
assert source_routing_data_request.call_count == 1
assert normal_data_request.call_count >= 1

await app.shutdown()


@pytest.mark.parametrize("device", [FormedLaunchpadCC26X2R1])
async def test_route_discovery_concurrency(device, make_application):
app, znp_server = make_application(server_cls=device)
Expand Down
Loading
Loading