example_test.py 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. import re
  2. import os
  3. import socket
  4. import BaseHTTPServer
  5. import SimpleHTTPServer
  6. from threading import Thread
  7. import ssl
  8. from tiny_test_fw import DUT
  9. import ttfw_idf
  10. import random
  11. import subprocess
  12. server_cert = "-----BEGIN CERTIFICATE-----\n" \
  13. "MIIDXTCCAkWgAwIBAgIJAP4LF7E72HakMA0GCSqGSIb3DQEBCwUAMEUxCzAJBgNV\n"\
  14. "BAYTAkFVMRMwEQYDVQQIDApTb21lLVN0YXRlMSEwHwYDVQQKDBhJbnRlcm5ldCBX\n"\
  15. "aWRnaXRzIFB0eSBMdGQwHhcNMTkwNjA3MDk1OTE2WhcNMjAwNjA2MDk1OTE2WjBF\n"\
  16. "MQswCQYDVQQGEwJBVTETMBEGA1UECAwKU29tZS1TdGF0ZTEhMB8GA1UECgwYSW50\n"\
  17. "ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\n"\
  18. "CgKCAQEAlzfCyv3mIv7TlLkObxunKfCdrJ/zgdANrsx0RBtpEPhV560hWJ0fEin0\n"\
  19. "nIOMpJSiF9E6QsPdr6Q+eogH4XnOMU9JE+iG743N1dPfGEzJvRlyct/Ck8SswKPC\n"\
  20. "9+VXsnOdZmUw9y/xtANbURA/TspvPzz3Avv382ffffrJGh7ooOmaZSCZFlSYHLZA\n"\
  21. "w/XlRr0sSRbLpFGY0gXjaAV8iHHiPDYLy4kZOepjV9U51xi+IGsL4w75zuMgsHyF\n"\
  22. "3nJeGYHgtGVBrkL0ZKG5udY0wcBjysjubDJC4iSlNiq2HD3fhs7j6CZddV2v845M\n"\
  23. "lVKNxP0kO4Uj4D8r+5USWC8JKfAwxQIDAQABo1AwTjAdBgNVHQ4EFgQU6OE7ssfY\n"\
  24. "IIPTDThiUoofUpsD5NwwHwYDVR0jBBgwFoAU6OE7ssfYIIPTDThiUoofUpsD5Nww\n"\
  25. "DAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAXIlHS/FJWfmcinUAxyBd\n"\
  26. "/xd5Lu8ykeru6oaUCci+Vk9lyoMMES7lQ+b/00d5x7AcTawkTil9EWpBTPTOTraA\n"\
  27. "lzJMQhNKmSLk0iIoTtAJtSZgUSpIIozqK6lenxQQDsHbXKU6h+u9H6KZE8YcjsFl\n"\
  28. "6vL7sw9BVotw/VxfgjQ5OSGLgoLrdVT0z5C2qOuwOgz1c7jNiJhtMdwN+cOtnJp2\n"\
  29. "fuBgEYyE3eeuWogvkWoDcIA8r17Ixzkpq2oJsdvZcHZPIZShPKW2SHUsl98KDemu\n"\
  30. "y0pQyExmQUbwKE4vbFb9XuWCcL9XaOHQytyszt2DeD67AipvoBwVU7/LBOvqnsmy\n"\
  31. "hA==\n"\
  32. "-----END CERTIFICATE-----\n"
  33. server_key = "-----BEGIN PRIVATE KEY-----\n"\
  34. "MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQCXN8LK/eYi/tOU\n"\
  35. "uQ5vG6cp8J2sn/OB0A2uzHREG2kQ+FXnrSFYnR8SKfScg4yklKIX0TpCw92vpD56\n"\
  36. "iAfhec4xT0kT6Ibvjc3V098YTMm9GXJy38KTxKzAo8L35Veyc51mZTD3L/G0A1tR\n"\
  37. "ED9Oym8/PPcC+/fzZ999+skaHuig6ZplIJkWVJgctkDD9eVGvSxJFsukUZjSBeNo\n"\
  38. "BXyIceI8NgvLiRk56mNX1TnXGL4gawvjDvnO4yCwfIXecl4ZgeC0ZUGuQvRkobm5\n"\
  39. "1jTBwGPKyO5sMkLiJKU2KrYcPd+GzuPoJl11Xa/zjkyVUo3E/SQ7hSPgPyv7lRJY\n"\
  40. "Lwkp8DDFAgMBAAECggEAfBhAfQE7mUByNbxgAgI5fot9eaqR1Nf+QpJ6X2H3KPwC\n"\
  41. "02sa0HOwieFwYfj6tB1doBoNq7i89mTc+QUlIn4pHgIowHO0OGawomeKz5BEhjCZ\n"\
  42. "4XeLYGSoODary2+kNkf2xY8JTfFEcyvGBpJEwc4S2VyYgRRx+IgnumTSH+N5mIKZ\n"\
  43. "SXWNdZIuHEmkwod+rPRXs6/r+PH0eVW6WfpINEbr4zVAGXJx2zXQwd2cuV1GTJWh\n"\
  44. "cPVOXLu+XJ9im9B370cYN6GqUnR3fui13urYbnWnEf3syvoH/zuZkyrVChauoFf8\n"\
  45. "8EGb74/HhXK7Q2s8NRakx2c7OxQifCbcy03liUMmyQKBgQDFAob5B/66N4Q2cq/N\n"\
  46. "MWPf98kYBYoLaeEOhEJhLQlKk0pIFCTmtpmUbpoEes2kCUbH7RwczpYko8tlKyoB\n"\
  47. "6Fn6RY4zQQ64KZJI6kQVsjkYpcP/ihnOY6rbds+3yyv+4uPX7Eh9sYZwZMggE19M\n"\
  48. "CkFHkwAjiwqhiiSlUxe20sWmowKBgQDEfx4lxuFzA1PBPeZKGVBTxYPQf+DSLCre\n"\
  49. "ZFg3ZmrxbCjRq1O7Lra4FXWD3dmRq7NDk79JofoW50yD8wD7I0B7opdDfXD2idO8\n"\
  50. "0dBnWUKDr2CAXyoLEINce9kJPbx4kFBQRN9PiGF7VkDQxeQ3kfS8CvcErpTKCOdy\n"\
  51. "5wOwBTwJdwKBgDiTFTeGeDv5nVoVbS67tDao7XKchJvqd9q3WGiXikeELJyuTDqE\n"\
  52. "zW22pTwMF+m3UEAxcxVCrhMvhkUzNAkANHaOatuFHzj7lyqhO5QPbh4J3FMR0X9X\n"\
  53. "V8VWRSg+jA/SECP9koOl6zlzd5Tee0tW1pA7QpryXscs6IEhb3ns5R2JAoGAIkzO\n"\
  54. "RmnhEOKTzDex611f2D+yMsMfy5BKK2f4vjLymBH5TiBKDXKqEpgsW0huoi8Gq9Uu\n"\
  55. "nvvXXAgkIyRYF36f0vUe0nkjLuYAQAWgC2pZYgNLJR13iVbol0xHJoXQUHtgiaJ8\n"\
  56. "GLYFzjHQPqFMpSalQe3oELko39uOC1CoJCHFySECgYBeycUnRBikCO2n8DNhY4Eg\n"\
  57. "9Y3oxcssRt6ea5BZwgW2eAYi7/XqKkmxoSoOykUt3MJx9+EkkrL17bxFSpkj1tvL\n"\
  58. "qvxn7egtsKjjgGNAxwXC4MwCvhveyUQQxtQb8AqGrGqo4jEEN0L15cnP38i2x1Uo\n"\
  59. "muhfskWf4MABV0yTUaKcGg==\n"\
  60. "-----END PRIVATE KEY-----\n"
  61. def get_my_ip():
  62. s1 = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
  63. s1.connect(("8.8.8.8", 80))
  64. my_ip = s1.getsockname()[0]
  65. s1.close()
  66. return my_ip
  67. def get_server_status(host_ip, port):
  68. sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  69. server_status = sock.connect_ex((host_ip, port))
  70. sock.close()
  71. if server_status == 0:
  72. return True
  73. return False
  74. def create_file(server_file, file_data):
  75. with open(server_file, "w+") as file:
  76. file.write(file_data)
  77. def get_ca_cert(ota_image_dir):
  78. os.chdir(ota_image_dir)
  79. server_file = os.path.join(ota_image_dir, "server_cert.pem")
  80. create_file(server_file, server_cert)
  81. key_file = os.path.join(ota_image_dir, "server_key.pem")
  82. create_file(key_file, server_key)
  83. return server_file, key_file
  84. def start_https_server(ota_image_dir, server_ip, server_port):
  85. server_file, key_file = get_ca_cert(ota_image_dir)
  86. httpd = BaseHTTPServer.HTTPServer((server_ip, server_port),
  87. SimpleHTTPServer.SimpleHTTPRequestHandler)
  88. httpd.socket = ssl.wrap_socket(httpd.socket,
  89. keyfile=key_file,
  90. certfile=server_file, server_side=True)
  91. httpd.serve_forever()
  92. def start_chunked_server(ota_image_dir, server_port):
  93. server_file, key_file = get_ca_cert(ota_image_dir)
  94. chunked_server = subprocess.Popen(["openssl", "s_server", "-WWW", "-key", key_file, "-cert", server_file, "-port", str(server_port)])
  95. return chunked_server
  96. @ttfw_idf.idf_example_test(env_tag="Example_WIFI")
  97. def test_examples_protocol_native_ota_example(env, extra_data):
  98. """
  99. This is a positive test case, which downloads complete binary file multiple number of times.
  100. Number of iterations can be specified in variable iterations.
  101. steps: |
  102. 1. join AP
  103. 2. Fetch OTA image over HTTPS
  104. 3. Reboot with the new OTA image
  105. """
  106. dut1 = env.get_dut("native_ota_example", "examples/system/ota/native_ota_example", dut_class=ttfw_idf.ESP32DUT)
  107. server_port = 8002
  108. # No. of times working of application to be validated
  109. iterations = 3
  110. # File to be downloaded. This file is generated after compilation
  111. bin_name = "native_ota.bin"
  112. # check and log bin size
  113. binary_file = os.path.join(dut1.app.binary_path, bin_name)
  114. bin_size = os.path.getsize(binary_file)
  115. ttfw_idf.log_performance("native_ota_bin_size", "{}KB".format(bin_size // 1024))
  116. ttfw_idf.check_performance("native_ota_bin_size", bin_size // 1024, dut1.TARGET)
  117. # start test
  118. host_ip = get_my_ip()
  119. if (get_server_status(host_ip, server_port) is False):
  120. thread1 = Thread(target=start_https_server, args=(dut1.app.binary_path, host_ip, server_port))
  121. thread1.daemon = True
  122. thread1.start()
  123. dut1.start_app()
  124. for i in range(iterations):
  125. dut1.expect("Loaded app from partition at offset", timeout=30)
  126. try:
  127. ip_address = dut1.expect(re.compile(r" sta ip: ([^,]+),"), timeout=30)
  128. print("Connected to AP with IP: {}".format(ip_address))
  129. except DUT.ExpectTimeout:
  130. raise ValueError('ENV_TEST_FAILURE: Cannot connect to AP')
  131. thread1.close()
  132. dut1.expect("Starting OTA example", timeout=30)
  133. print("writing to device: {}".format("https://" + host_ip + ":" + str(server_port) + "/" + bin_name))
  134. dut1.write("https://" + host_ip + ":" + str(server_port) + "/" + bin_name)
  135. dut1.expect("Loaded app from partition at offset", timeout=60)
  136. dut1.expect("Starting OTA example", timeout=30)
  137. dut1.reset()
  138. @ttfw_idf.idf_example_test(env_tag="Example_WIFI")
  139. def test_examples_protocol_native_ota_example_truncated_bin(env, extra_data):
  140. """
  141. Working of OTA if binary file is truncated is validated in this test case.
  142. Application should return with error message in this case.
  143. steps: |
  144. 1. join AP
  145. 2. Generate truncated binary file
  146. 3. Fetch OTA image over HTTPS
  147. 4. Check working of code if bin is truncated
  148. """
  149. dut1 = env.get_dut("native_ota_example", "examples/system/ota/native_ota_example", dut_class=ttfw_idf.ESP32DUT)
  150. server_port = 8002
  151. # Original binary file generated after compilation
  152. bin_name = "native_ota.bin"
  153. # Truncated binary file to be generated from original binary file
  154. truncated_bin_name = "truncated.bin"
  155. # Size of truncated file to be grnerated. This value can range from 288 bytes (Image header size) to size of original binary file
  156. # truncated_bin_size is set to 64000 to reduce consumed by the test case
  157. truncated_bin_size = 64000
  158. # check and log bin size
  159. binary_file = os.path.join(dut1.app.binary_path, bin_name)
  160. f = open(binary_file, "r+")
  161. fo = open(os.path.join(dut1.app.binary_path, truncated_bin_name), "w+")
  162. fo.write(f.read(truncated_bin_size))
  163. fo.close()
  164. f.close()
  165. binary_file = os.path.join(dut1.app.binary_path, truncated_bin_name)
  166. bin_size = os.path.getsize(binary_file)
  167. ttfw_idf.log_performance("native_ota_bin_size", "{}KB".format(bin_size // 1024))
  168. ttfw_idf.check_performance("native_ota_bin_size", bin_size // 1024, dut1.TARGET)
  169. # start test
  170. host_ip = get_my_ip()
  171. if (get_server_status(host_ip, server_port) is False):
  172. thread1 = Thread(target=start_https_server, args=(dut1.app.binary_path, host_ip, server_port))
  173. thread1.daemon = True
  174. thread1.start()
  175. dut1.start_app()
  176. dut1.expect("Loaded app from partition at offset", timeout=30)
  177. try:
  178. ip_address = dut1.expect(re.compile(r" sta ip: ([^,]+),"), timeout=60)
  179. print("Connected to AP with IP: {}".format(ip_address))
  180. except DUT.ExpectTimeout:
  181. raise ValueError('ENV_TEST_FAILURE: Cannot connect to AP')
  182. dut1.expect("Starting OTA example", timeout=30)
  183. print("writing to device: {}".format("https://" + host_ip + ":" + str(server_port) + "/" + truncated_bin_name))
  184. dut1.write("https://" + host_ip + ":" + str(server_port) + "/" + truncated_bin_name)
  185. dut1.expect("native_ota_example: Image validation failed, image is corrupted", timeout=20)
  186. os.remove(binary_file)
  187. @ttfw_idf.idf_example_test(env_tag="Example_WIFI")
  188. def test_examples_protocol_native_ota_example_truncated_header(env, extra_data):
  189. """
  190. Working of OTA if headers of binary file are truncated is vaildated in this test case.
  191. Application should return with error message in this case.
  192. steps: |
  193. 1. join AP
  194. 2. Generate binary file with truncated headers
  195. 3. Fetch OTA image over HTTPS
  196. 4. Check working of code if headers are not sent completely
  197. """
  198. dut1 = env.get_dut("native_ota_example", "examples/system/ota/native_ota_example", dut_class=ttfw_idf.ESP32DUT)
  199. server_port = 8002
  200. # Original binary file generated after compilation
  201. bin_name = "native_ota.bin"
  202. # Truncated binary file to be generated from original binary file
  203. truncated_bin_name = "truncated_header.bin"
  204. # Size of truncated file to be grnerated. This value should be less than 288 bytes (Image header size)
  205. truncated_bin_size = 180
  206. # check and log bin size
  207. binary_file = os.path.join(dut1.app.binary_path, bin_name)
  208. f = open(binary_file, "r+")
  209. fo = open(os.path.join(dut1.app.binary_path, truncated_bin_name), "w+")
  210. fo.write(f.read(truncated_bin_size))
  211. fo.close()
  212. f.close()
  213. binary_file = os.path.join(dut1.app.binary_path, truncated_bin_name)
  214. bin_size = os.path.getsize(binary_file)
  215. ttfw_idf.log_performance("native_ota_bin_size", "{}KB".format(bin_size // 1024))
  216. ttfw_idf.check_performance("native_ota_bin_size", bin_size // 1024, dut1.TARGET)
  217. # start test
  218. host_ip = get_my_ip()
  219. if (get_server_status(host_ip, server_port) is False):
  220. thread1 = Thread(target=start_https_server, args=(dut1.app.binary_path, host_ip, server_port))
  221. thread1.daemon = True
  222. thread1.start()
  223. dut1.start_app()
  224. dut1.expect("Loaded app from partition at offset", timeout=30)
  225. try:
  226. ip_address = dut1.expect(re.compile(r" sta ip: ([^,]+),"), timeout=60)
  227. print("Connected to AP with IP: {}".format(ip_address))
  228. except DUT.ExpectTimeout:
  229. raise ValueError('ENV_TEST_FAILURE: Cannot connect to AP')
  230. dut1.expect("Starting OTA example", timeout=30)
  231. print("writing to device: {}".format("https://" + host_ip + ":" + str(server_port) + "/" + truncated_bin_name))
  232. dut1.write("https://" + host_ip + ":" + str(server_port) + "/" + truncated_bin_name)
  233. dut1.expect("native_ota_example: received package is not fit len", timeout=20)
  234. os.remove(binary_file)
  235. @ttfw_idf.idf_example_test(env_tag="Example_WIFI")
  236. def test_examples_protocol_native_ota_example_random(env, extra_data):
  237. """
  238. Working of OTA if random data is added in binary file are validated in this test case.
  239. Magic byte verification should fail in this case.
  240. steps: |
  241. 1. join AP
  242. 2. Generate random binary image
  243. 3. Fetch OTA image over HTTPS
  244. 4. Check working of code for random binary file
  245. """
  246. dut1 = env.get_dut("native_ota_example", "examples/system/ota/native_ota_example", dut_class=ttfw_idf.ESP32DUT)
  247. server_port = 8002
  248. # Random binary file to be generated
  249. random_bin_name = "random.bin"
  250. # Size of random binary file. 32000 is choosen, to reduce the time required to run the test-case
  251. random_bin_size = 32000
  252. # check and log bin size
  253. binary_file = os.path.join(dut1.app.binary_path, random_bin_name)
  254. fo = open(binary_file, "w+")
  255. # First byte of binary file is always set to zero. If first byte is generated randomly,
  256. # in some cases it may generate 0xE9 which will result in failure of testcase.
  257. fo.write(str(0))
  258. for i in range(random_bin_size - 1):
  259. fo.write(str(random.randrange(0,255,1)))
  260. fo.close()
  261. bin_size = os.path.getsize(binary_file)
  262. ttfw_idf.log_performance("native_ota_bin_size", "{}KB".format(bin_size // 1024))
  263. ttfw_idf.check_performance("native_ota_bin_size", bin_size // 1024, dut1.TARGET)
  264. # start test
  265. host_ip = get_my_ip()
  266. if (get_server_status(host_ip, server_port) is False):
  267. thread1 = Thread(target=start_https_server, args=(dut1.app.binary_path, host_ip, server_port))
  268. thread1.daemon = True
  269. thread1.start()
  270. dut1.start_app()
  271. dut1.expect("Loaded app from partition at offset", timeout=30)
  272. try:
  273. ip_address = dut1.expect(re.compile(r" sta ip: ([^,]+),"), timeout=60)
  274. print("Connected to AP with IP: {}".format(ip_address))
  275. except DUT.ExpectTimeout:
  276. raise ValueError('ENV_TEST_FAILURE: Cannot connect to AP')
  277. dut1.expect("Starting OTA example", timeout=30)
  278. print("writing to device: {}".format("https://" + host_ip + ":" + str(server_port) + "/" + random_bin_name))
  279. dut1.write("https://" + host_ip + ":" + str(server_port) + "/" + random_bin_name)
  280. dut1.expect("esp_ota_ops: OTA image has invalid magic byte", timeout=20)
  281. os.remove(binary_file)
  282. @ttfw_idf.idf_example_test(env_tag="Example_WIFI")
  283. def test_examples_protocol_native_ota_example_chunked(env, extra_data):
  284. """
  285. This is a positive test case, which downloads complete binary file multiple number of times.
  286. Number of iterations can be specified in variable iterations.
  287. steps: |
  288. 1. join AP
  289. 2. Fetch OTA image over HTTPS
  290. 3. Reboot with the new OTA image
  291. """
  292. dut1 = env.get_dut("native_ota_example", "examples/system/ota/native_ota_example", dut_class=ttfw_idf.ESP32DUT)
  293. # File to be downloaded. This file is generated after compilation
  294. bin_name = "native_ota.bin"
  295. # check and log bin size
  296. binary_file = os.path.join(dut1.app.binary_path, bin_name)
  297. bin_size = os.path.getsize(binary_file)
  298. ttfw_idf.log_performance("native_ota_bin_size", "{}KB".format(bin_size // 1024))
  299. ttfw_idf.check_performance("native_ota_bin_size", bin_size // 1024, dut1.TARGET)
  300. # start test
  301. host_ip = get_my_ip()
  302. chunked_server = start_chunked_server(dut1.app.binary_path, 8070)
  303. dut1.start_app()
  304. dut1.expect("Loaded app from partition at offset", timeout=30)
  305. try:
  306. ip_address = dut1.expect(re.compile(r" sta ip: ([^,]+),"), timeout=30)
  307. print("Connected to AP with IP: {}".format(ip_address))
  308. except DUT.ExpectTimeout:
  309. raise ValueError('ENV_TEST_FAILURE: Cannot connect to AP')
  310. dut1.expect("Starting OTA example", timeout=30)
  311. print("writing to device: {}".format("https://" + host_ip + ":8070/" + bin_name))
  312. dut1.write("https://" + host_ip + ":8070/" + bin_name)
  313. dut1.expect("Loaded app from partition at offset", timeout=60)
  314. dut1.expect("Starting OTA example", timeout=30)
  315. chunked_server.kill()
  316. os.remove(os.path.join(dut1.app.binary_path, "server_cert.pem"))
  317. os.remove(os.path.join(dut1.app.binary_path, "server_key.pem"))
  318. if __name__ == '__main__':
  319. test_examples_protocol_native_ota_example()
  320. test_examples_protocol_native_ota_example_chunked()
  321. test_examples_protocol_native_ota_example_truncated_bin()
  322. test_examples_protocol_native_ota_example_truncated_header()
  323. test_examples_protocol_native_ota_example_random()