From b16621b9ee20e3bb3bcc51002fc98cf7ebdc5123 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Tue, 19 Oct 2021 11:19:10 -0700 Subject: [PATCH] auto-t: Add channel switch test --- .../testChannelSwitch/connection_test.py | 65 +++++++++++++++++++ autotests/testChannelSwitch/hw.conf | 5 ++ autotests/testChannelSwitch/ssidCCMP.conf | 7 ++ 3 files changed, 77 insertions(+) create mode 100644 autotests/testChannelSwitch/connection_test.py create mode 100644 autotests/testChannelSwitch/hw.conf create mode 100644 autotests/testChannelSwitch/ssidCCMP.conf diff --git a/autotests/testChannelSwitch/connection_test.py b/autotests/testChannelSwitch/connection_test.py new file mode 100644 index 00000000..e5421c69 --- /dev/null +++ b/autotests/testChannelSwitch/connection_test.py @@ -0,0 +1,65 @@ +#!/usr/bin/python3 + +import unittest +import sys + +sys.path.append('../util') +import iwd +from iwd import IWD +from iwd import PSKAgent +from iwd import NetworkType +from hostapd import HostapdCLI +import testutil + +class Test(unittest.TestCase): + + def test_connection_success(self): + hapd = HostapdCLI() + wd = IWD() + + psk_agent = PSKAgent("secret123") + wd.register_psk_agent(psk_agent) + + devices = wd.list_devices(1) + device = devices[0] + + ordered_network = device.get_ordered_network('ssidCCMP') + + self.assertEqual(ordered_network.type, NetworkType.psk) + + condition = 'not obj.connected' + wd.wait_for_object_condition(ordered_network.network_object, condition) + + ordered_network.network_object.connect() + + condition = 'obj.state == DeviceState.connected' + wd.wait_for_object_condition(device, condition) + + testutil.test_iface_operstate() + testutil.test_ifaces_connected() + + hapd.chan_switch(2) + + condition = 'obj.state == DeviceState.connected' + wd.wait_for_object_condition(device, condition) + + testutil.test_iface_operstate() + testutil.test_ifaces_connected() + + device.disconnect() + + condition = 'not obj.connected' + wd.wait_for_object_condition(ordered_network.network_object, condition) + + wd.unregister_psk_agent(psk_agent) + + @classmethod + def setUpClass(cls): + pass + + @classmethod + def tearDownClass(cls): + IWD.clear_storage() + +if __name__ == '__main__': + unittest.main(exit=True) diff --git a/autotests/testChannelSwitch/hw.conf b/autotests/testChannelSwitch/hw.conf new file mode 100644 index 00000000..fad15b88 --- /dev/null +++ b/autotests/testChannelSwitch/hw.conf @@ -0,0 +1,5 @@ +[SETUP] +num_radios=2 + +[HOSTAPD] +rad0=ssidCCMP.conf diff --git a/autotests/testChannelSwitch/ssidCCMP.conf b/autotests/testChannelSwitch/ssidCCMP.conf new file mode 100644 index 00000000..074e8228 --- /dev/null +++ b/autotests/testChannelSwitch/ssidCCMP.conf @@ -0,0 +1,7 @@ +hw_mode=g +channel=1 +ssid=ssidCCMP + +wpa=2 +wpa_pairwise=CCMP +wpa_passphrase=secret123