2021-01-12 12:47:32 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2022-01-05 01:56:39 -05:00
|
|
|
# SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
2021-09-23 02:31:47 -04:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2021-01-12 12:47:32 -05:00
|
|
|
|
|
|
|
import http.client
|
|
|
|
import os
|
|
|
|
|
|
|
|
import tiny_test_fw
|
|
|
|
import ttfw_idf
|
|
|
|
from tiny_test_fw import Utility
|
|
|
|
|
|
|
|
HTTP_OK = 200
|
2022-01-05 01:56:39 -05:00
|
|
|
TEST_SERVER = 'http2.github.io'
|
2021-01-12 12:47:32 -05:00
|
|
|
|
|
|
|
|
|
|
|
def is_test_server_available(): # type: () -> bool
|
|
|
|
# 443 - default https port
|
2021-11-04 11:29:07 -04:00
|
|
|
try:
|
|
|
|
conn = http.client.HTTPSConnection(TEST_SERVER, 443, timeout=10)
|
|
|
|
conn.request('GET', '/')
|
|
|
|
resp = conn.getresponse()
|
|
|
|
return True if resp.status == HTTP_OK else False
|
|
|
|
except Exception as msg:
|
|
|
|
Utility.console_log('Exception occurred when connecting to {}: {}'.format(TEST_SERVER, msg))
|
|
|
|
return False
|
|
|
|
finally:
|
|
|
|
conn.close()
|
2021-01-12 12:47:32 -05:00
|
|
|
|
|
|
|
|
2021-09-29 05:07:01 -04:00
|
|
|
@ttfw_idf.idf_example_test(env_tag='Example_EthKitV1')
|
2021-01-12 12:47:32 -05:00
|
|
|
def test_examples_protocol_http2_request(env, extra_data): # type: (tiny_test_fw.Env.Env, None) -> None # pylint: disable=unused-argument
|
|
|
|
"""
|
|
|
|
steps: |
|
|
|
|
1. join AP
|
2022-01-05 01:56:39 -05:00
|
|
|
2. connect to http2.github.io
|
2021-01-12 12:47:32 -05:00
|
|
|
3. send http2 request
|
|
|
|
4. send http2 put response
|
|
|
|
"""
|
|
|
|
dut1 = env.get_dut('http2_request', 'examples/protocols/http2_request', dut_class=ttfw_idf.ESP32DUT)
|
|
|
|
# check and log bin size
|
2021-07-05 02:33:56 -04:00
|
|
|
binary_file = os.path.join(dut1.app.binary_path, 'http2_request.bin')
|
2021-01-12 12:47:32 -05:00
|
|
|
bin_size = os.path.getsize(binary_file)
|
|
|
|
ttfw_idf.log_performance('http2_request_bin_size', '{}KB'.format(bin_size // 1024))
|
|
|
|
# start the test
|
|
|
|
# check if test server is avilable
|
|
|
|
test_server_available = is_test_server_available()
|
2022-01-05 01:56:39 -05:00
|
|
|
# Skip the test if the server test server (http2.github.io) is not available at the moment.
|
2021-01-12 12:47:32 -05:00
|
|
|
if test_server_available:
|
2022-01-05 01:56:39 -05:00
|
|
|
Utility.console_log('test server \"{}\" is available'.format(TEST_SERVER))
|
2021-01-12 12:47:32 -05:00
|
|
|
dut1.start_app()
|
|
|
|
# check for connection
|
|
|
|
dut1.expect('Connection done', timeout=30)
|
|
|
|
# check for get response
|
|
|
|
dut1.expect('[get-response] Frame fully received')
|
|
|
|
else:
|
|
|
|
Utility.console_log('test server \"{0}\" is not available at the moment.\nSkipping the test with status = success.'.format(TEST_SERVER))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
test_examples_protocol_http2_request() # pylint: disable=no-value-for-parameter
|