From: Jouni Malinen Date: Wed, 6 Jan 2016 22:27:50 +0000 (+0200) Subject: tests: Make eap_check_auth() error on missing selectedMethod clearer X-Git-Tag: hostap_2_6~1021 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=447fb0b0da659b99ba713cdb53df9344a102cf32;p=thirdparty%2Fhostap.git tests: Make eap_check_auth() error on missing selectedMethod clearer It was possible to hit an error case in ap_wpa2_eap_in_bridge where the selectedMethod STATUS field was not available. This resulted in not very helpful "'selectedMethod'" message in the test log file. Make this clearer by dumping all received STATUS fields and a clearer exception message indicating that selectedMethod was missing. Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_ap_eap.py b/tests/hwsim/test_ap_eap.py index 9efa73c4c..6a4eec66a 100644 --- a/tests/hwsim/test_ap_eap.py +++ b/tests/hwsim/test_ap_eap.py @@ -176,6 +176,9 @@ def eap_check_auth(dev, method, initial, rsn=True, sha256=False, if status["suppPortStatus"] != "Authorized": raise Exception("Port not authorized") + if "selectedMethod" not in status: + logger.info("Status: " + str(status)) + raise Exception("No selectedMethod in status") if method not in status["selectedMethod"]: raise Exception("Incorrect EAP method status") if sha256: