| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- #!/usr/bin/env python
- #
- # Copyright 2018 Espressif Systems (Shanghai) PTE LTD
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- import imp
- import re
- import os
- import sys
- import string
- import random
- import socket
- # This environment variable is expected on the host machine
- 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)
- # When running on local machine execute the following before running this script
- # > export TEST_FW_PATH='~/esp/esp-idf/tools/tiny-test-fw'
- # > make print_flash_cmd | tail -n 1 > build/download.config
- # > make app bootloader
- import TinyFW
- import IDF
- # Import client module
- expath = os.path.dirname(os.path.realpath(__file__))
- client = imp.load_source("client", expath + "/scripts/adder.py")
- @IDF.idf_example_test(env_tag="Example_WIFI")
- def test_examples_protocol_http_server_persistence(env, extra_data):
- # Acquire DUT
- dut1 = env.get_dut("http_server", "examples/protocols/http_server/persistent_sockets")
- # Get binary file
- binary_file = os.path.join(dut1.app.binary_path, "persistent_sockets.bin")
- bin_size = os.path.getsize(binary_file)
- IDF.log_performance("http_server_bin_size", "{}KB".format(bin_size//1024))
- IDF.check_performance("http_server_bin_size", bin_size//1024)
- # Upload binary and start testing
- dut1.start_app()
- # Parse IP address of STA
- got_ip = dut1.expect(re.compile(r"(?:[\s\S]*)Got IP: (\d+.\d+.\d+.\d+)"), timeout=30)[0]
- got_port = dut1.expect(re.compile(r"(?:[\s\S]*)Starting server on port: (\d+)"))[0]
- print "Got IP : " + got_ip
- print "Got Port : " + got_port
- # Expected Logs
- dut1.expect("Registering URI handlers")
- # Run test script
- conn = client.start_session(got_ip, got_port)
- visitor = 0
- adder = 0
- # Test PUT request and initialize session context
- num = random.randint(0,100)
- client.putreq(conn, "/adder", str(num))
- visitor += 1
- dut1.expect("/adder visitor count = " + str(visitor))
- dut1.expect("/adder PUT handler read " + str(num))
- dut1.expect("PUT allocating new session")
- # Retest PUT request and change session context value
- num = random.randint(0,100)
- print "Adding :", num
- client.putreq(conn, "/adder", str(num))
- visitor += 1
- adder += num
- dut1.expect("/adder visitor count = " + str(visitor))
- dut1.expect("/adder PUT handler read " + str(num))
- try:
- # Re allocation shouldn't happen
- dut1.expect("PUT allocating new session")
- # Not expected
- raise RuntimeError
- except:
- # As expected
- pass
- # Test POST request and session persistence
- random_nums = [random.randint(0,100) for _ in range(100)]
- for num in random_nums:
- print "Adding :", num
- client.postreq(conn, "/adder", str(num))
- visitor += 1
- adder += num
- dut1.expect("/adder visitor count = " + str(visitor))
- dut1.expect("/adder handler read " + str(num))
- # Test GET request and session persistence
- print "Matching final sum :", adder
- if client.getreq(conn, "/adder") != str(adder):
- raise RuntimeError
- visitor += 1
- dut1.expect("/adder visitor count = " + str(visitor))
- dut1.expect("/adder GET handler send " + str(adder))
- print "Ending session"
- # Close connection and check for invocation of context "Free" function
- client.end_session(conn)
- dut1.expect("/adder Free Context function called")
- print "Validating user context data"
- # Start another session to check user context data
- conn2 = client.start_session(got_ip, got_port)
- num = random.randint(0,100)
- client.putreq(conn, "/adder", str(num))
- visitor += 1
- dut1.expect("/adder visitor count = " + str(visitor))
- dut1.expect("/adder PUT handler read " + str(num))
- dut1.expect("PUT allocating new session")
- client.end_session(conn)
- dut1.expect("/adder Free Context function called")
- if __name__ == '__main__':
- test_examples_protocol_http_server_persistence()
|