example_test.py 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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_https_request(env, extra_data):
  15. """
  16. steps: |
  17. 1. join AP
  18. 2. connect to www.howsmyssl.com:443
  19. 3. send http request
  20. """
  21. dut1 = env.get_dut("https_request", "examples/protocols/https_request")
  22. dut1.start_app()
  23. dut1.expect("Connecting to www.howsmyssl.com:443", timeout=30)
  24. dut1.expect("Performing the SSL/TLS handshake")
  25. dut1.expect("Certificate verified.", timeout=15)
  26. dut1.expect("Cipher suite is TLS-ECDHE-RSA-WITH-AES-128-GCM-SHA256", timeout=20)
  27. dut1.expect(re.compile(r"Completed (\d) requests"))
  28. if __name__ == '__main__':
  29. test_examples_protocol_https_request()