test_wpas_config.py 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. # wpa_supplicant config file
  2. # Copyright (c) 2014, Jouni Malinen <j@w1.fi>
  3. #
  4. # This software may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. import logging
  7. logger = logging.getLogger()
  8. import os
  9. from wpasupplicant import WpaSupplicant
  10. def check_config(config):
  11. with open(config, "r") as f:
  12. data = f.read()
  13. if "update_config=1\n" not in data:
  14. raise Exception("Missing update_config")
  15. if "device_name=name\n" not in data:
  16. raise Exception("Missing device_name")
  17. if "eapol_version=2\n" not in data:
  18. raise Exception("Missing eapol_version")
  19. if "ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=" not in data:
  20. raise Exception("Missing ctrl_interface")
  21. if "blob-base64-foo={" not in data:
  22. raise Exception("Missing blob")
  23. if "cred={" not in data:
  24. raise Exception("Missing cred")
  25. if "network={" not in data:
  26. raise Exception("Missing network")
  27. return data
  28. def test_wpas_config_file(dev):
  29. """wpa_supplicant config file parsing/writing"""
  30. config = "/tmp/test_wpas_config_file.conf"
  31. if os.path.exists(config):
  32. os.remove(config)
  33. wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
  34. try:
  35. wpas.interface_add("wlan5", config=config)
  36. initialized = True
  37. except:
  38. initialized = False
  39. if initialized:
  40. raise Exception("Missing config file did not result in an error")
  41. try:
  42. with open(config, "w") as f:
  43. f.write("update_config=1 \t\r\n")
  44. f.write("# foo\n")
  45. f.write("\n")
  46. f.write(" \t\reapol_version=2")
  47. for i in range(0, 100):
  48. f.write(" ")
  49. f.write("foo\n")
  50. f.write("device_name=name#foo\n")
  51. wpas.interface_add("wlan5", config=config)
  52. id = wpas.add_network()
  53. wpas.set_network_quoted(id, "ssid", "foo")
  54. wpas.set_network_quoted(id, "psk", "12345678")
  55. wpas.set_network(id, "bssid", "00:11:22:33:44:55")
  56. wpas.set_network(id, "proto", "RSN")
  57. wpas.set_network(id, "key_mgmt", "WPA-PSK-SHA256")
  58. wpas.set_network(id, "pairwise", "CCMP")
  59. wpas.set_network(id, "group", "CCMP")
  60. wpas.set_network(id, "auth_alg", "OPEN")
  61. id = wpas.add_cred()
  62. wpas.set_cred(id, "priority", "3")
  63. wpas.set_cred(id, "sp_priority", "6")
  64. wpas.set_cred(id, "update_identifier", "4")
  65. wpas.set_cred(id, "ocsp", "1")
  66. wpas.set_cred(id, "eap", "TTLS")
  67. wpas.set_cred(id, "req_conn_capab", "6:1234")
  68. wpas.set_cred_quoted(id, "realm", "example.com")
  69. wpas.set_cred_quoted(id, "provisioning_sp", "example.com")
  70. wpas.set_cred_quoted(id, "domain", "example.com")
  71. wpas.set_cred_quoted(id, "domain_suffix_match", "example.com")
  72. wpas.set_cred(id, "roaming_consortium", "112233")
  73. wpas.set_cred(id, "required_roaming_consortium", "112233")
  74. wpas.set_cred_quoted(id, "roaming_partner",
  75. "roaming.example.net,1,127,*")
  76. wpas.set_cred_quoted(id, "ca_cert", "/tmp/ca.pem")
  77. wpas.set_cred_quoted(id, "username", "user")
  78. wpas.set_cred_quoted(id, "password", "secret")
  79. ev = wpas.wait_event(["CRED-MODIFIED 0 password"])
  80. wpas.request("SET blob foo 12345678")
  81. if "OK" not in wpas.request("SAVE_CONFIG"):
  82. raise Exception("Failed to save configuration file")
  83. if "OK" not in wpas.global_request("SAVE_CONFIG"):
  84. raise Exception("Failed to save configuration file")
  85. wpas.interface_remove("wlan5")
  86. data1 = check_config(config)
  87. wpas.interface_add("wlan5", config=config)
  88. if len(wpas.list_networks()) != 1:
  89. raise Exception("Unexpected number of networks")
  90. if len(wpas.request("LIST_CREDS").splitlines()) != 2:
  91. raise Exception("Unexpected number of credentials")
  92. if "OK" not in wpas.request("SAVE_CONFIG"):
  93. raise Exception("Failed to save configuration file")
  94. data2 = check_config(config)
  95. if data1 != data2:
  96. logger.debug(data1)
  97. logger.debug(data2)
  98. raise Exception("Unexpected configuration change")
  99. wpas.request("SET update_config 0")
  100. if "OK" in wpas.request("SAVE_CONFIG"):
  101. raise Exception("SAVE_CONFIG succeeded unexpectedly")
  102. if "OK" in wpas.global_request("SAVE_CONFIG"):
  103. raise Exception("SAVE_CONFIG (global) succeeded unexpectedly")
  104. # replace the config file with a directory to break writing/renaming
  105. os.remove(config)
  106. os.mkdir(config)
  107. wpas.request("SET update_config 1")
  108. if "OK" in wpas.request("SAVE_CONFIG"):
  109. raise Exception("SAVE_CONFIG succeeded unexpectedly")
  110. if "OK" in wpas.global_request("SAVE_CONFIG"):
  111. raise Exception("SAVE_CONFIG (global) succeeded unexpectedly")
  112. finally:
  113. try:
  114. os.remove(config)
  115. except:
  116. pass
  117. try:
  118. os.remove(config + ".tmp")
  119. except:
  120. pass
  121. try:
  122. os.rmdir(config)
  123. except:
  124. pass