esp_http_client_test.py 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import re
  2. import os
  3. import sys
  4. # this is a test case write with tiny-test-fw.
  5. # to run test cases outside tiny-test-fw,
  6. # we need to set environment variable `TEST_FW_PATH`,
  7. # then get and insert `TEST_FW_PATH` to sys path before import FW module
  8. test_fw_path = os.getenv("TEST_FW_PATH")
  9. if test_fw_path and test_fw_path not in sys.path:
  10. sys.path.insert(0, test_fw_path)
  11. import TinyFW
  12. import IDF
  13. @IDF.idf_example_test(env_tag="Example_WIFI")
  14. def test_examples_protocol_esp_http_client(env, extra_data):
  15. """
  16. steps: |
  17. 1. join AP
  18. 2. Send HTTP request to httpbin.org
  19. """
  20. dut1 = env.get_dut("esp_http_client", "examples/protocols/esp_http_client")
  21. # check and log bin size
  22. binary_file = os.path.join(dut1.app.binary_path, "esp-http-client-example.bin")
  23. bin_size = os.path.getsize(binary_file)
  24. IDF.log_performance("esp_http_client_bin_size", "{}KB".format(bin_size//1024))
  25. IDF.check_performance("esp_http_client_bin_size", bin_size//1024)
  26. # start test
  27. dut1.start_app()
  28. dut1.expect("Connected to AP, begin http example", timeout=30)
  29. dut1.expect(re.compile(r"HTTP GET Status = 200, content_length = (\d)"))
  30. dut1.expect(re.compile(r"HTTP POST Status = 200, content_length = (\d)"))
  31. dut1.expect(re.compile(r"HTTP PUT Status = 200, content_length = (\d)"))
  32. dut1.expect(re.compile(r"HTTP PATCH Status = 200, content_length = (\d)"))
  33. dut1.expect(re.compile(r"HTTP DELETE Status = 200, content_length = (\d)"))
  34. dut1.expect(re.compile(r"HTTP Basic Auth Status = 200, content_length = (\d)"))
  35. dut1.expect(re.compile(r"HTTP Basic Auth redirect Status = 200, content_length = (\d)"))
  36. dut1.expect(re.compile(r"HTTP Digest Auth Status = 200, content_length = (\d)"))
  37. dut1.expect(re.compile(r"HTTP Relative path redirect Status = 200, content_length = (\d)"))
  38. dut1.expect(re.compile(r"HTTP Absolute path redirect Status = 200, content_length = (\d)"))
  39. dut1.expect(re.compile(r"HTTPS Status = 200, content_length = (\d)"))
  40. dut1.expect(re.compile(r"HTTP redirect to HTTPS Status = 200, content_length = (\d)"))
  41. dut1.expect(re.compile(r"HTTP chunk encoding Status = 200, content_length = -1"))
  42. dut1.expect(re.compile(r"HTTP Stream reader Status = 200, content_length = (\d)"))
  43. dut1.expect("Finish http example")
  44. if __name__ == '__main__':
  45. test_examples_protocol_esp_http_client()