From 521960c7d6b4817216b985756faac514ae4eff03 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Tue, 22 Feb 2022 14:28:46 -0800 Subject: [PATCH] auto-t: add test for IWD as configurator + initiator --- autotests/testDPP/connection_test.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/autotests/testDPP/connection_test.py b/autotests/testDPP/connection_test.py index a451d584..b58620b8 100644 --- a/autotests/testDPP/connection_test.py +++ b/autotests/testDPP/connection_test.py @@ -82,6 +82,22 @@ class Test(unittest.TestCase): self.wpas.wait_for_event('DPP-CONF-RECEIVED') + def test_iwd_as_configurator_initiator(self): + self.hapd.reload() + self.hapd.wait_for_event('AP-ENABLED') + + IWD.copy_to_storage('ssidCCMP.psk') + self.device.autoconnect = True + + condition = 'obj.state == DeviceState.connected' + self.wd.wait_for_object_condition(self.device, condition) + + uri = self.wpas.dpp_enrollee_start(oper_and_channel='81/2') + + self.device.dpp_start_configurator(uri) + + self.hapd.wait_for_event('AP-STA-CONNECTED 42:00:00:00:00:00') + def setUp(self): self.wd = IWD(True) self.device = self.wd.list_devices(1)[0]