@@ -217,26 +217,26 @@ async def test_on_zdo_device_join_and_announce_fast(device, make_application, mo
217
217
app , znp_server = make_application (server_cls = device )
218
218
await app .startup (auto_form = False )
219
219
220
- mocker . patch . object ( app , " handle_join" , wraps = app . handle_join )
220
+ app . handle_join = mock . Mock ( )
221
221
mocker .patch ("zigpy_znp.zigbee.application.DEVICE_JOIN_MAX_DELAY" , new = 0.5 )
222
222
223
223
nwk = 0x1234
224
224
ieee = t .EUI64 .convert ("11:22:33:44:55:66:77:88" )
225
225
226
226
assert not app ._join_announce_tasks
227
227
228
+ znp_server .reply_to (
229
+ c .ZDO .ExtRouteDisc .Req (partial = True ),
230
+ responses = [c .ZDO .ExtRouteDisc .Rsp (Status = t .Status .SUCCESS )],
231
+ )
232
+
228
233
znp_server .send (c .ZDO .TCDevInd .Callback (SrcNwk = nwk , SrcIEEE = ieee , ParentNwk = 0x0001 ))
229
234
230
235
# We're waiting for the device to announce itself
231
236
assert app .handle_join .call_count == 0
232
237
233
238
await asyncio .sleep (0.1 )
234
239
235
- znp_server .reply_to (
236
- c .ZDO .ExtRouteDisc .Req (partial = True ),
237
- responses = [c .ZDO .ExtRouteDisc .Rsp (Status = t .Status .SUCCESS )],
238
- )
239
-
240
240
znp_server .send (
241
241
c .ZDO .MsgCbIncoming .Callback (
242
242
Src = nwk ,
@@ -264,19 +264,19 @@ async def test_on_zdo_device_join_and_announce_fast(device, make_application, mo
264
264
)
265
265
)
266
266
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
268
272
269
273
app .handle_join .assert_called_once_with (nwk = nwk , ieee = ieee , parent_nwk = None )
270
274
271
275
# Everything is cleaned up
272
276
assert not app ._join_announce_tasks
273
277
274
- app .get_device (ieee = ieee ).cancel_initialization ()
275
278
await app .shutdown ()
276
279
277
- with pytest .raises (asyncio .CancelledError ):
278
- await app .get_device (ieee = ieee )._initialize_task
279
-
280
280
281
281
@mock .patch ("zigpy_znp.zigbee.application.DEVICE_JOIN_MAX_DELAY" , new = 0.1 )
282
282
@mock .patch (
0 commit comments