From e8739be8424a1cce73ec30325513bf8d37e2e3e9 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 5 Jun 2016 00:03:38 +0300 Subject: [PATCH] tests: Mesh scan element parse error Signed-off-by: Jouni Malinen --- tests/hwsim/test_wpas_mesh.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/tests/hwsim/test_wpas_mesh.py b/tests/hwsim/test_wpas_mesh.py index 92650f3..9bafd5d 100644 --- a/tests/hwsim/test_wpas_mesh.py +++ b/tests/hwsim/test_wpas_mesh.py @@ -11,6 +11,7 @@ import subprocess import time import hwsim_utils +import hostapd from wpasupplicant import WpaSupplicant from utils import HwsimSkip, alloc_fail, fail_test, wait_fail_trigger from tshark import run_tshark @@ -1275,3 +1276,19 @@ def test_mesh_default_beacon_int(dev, apdev): check_mesh_group_added(dev[0]) finally: dev[0].request("SET beacon_int 0") + +def test_mesh_scan_parse_error(dev, apdev): + """Mesh scan element parse error""" + check_mesh_support(dev[0]) + params = { "ssid": "open", + "beacon_int": "2000" } + hapd = hostapd.add_ap(apdev[0], params) + bssid = apdev[0]['bssid'] + hapd.set('vendor_elements', 'dd0201') + for i in range(10): + dev[0].scan(freq=2412) + if bssid in dev[0].request("SCAN_RESULTS"): + break + # This will fail in IE parsing due to the truncated IE in the Probe + # Response frame. + bss = dev[0].request("BSS " + bssid) -- 2.1.4