From: James Prestwood <prestwoj@gmail.com>
To: iwd@lists.linux.dev
Cc: James Prestwood <prestwoj@gmail.com>
Subject: [PATCH v3 02/10] auto-t: add test for disabling the timeout blacklist
Date: Tue, 25 Mar 2025 11:00:33 -0700 [thread overview]
Message-ID: <20250325180041.238676-2-prestwoj@gmail.com> (raw)
In-Reply-To: <20250325180041.238676-1-prestwoj@gmail.com>
---
autotests/testBSSBlacklist/TestBlacklist.psk | 2 +
autotests/testBSSBlacklist/connection_test.py | 57 +++++++++++++++++++
.../{main.conf => main.conf.default} | 0
autotests/testBSSBlacklist/main.conf.disabled | 2 +
4 files changed, 61 insertions(+)
create mode 100644 autotests/testBSSBlacklist/TestBlacklist.psk
rename autotests/testBSSBlacklist/{main.conf => main.conf.default} (100%)
create mode 100644 autotests/testBSSBlacklist/main.conf.disabled
diff --git a/autotests/testBSSBlacklist/TestBlacklist.psk b/autotests/testBSSBlacklist/TestBlacklist.psk
new file mode 100644
index 00000000..abafdb66
--- /dev/null
+++ b/autotests/testBSSBlacklist/TestBlacklist.psk
@@ -0,0 +1,2 @@
+[Security]
+Passphrase=secret123
diff --git a/autotests/testBSSBlacklist/connection_test.py b/autotests/testBSSBlacklist/connection_test.py
index 9631a322..ac1cb86d 100644
--- a/autotests/testBSSBlacklist/connection_test.py
+++ b/autotests/testBSSBlacklist/connection_test.py
@@ -260,12 +260,69 @@ class Test(unittest.TestCase):
self.wd.unregister_psk_agent(psk_agent)
+ def test_blacklist_disabled(self):
+ wd = self.wd
+ bss_hostapd = self.bss_hostapd
+
+ rule0 = self.rule0
+ rule1 = self.rule1
+ rule2 = self.rule2
+
+ psk_agent = PSKAgent(["secret123", 'secret123'])
+ wd.register_psk_agent(psk_agent)
+
+ devices = wd.list_devices(1)
+ device = devices[0]
+
+ rule0.drop = True
+ rule0.enabled = True
+
+ device.autoconnect = True
+
+ condition = 'obj.state == DeviceState.connected'
+ wd.wait_for_object_condition(device, condition)
+
+ ordered_network = device.get_ordered_network("TestBlacklist", full_scan=True)
+
+ self.assertEqual(ordered_network.type, NetworkType.psk)
+
+ # The first BSS should fail, and we should connect to the second. This
+ # should not result in a connection blacklist though since its disabled.
+ bss_hostapd[1].wait_for_event('AP-STA-CONNECTED %s' % device.address)
+
+ device.disconnect()
+
+ rule0.drop = False
+ device.autoconnect = True
+
+ # Verify the first BSS wasn't blacklisted.
+ bss_hostapd[0].wait_for_event('AP-STA-CONNECTED %s' % device.address)
+
def setUp(self):
+ _, _, name = self.id().split(".")
+
+ # TODO: If we have this pattern elsewhere it might be nice to turn this
+ # into a decorator e.g.
+ #
+ # @config("main.conf.disabled")
+ # @profile("TestBlacklist.psk")
+ # def test_blacklist_disabled(self)
+ # ...
+ #
+ if name == "test_blacklist_disabled":
+ IWD.copy_to_storage("main.conf.disabled", IWD_CONFIG_DIR, "main.conf")
+ IWD.copy_to_storage("TestBlacklist.psk")
+ else:
+ IWD.copy_to_storage("main.conf.default", IWD_CONFIG_DIR, "main.conf")
+
self.wd = IWD(True)
def tearDown(self):
IWD.clear_storage()
self.wd = None
+ self.rule0.drop = False
+ self.rule1.drop = False
+ self.rule2.drop = False
@classmethod
def setUpClass(cls):
diff --git a/autotests/testBSSBlacklist/main.conf b/autotests/testBSSBlacklist/main.conf.default
similarity index 100%
rename from autotests/testBSSBlacklist/main.conf
rename to autotests/testBSSBlacklist/main.conf.default
diff --git a/autotests/testBSSBlacklist/main.conf.disabled b/autotests/testBSSBlacklist/main.conf.disabled
new file mode 100644
index 00000000..aae6bc12
--- /dev/null
+++ b/autotests/testBSSBlacklist/main.conf.disabled
@@ -0,0 +1,2 @@
+[Blacklist]
+InitialTimeout=0
--
2.34.1
next prev parent reply other threads:[~2025-03-25 18:00 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-25 18:00 [PATCH v3 01/10] station: always add BSS to network blacklist on failure James Prestwood
2025-03-25 18:00 ` James Prestwood [this message]
2025-03-25 18:00 ` [PATCH v3 03/10] blacklist: include a blacklist reason when adding/finding James Prestwood
2025-03-25 18:00 ` [PATCH v3 04/10] blacklist: fix pruning to remove the entry if its expired James Prestwood
2025-03-25 18:00 ` [PATCH v3 05/10] blacklist: add new blacklist reason, ROAM_REQUESTED James Prestwood
2025-03-25 18:00 ` [PATCH v3 06/10] netdev: add netdev_get_low_signal_thresholds James Prestwood
2025-03-25 18:00 ` [PATCH v3 07/10] station: roam blacklist BSS's, and consider when roaming James Prestwood
2025-03-26 17:49 ` James Prestwood
2025-03-25 18:00 ` [PATCH v3 08/10] station: roam blacklist AP even mid-roam James Prestwood
2025-03-25 18:00 ` [PATCH v3 09/10] auto-t: add tests for AP roam blacklisting James Prestwood
2025-03-25 18:00 ` [PATCH v3 10/10] doc: document InitialRoamRequestedTimeout 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=20250325180041.238676-2-prestwoj@gmail.com \
--to=prestwoj@gmail.com \
--cc=iwd@lists.linux.dev \
/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