From: Jouni Malinen Date: Tue, 17 Apr 2018 13:21:00 +0000 (+0300) Subject: tests: wpa_supplicant cred roaming_consortiums parsing/writing X-Git-Tag: hostap_2_7~423 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53fa04e197a4edc26e74b874147f4165f9c52506;p=thirdparty%2Fhostap.git tests: wpa_supplicant cred roaming_consortiums parsing/writing Signed-off-by: Jouni Malinen --- diff --git a/tests/hwsim/test_wpas_config.py b/tests/hwsim/test_wpas_config.py index af499cc73..14258bfb8 100644 --- a/tests/hwsim/test_wpas_config.py +++ b/tests/hwsim/test_wpas_config.py @@ -216,6 +216,8 @@ def test_wpas_config_file(dev, apdev, params): wpas.set_cred_quoted(id, "domain_suffix_match", "example.com") wpas.set_cred(id, "roaming_consortium", "112233") wpas.set_cred(id, "required_roaming_consortium", "112233") + wpas.set_cred_quoted(id, "roaming_consortiums", + "112233,aabbccddee,445566") wpas.set_cred_quoted(id, "roaming_partner", "roaming.example.net,1,127,*") wpas.set_cred_quoted(id, "ca_cert", "/tmp/ca.pem") @@ -243,6 +245,10 @@ def test_wpas_config_file(dev, apdev, params): if len(wpas.request("LIST_CREDS").splitlines()) != 2: raise Exception("Unexpected number of credentials") + val = wpas.get_cred(0, "roaming_consortiums") + if val != "112233,aabbccddee,445566": + raise Exception("Unexpected roaming_consortiums value: " + val) + if "OK" not in wpas.request("SAVE_CONFIG"): raise Exception("Failed to save configuration file") data2 = check_config(capa, config)