]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: Extend EHT estimated throughput testing
authorAndrei Otcheretianski <andrei.otcheretianski@intel.com>
Wed, 30 Nov 2022 15:02:47 +0000 (17:02 +0200)
committerJouni Malinen <j@w1.fi>
Wed, 30 Nov 2022 18:33:44 +0000 (20:33 +0200)
Add a basic test to verify AP selection algorithm with EHT AP.

Signed-off-by: Ayala Beker <ayala.beker@intel.com>
Signed-off-by: Andrei Otcheretianski <andrei.otcheretianski@intel.com>
tests/hwsim/test_eht.py

index 3ead469c3525881211b824f80a54a13bf449d872..659fdf504221d36d7b739df0b9d3732b3b2cd4d2 100644 (file)
@@ -28,3 +28,28 @@ def test_eht_open(dev, apdev):
     status = dev[0].request("STATUS")
     if "wifi_generation=7" not in status:
         raise Exception("STA STATUS did not indicate wifi_generation=7")
+
+def test_prefer_eht_20(dev, apdev):
+    params = {"ssid": "eht",
+              "channel": "1",
+              "ieee80211ax": "1",
+              "ieee80211be" : "1",
+              "ieee80211n": "1"}
+    try:
+        hapd0 = hostapd.add_ap(apdev[0], params)
+
+        params["ieee80211be"] = "0"
+        hapd1 = hostapd.add_ap(apdev[1], params)
+    except Exception as e:
+        if isinstance(e, Exception) and \
+           str(e) == "Failed to set hostapd parameter ieee80211be":
+            raise HwsimSkip("EHT not supported")
+        raise
+
+    dev[0].connect("eht", key_mgmt="NONE")
+    if dev[0].get_status_field('bssid') != apdev[0]['bssid']:
+        raise Exception("dev[0] connected to unexpected AP")
+
+    est = dev[0].get_bss(apdev[0]['bssid'])['est_throughput']
+    if est != "172103":
+      raise Exception("Unexpected BSS1 est_throughput: " + est)