From 4cb52e0a3dd79ce8cea262aa441a6ca1c3a8b37f Mon Sep 17 00:00:00 2001 From: He Yin Ling Date: Tue, 10 Oct 2017 10:48:57 +0800 Subject: [PATCH] test: add test for https_request --- .../protocols/https_request/example_test.py | 35 +++++++++++++++++++ .../https_request/main/Kconfig.projbuild | 4 +-- 2 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 examples/protocols/https_request/example_test.py diff --git a/examples/protocols/https_request/example_test.py b/examples/protocols/https_request/example_test.py new file mode 100644 index 0000000000..b58bdae852 --- /dev/null +++ b/examples/protocols/https_request/example_test.py @@ -0,0 +1,35 @@ +import re +import os +import sys + +# this is a test case write with tiny-test-fw. +# to run test cases outside tiny-test-fw, +# we need to set environment variable `TEST_FW_PATH`, +# then get and insert `TEST_FW_PATH` to sys path before import FW module +test_fw_path = os.getenv("TEST_FW_PATH") +if test_fw_path and test_fw_path not in sys.path: + sys.path.insert(0, test_fw_path) + +import TinyFW +import IDF + + +@IDF.idf_example_test(env_tag="Example_WIFI") +def test_examples_protocol_https_request(env, extra_data): + """ + steps: | + 1. join AP + 2. connect to www.howsmyssl.com:443 + 3. send http request + """ + dut1 = env.get_dut("https_request", "examples/protocols/https_request") + dut1.start_app() + dut1.expect("Connecting to www.howsmyssl.com:443", timeout=30) + dut1.expect("Performing the SSL/TLS handshake") + dut1.expect("Certificate verified.", timeout=15) + dut1.expect("Cipher suite is TLS-ECDHE-RSA-WITH-AES-128-GCM-SHA256", timeout=20) + dut1.expect(re.compile(r"Completed (\d) requests")) + + +if __name__ == '__main__': + test_examples_protocol_https_request() diff --git a/examples/protocols/https_request/main/Kconfig.projbuild b/examples/protocols/https_request/main/Kconfig.projbuild index c5d5523a9f..1c7241da32 100644 --- a/examples/protocols/https_request/main/Kconfig.projbuild +++ b/examples/protocols/https_request/main/Kconfig.projbuild @@ -8,10 +8,10 @@ config WIFI_SSID config WIFI_PASSWORD string "WiFi Password" - default "myssid" + default "mypassword" help WiFi password (WPA or WPA2) for the example to use. Can be left blank if the network has no security set. -endmenu \ No newline at end of file +endmenu