From 53fa04e197a4edc26e74b874147f4165f9c52506 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Tue, 17 Apr 2018 16:21:00 +0300 Subject: [PATCH] tests: wpa_supplicant cred roaming_consortiums parsing/writing Signed-off-by: Jouni Malinen --- tests/hwsim/test_wpas_config.py | 6 ++++++ 1 file changed, 6 insertions(+) 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)