tests: DPP Authentication Request destination address in chirp case
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
ad59639ed8
commit
ffcca901e7
1 changed files with 8 additions and 0 deletions
|
@ -5391,6 +5391,14 @@ def test_dpp_chirp_configurator(dev, apdev):
|
|||
if "type=13" not in ev:
|
||||
raise Exception("Unexpected DPP frame received: " + ev)
|
||||
|
||||
ev = dev[1].wait_event(["DPP-TX"], timeout=10)
|
||||
if ev is None:
|
||||
raise Exception("Authentication Request TX not seen")
|
||||
if "type=0" not in ev:
|
||||
raise Exception("Unexpected DPP frame TX: " + ev)
|
||||
if "dst=" + dev[0].own_addr() not in ev:
|
||||
raise Exception("Unexpected Authentication Request destination: " + ev)
|
||||
|
||||
wait_auth_success(dev[0], dev[1], dev[1], dev[0])
|
||||
|
||||
def test_dpp_chirp_configurator_inits(dev, apdev):
|
||||
|
|
Loading…
Reference in a new issue