example_test.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import re
  2. import os
  3. import sys
  4. import IDF
  5. # this is a test case write with tiny-test-fw.
  6. # to run test cases outside tiny-test-fw,
  7. # we need to set environment variable `TEST_FW_PATH`,
  8. # then get and insert `TEST_FW_PATH` to sys path before import FW module
  9. test_fw_path = os.getenv("TEST_FW_PATH")
  10. if test_fw_path and test_fw_path not in sys.path:
  11. sys.path.insert(0, test_fw_path)
  12. @IDF.idf_example_test(env_tag="Example_WIFI", ignore=True)
  13. def test_examples_protocol_websocket(env, extra_data):
  14. """
  15. steps: |
  16. 1. join AP
  17. 2. connect to ws://echo.websocket.org
  18. 3. send and receive data
  19. """
  20. dut1 = env.get_dut("websocket", "examples/protocols/websocket")
  21. # check and log bin size
  22. binary_file = os.path.join(dut1.app.binary_path, "websocket-example.bin")
  23. bin_size = os.path.getsize(binary_file)
  24. IDF.log_performance("websocket_bin_size", "{}KB".format(bin_size // 1024))
  25. IDF.check_performance("websocket_bin_size", bin_size // 1024)
  26. # start test
  27. dut1.start_app()
  28. dut1.expect("Waiting for wifi ...")
  29. dut1.expect("Connection established...", timeout=30)
  30. dut1.expect("WEBSOCKET_EVENT_CONNECTED")
  31. for i in range(0, 10):
  32. dut1.expect(re.compile(r"Sending hello (\d)"))
  33. dut1.expect(re.compile(r"Received=hello (\d)"))
  34. dut1.expect("Websocket Stopped")
  35. if __name__ == '__main__':
  36. test_examples_protocol_websocket()