Skip to content

Commit 82098db

Browse files
committed
Flakiness fix, attempt 2
1 parent 6f9aa01 commit 82098db

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

tests/application/test_joining.py

+11-11
Original file line numberDiff line numberDiff line change
@@ -217,26 +217,26 @@ async def test_on_zdo_device_join_and_announce_fast(device, make_application, mo
217217
app, znp_server = make_application(server_cls=device)
218218
await app.startup(auto_form=False)
219219

220-
mocker.patch.object(app, "handle_join", wraps=app.handle_join)
220+
app.handle_join = mock.Mock()
221221
mocker.patch("zigpy_znp.zigbee.application.DEVICE_JOIN_MAX_DELAY", new=0.5)
222222

223223
nwk = 0x1234
224224
ieee = t.EUI64.convert("11:22:33:44:55:66:77:88")
225225

226226
assert not app._join_announce_tasks
227227

228+
znp_server.reply_to(
229+
c.ZDO.ExtRouteDisc.Req(partial=True),
230+
responses=[c.ZDO.ExtRouteDisc.Rsp(Status=t.Status.SUCCESS)],
231+
)
232+
228233
znp_server.send(c.ZDO.TCDevInd.Callback(SrcNwk=nwk, SrcIEEE=ieee, ParentNwk=0x0001))
229234

230235
# We're waiting for the device to announce itself
231236
assert app.handle_join.call_count == 0
232237

233238
await asyncio.sleep(0.1)
234239

235-
znp_server.reply_to(
236-
c.ZDO.ExtRouteDisc.Req(partial=True),
237-
responses=[c.ZDO.ExtRouteDisc.Rsp(Status=t.Status.SUCCESS)],
238-
)
239-
240240
znp_server.send(
241241
c.ZDO.MsgCbIncoming.Callback(
242242
Src=nwk,
@@ -264,19 +264,19 @@ async def test_on_zdo_device_join_and_announce_fast(device, make_application, mo
264264
)
265265
)
266266

267-
await asyncio.sleep(0.1)
267+
for _attempt in range(5):
268+
await asyncio.sleep(0.1)
269+
270+
if len(app.handle_join.mock_calls) > 0:
271+
break
268272

269273
app.handle_join.assert_called_once_with(nwk=nwk, ieee=ieee, parent_nwk=None)
270274

271275
# Everything is cleaned up
272276
assert not app._join_announce_tasks
273277

274-
app.get_device(ieee=ieee).cancel_initialization()
275278
await app.shutdown()
276279

277-
with pytest.raises(asyncio.CancelledError):
278-
await app.get_device(ieee=ieee)._initialize_task
279-
280280

281281
@mock.patch("zigpy_znp.zigbee.application.DEVICE_JOIN_MAX_DELAY", new=0.1)
282282
@mock.patch(

0 commit comments

Comments
 (0)