diff mbox series

[16/17] tests: gas: wait for STA before ANQP_GET

Message ID 20230925092039.6c436074c087.I2b23b6821c8e25b7bf959c418a084dc6f2e29075@changeid
State Accepted
Headers show
Series tests: some scheduling and other fixes | expand

Commit Message

Johannes Berg Sept. 25, 2023, 7:20 a.m. UTC
From: Johannes Berg <johannes.berg@intel.com>

We can't do ANQP when the STA is connected but the AP
hasn't fully set up the STA yet, so wait on the AP
side before continuing.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
---
 tests/hwsim/test_gas.py | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/tests/hwsim/test_gas.py b/tests/hwsim/test_gas.py
index cad2bf3ea46e..adff23be1488 100644
--- a/tests/hwsim/test_gas.py
+++ b/tests/hwsim/test_gas.py
@@ -1495,6 +1495,7 @@  def _test_gas_anqp_address3_pmf(dev, apdev):
                    password="password", phase2="auth=MSCHAPV2",
                    ca_cert="auth_serv/ca.pem", scan_freq="2412",
                    ieee80211w="2")
+    hapd.wait_sta()
 
     if "OK" not in dev[0].request("ANQP_GET " + bssid + " 258"):
         raise Exception("ANQP_GET command failed")
@@ -1533,6 +1534,7 @@  def test_gas_prot_vs_not_prot(dev, apdev, params):
                    password="password", phase2="auth=MSCHAPV2",
                    ca_cert="auth_serv/ca.pem", scan_freq="2412",
                    ieee80211w="2")
+    hapd.wait_sta()
 
     if "OK" not in dev[0].request("ANQP_GET " + bssid + " 258"):
         raise Exception("ANQP_GET command failed")
@@ -1765,6 +1767,7 @@  def test_gas_anqp_venue_url_pmf(dev, apdev):
     dev[0].flush_scan_cache()
     dev[0].connect("gas/anqp/pmf", psk="12345678", ieee80211w="2",
                    scan_freq="2412")
+    hapd.wait_sta()
     if "OK" not in dev[0].request("ANQP_GET " + bssid + " 277"):
         raise Exception("ANQP_GET command failed")