From: Aleksman4o <aleksman4o@gmail.com>
To: iwd@lists.linux.dev
Cc: Aleks Man <aleksman4o@gmail.com>, prestwoj@gmail.com, denkenz@gmail.com
Subject: [PATCH v4 3/5] auto-t: test BasicServiceSet RSN property
Date: Tue, 28 Jul 2026 18:46:42 +0300 [thread overview]
Message-ID: <20260728154729.3485557-4-aleksman4o@gmail.com> (raw)
In-Reply-To: <20260728154729.3485557-1-aleksman4o@gmail.com>
From: Aleks Man <aleksman4o@gmail.com>
Verify the exact D-Bus key management and cipher capabilities for
WPA2-PSK, SAE, and transition BSSes.
---
.../testBasicServiceSetRSN/bss_rsn_test.py | 70 +++++++++++++++++++
autotests/testBasicServiceSetRSN/hw.conf | 9 +++
autotests/testBasicServiceSetRSN/ssidSAE.conf | 11 +++
.../ssidTransition.conf | 12 ++++
.../testBasicServiceSetRSN/ssidWPA2.conf | 8 +++
5 files changed, 110 insertions(+)
create mode 100644 autotests/testBasicServiceSetRSN/bss_rsn_test.py
create mode 100644 autotests/testBasicServiceSetRSN/hw.conf
create mode 100644 autotests/testBasicServiceSetRSN/ssidSAE.conf
create mode 100644 autotests/testBasicServiceSetRSN/ssidTransition.conf
create mode 100644 autotests/testBasicServiceSetRSN/ssidWPA2.conf
diff --git a/autotests/testBasicServiceSetRSN/bss_rsn_test.py b/autotests/testBasicServiceSetRSN/bss_rsn_test.py
new file mode 100644
index 00000000..20e0b62c
--- /dev/null
+++ b/autotests/testBasicServiceSetRSN/bss_rsn_test.py
@@ -0,0 +1,70 @@
+#! /usr/bin/python3
+
+import unittest
+import sys
+
+import dbus
+
+sys.path.append('../util')
+import iwd
+from iwd import IWD
+from hwsim import Hwsim
+from hostapd import HostapdCLI
+
+BSS_INTERFACE = 'net.connman.iwd.BasicServiceSet'
+
+
+class Test(unittest.TestCase):
+ def _get_rsn(self, device, ssid):
+ ordered_network = device.get_ordered_network(ssid, full_scan=True)
+ network = ordered_network.network_object
+ self.assertEqual(len(network.extended_service_set), 1)
+
+ path = network.extended_service_set[0]
+ proxy = self.wd._bus.get_object(iwd.IWD_SERVICE, path)
+ properties = dbus.Interface(proxy, iwd.DBUS_PROPERTIES)
+
+ return properties.GetAll(BSS_INTERFACE)['RSN']
+
+ def test_rsn(self):
+ device = self.wd.list_devices(1)[0]
+
+ rsn = self._get_rsn(device, 'ssidWPA2')
+ self.assertEqual(set(map(str, rsn['KeyMgmt'])), {'wpa-psk'})
+ self.assertEqual(set(map(str, rsn['Pairwise'])), {'ccmp'})
+ self.assertEqual(str(rsn['Group']), 'ccmp')
+
+ rsn = self._get_rsn(device, 'ssidSAE')
+ self.assertEqual(set(map(str, rsn['KeyMgmt'])), {'sae'})
+ self.assertEqual(set(map(str, rsn['Pairwise'])), {'ccmp'})
+ self.assertEqual(str(rsn['Group']), 'ccmp')
+
+ rsn = self._get_rsn(device, 'ssidTransition')
+ self.assertEqual(set(map(str, rsn['KeyMgmt'])),
+ {'wpa-psk', 'sae'})
+ self.assertEqual(set(map(str, rsn['Pairwise'])), {'ccmp'})
+ self.assertEqual(str(rsn['Group']), 'ccmp')
+
+ def setUp(self):
+ self.wd = IWD(True)
+
+ def tearDown(self):
+ self.wd.stop()
+ self.wd = None
+
+ @classmethod
+ def setUpClass(cls):
+ Hwsim()
+ cls.hostapd = [
+ HostapdCLI(config='ssidWPA2.conf'),
+ HostapdCLI(config='ssidSAE.conf'),
+ HostapdCLI(config='ssidTransition.conf'),
+ ]
+
+ @classmethod
+ def tearDownClass(cls):
+ cls.hostapd = None
+
+
+if __name__ == '__main__':
+ unittest.main(exit=True)
diff --git a/autotests/testBasicServiceSetRSN/hw.conf b/autotests/testBasicServiceSetRSN/hw.conf
new file mode 100644
index 00000000..a43062d9
--- /dev/null
+++ b/autotests/testBasicServiceSetRSN/hw.conf
@@ -0,0 +1,9 @@
+[SETUP]
+num_radios=4
+hwsim_medium=yes
+start_iwd=no
+
+[HOSTAPD]
+rad0=ssidWPA2.conf
+rad1=ssidSAE.conf
+rad2=ssidTransition.conf
diff --git a/autotests/testBasicServiceSetRSN/ssidSAE.conf b/autotests/testBasicServiceSetRSN/ssidSAE.conf
new file mode 100644
index 00000000..2ec9ae61
--- /dev/null
+++ b/autotests/testBasicServiceSetRSN/ssidSAE.conf
@@ -0,0 +1,11 @@
+hw_mode=g
+channel=2
+ssid=ssidSAE
+
+wpa=2
+wpa_key_mgmt=SAE
+wpa_pairwise=CCMP
+sae_password=secret123
+sae_groups=19
+ieee80211w=2
+sae_pwe=0
diff --git a/autotests/testBasicServiceSetRSN/ssidTransition.conf b/autotests/testBasicServiceSetRSN/ssidTransition.conf
new file mode 100644
index 00000000..00170772
--- /dev/null
+++ b/autotests/testBasicServiceSetRSN/ssidTransition.conf
@@ -0,0 +1,12 @@
+hw_mode=g
+channel=3
+ssid=ssidTransition
+
+wpa=2
+wpa_key_mgmt=WPA-PSK SAE
+wpa_pairwise=CCMP
+wpa_passphrase=secret123
+sae_password=secret123
+sae_groups=19
+ieee80211w=1
+sae_pwe=0
diff --git a/autotests/testBasicServiceSetRSN/ssidWPA2.conf b/autotests/testBasicServiceSetRSN/ssidWPA2.conf
new file mode 100644
index 00000000..d706142b
--- /dev/null
+++ b/autotests/testBasicServiceSetRSN/ssidWPA2.conf
@@ -0,0 +1,8 @@
+hw_mode=g
+channel=1
+ssid=ssidWPA2
+
+wpa=2
+wpa_key_mgmt=WPA-PSK
+wpa_pairwise=CCMP
+wpa_passphrase=secret123
--
2.55.0
next prev parent reply other threads:[~2026-07-28 15:48 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-11 20:07 [RFC] dbus: expose per-BSS security capabilities Алексей
2026-07-14 13:27 ` James Prestwood
2026-07-14 20:36 ` [PATCH 0/3] dbus: expose per-BSS RSN capabilities Алексей
2026-07-14 20:37 ` [PATCH 1/3] network: expose RSN capabilities on BSS Алексей
2026-07-14 20:38 ` [PATCH 2/3] doc: document BasicServiceSet RSN property Алексей
2026-07-14 20:39 ` [PATCH 3/3] auto-t: test " Алексей
2026-07-14 21:12 ` [PATCH v2 0/3] dbus: expose per-BSS RSN capabilities Aleksman4o
2026-07-14 21:12 ` [PATCH v2 1/3] network: expose RSN capabilities on BSS Aleksman4o
2026-07-14 21:12 ` [PATCH v2 2/3] doc: document BasicServiceSet RSN property Aleksman4o
2026-07-14 21:12 ` [PATCH v2 3/3] auto-t: test " Aleksman4o
2026-07-14 22:48 ` [PATCH v3 0/3] dbus: expose per-BSS RSN capabilities Aleksman4o
2026-07-14 22:48 ` [PATCH v3 1/3] network: expose RSN capabilities on BSS Aleksman4o
2026-07-14 22:48 ` [PATCH v3 2/3] doc: document BasicServiceSet RSN property Aleksman4o
2026-07-14 22:48 ` [PATCH v3 3/3] auto-t: test " Aleksman4o
2026-07-28 13:31 ` [PATCH v3 0/3] dbus: expose per-BSS RSN capabilities Aleksman4o
2026-07-28 13:40 ` James Prestwood
2026-07-28 15:46 ` [PATCH v4 0/5] " Aleksman4o
2026-07-28 15:46 ` [PATCH v4 1/5] network: expose RSN capabilities on BSS Aleksman4o
2026-07-28 15:46 ` [PATCH v4 2/5] doc: document BasicServiceSet RSN property Aleksman4o
2026-07-28 15:46 ` Aleksman4o [this message]
2026-07-28 15:46 ` [PATCH v4 4/5] client: display " Aleksman4o
2026-07-28 15:46 ` [PATCH v4 5/5] client: widen BSS property value column Aleksman4o
2026-07-28 18:40 ` [PATCH v4 0/5] dbus: expose per-BSS RSN capabilities James Prestwood
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260728154729.3485557-4-aleksman4o@gmail.com \
--to=aleksman4o@gmail.com \
--cc=denkenz@gmail.com \
--cc=iwd@lists.linux.dev \
--cc=prestwoj@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox