2017-10-09 22:44:55 -04:00
|
|
|
# Copyright 2015-2017 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.
|
2017-11-07 23:27:57 -05:00
|
|
|
import os
|
|
|
|
import re
|
2017-10-09 22:44:55 -04:00
|
|
|
|
2019-11-26 22:21:33 -05:00
|
|
|
from tiny_test_fw import TinyFW, Utility
|
2020-04-16 08:42:33 -04:00
|
|
|
from .IDFApp import IDFApp, Example, LoadableElfTestApp, UT, TestApp # noqa: export all Apps for users
|
2019-12-27 04:58:36 -05:00
|
|
|
from .IDFDUT import IDFDUT, ESP32DUT, ESP32S2DUT, ESP8266DUT, ESP32QEMUDUT # noqa: export DUTs for users
|
2020-04-17 05:51:00 -04:00
|
|
|
from .DebugUtils import OCDProcess, GDBProcess, TelnetProcess, CustomProcess # noqa: export DebugUtils for users
|
2017-10-09 22:44:55 -04:00
|
|
|
|
2020-04-03 04:16:40 -04:00
|
|
|
# pass TARGET_DUT_CLS_DICT to Env.py to avoid circular dependency issue.
|
|
|
|
TARGET_DUT_CLS_DICT = {
|
|
|
|
'ESP32': ESP32DUT,
|
|
|
|
'ESP32S2': ESP32S2DUT,
|
|
|
|
}
|
|
|
|
|
2017-10-09 22:44:55 -04:00
|
|
|
|
2019-04-01 03:16:47 -04:00
|
|
|
def format_case_id(chip, case_name):
|
|
|
|
return "{}.{}".format(chip, case_name)
|
|
|
|
|
|
|
|
|
2020-04-09 01:42:13 -04:00
|
|
|
def idf_example_test(app=Example, target="ESP32", ci_target=None, module="examples", execution_time=1,
|
2019-10-15 08:15:06 -04:00
|
|
|
level="example", erase_nvs=True, config_name=None, **kwargs):
|
2017-10-09 22:44:55 -04:00
|
|
|
"""
|
|
|
|
decorator for testing idf examples (with default values for some keyword args).
|
|
|
|
|
|
|
|
:param app: test application class
|
2020-04-09 01:42:13 -04:00
|
|
|
:param target: target supported, string or list
|
|
|
|
:param ci_target: target auto run in CI, if None than all target will be tested, None, string or list
|
2017-10-09 22:44:55 -04:00
|
|
|
:param module: module, string
|
|
|
|
:param execution_time: execution time in minutes, int
|
2018-06-15 05:45:24 -04:00
|
|
|
:param level: test level, could be used to filter test cases, string
|
2018-07-26 03:07:32 -04:00
|
|
|
:param erase_nvs: if need to erase_nvs in DUT.start_app()
|
2019-10-15 08:15:06 -04:00
|
|
|
:param config_name: if specified, name of the app configuration
|
2017-10-09 22:44:55 -04:00
|
|
|
:param kwargs: other keyword args
|
|
|
|
:return: test method
|
|
|
|
"""
|
2019-04-01 03:16:47 -04:00
|
|
|
|
|
|
|
def test(func):
|
2020-04-09 01:42:13 -04:00
|
|
|
original_method = TinyFW.test_method(app=app, target=target, ci_target=ci_target, module=module,
|
|
|
|
execution_time=execution_time, level=level, dut_dict=TARGET_DUT_CLS_DICT,
|
|
|
|
erase_nvs=erase_nvs, **kwargs)
|
2019-04-01 03:16:47 -04:00
|
|
|
test_func = original_method(func)
|
2020-04-03 04:16:40 -04:00
|
|
|
test_func.case_info["ID"] = format_case_id(target, test_func.case_info["name"])
|
2019-04-01 03:16:47 -04:00
|
|
|
return test_func
|
|
|
|
|
|
|
|
return test
|
2018-07-26 03:07:32 -04:00
|
|
|
|
|
|
|
|
2020-04-09 01:42:13 -04:00
|
|
|
def idf_unit_test(app=UT, target="ESP32", ci_target=None, module="unit-test", execution_time=1,
|
2018-07-26 03:07:32 -04:00
|
|
|
level="unit", erase_nvs=True, **kwargs):
|
|
|
|
"""
|
|
|
|
decorator for testing idf unit tests (with default values for some keyword args).
|
|
|
|
|
|
|
|
:param app: test application class
|
2020-04-09 01:42:13 -04:00
|
|
|
:param target: target supported, string or list
|
|
|
|
:param ci_target: target auto run in CI, if None than all target will be tested, None, string or list
|
2018-07-26 03:07:32 -04:00
|
|
|
:param module: module, string
|
|
|
|
:param execution_time: execution time in minutes, int
|
|
|
|
:param level: test level, could be used to filter test cases, string
|
|
|
|
:param erase_nvs: if need to erase_nvs in DUT.start_app()
|
|
|
|
:param kwargs: other keyword args
|
|
|
|
:return: test method
|
2019-10-20 14:55:11 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
def test(func):
|
2020-04-09 01:42:13 -04:00
|
|
|
original_method = TinyFW.test_method(app=app, target=target, ci_target=ci_target, module=module,
|
|
|
|
execution_time=execution_time, level=level, dut_dict=TARGET_DUT_CLS_DICT,
|
|
|
|
erase_nvs=erase_nvs, **kwargs)
|
2019-10-20 14:55:11 -04:00
|
|
|
test_func = original_method(func)
|
2020-04-03 04:16:40 -04:00
|
|
|
test_func.case_info["ID"] = format_case_id(target, test_func.case_info["name"])
|
2019-10-20 14:55:11 -04:00
|
|
|
return test_func
|
|
|
|
|
|
|
|
return test
|
|
|
|
|
|
|
|
|
2020-04-09 01:42:13 -04:00
|
|
|
def idf_custom_test(app=TestApp, target="ESP32", ci_target=None, module="misc", execution_time=1,
|
2020-01-27 06:12:49 -05:00
|
|
|
level="integration", erase_nvs=True, config_name=None, group="test-apps", **kwargs):
|
2019-10-20 14:55:11 -04:00
|
|
|
"""
|
2020-01-27 06:12:49 -05:00
|
|
|
decorator for idf custom tests (with default values for some keyword args).
|
2019-10-20 14:55:11 -04:00
|
|
|
|
|
|
|
:param app: test application class
|
2020-04-09 01:42:13 -04:00
|
|
|
:param target: target supported, string or list
|
|
|
|
:param ci_target: target auto run in CI, if None than all target will be tested, None, string or list
|
2019-10-20 14:55:11 -04:00
|
|
|
:param module: module, string
|
|
|
|
:param execution_time: execution time in minutes, int
|
|
|
|
:param level: test level, could be used to filter test cases, string
|
|
|
|
:param erase_nvs: if need to erase_nvs in DUT.start_app()
|
2020-01-27 06:12:49 -05:00
|
|
|
:param config_name: if specified, name of the app configuration
|
|
|
|
:param group: identifier to group custom tests (unused for now, defaults to "test-apps")
|
2019-10-20 14:55:11 -04:00
|
|
|
:param kwargs: other keyword args
|
|
|
|
:return: test method
|
2018-07-26 03:07:32 -04:00
|
|
|
"""
|
2019-04-01 03:16:47 -04:00
|
|
|
|
|
|
|
def test(func):
|
2020-04-09 01:42:13 -04:00
|
|
|
original_method = TinyFW.test_method(app=app, target=target, ci_target=ci_target, module=module,
|
|
|
|
execution_time=execution_time, level=level, dut_dict=TARGET_DUT_CLS_DICT,
|
|
|
|
erase_nvs=erase_nvs, **kwargs)
|
2019-04-01 03:16:47 -04:00
|
|
|
test_func = original_method(func)
|
2020-04-03 04:16:40 -04:00
|
|
|
test_func.case_info["ID"] = format_case_id(target, test_func.case_info["name"])
|
2019-04-01 03:16:47 -04:00
|
|
|
return test_func
|
|
|
|
|
|
|
|
return test
|
2017-11-07 23:27:57 -05:00
|
|
|
|
|
|
|
|
|
|
|
def log_performance(item, value):
|
|
|
|
"""
|
|
|
|
do print performance with pre-defined format to console
|
|
|
|
|
|
|
|
:param item: performance item name
|
|
|
|
:param value: performance value
|
|
|
|
"""
|
2018-07-13 04:47:42 -04:00
|
|
|
performance_msg = "[Performance][{}]: {}".format(item, value)
|
|
|
|
Utility.console_log(performance_msg, "orange")
|
|
|
|
# update to junit test report
|
|
|
|
current_junit_case = TinyFW.JunitReport.get_current_test_case()
|
2018-07-13 04:48:43 -04:00
|
|
|
current_junit_case.stdout += performance_msg + "\r\n"
|
2017-11-07 23:27:57 -05:00
|
|
|
|
|
|
|
|
2020-02-28 10:12:11 -05:00
|
|
|
def check_performance(item, value, target):
|
2017-11-07 23:27:57 -05:00
|
|
|
"""
|
|
|
|
check if idf performance meet pass standard
|
|
|
|
|
|
|
|
:param item: performance item name
|
|
|
|
:param value: performance item value
|
2020-02-28 10:12:11 -05:00
|
|
|
:param target: target chip
|
2017-11-07 23:27:57 -05:00
|
|
|
:raise: AssertionError: if check fails
|
|
|
|
"""
|
|
|
|
|
2020-02-28 10:12:11 -05:00
|
|
|
def _find_perf_item(path):
|
|
|
|
with open(path, 'r') as f:
|
2017-11-07 23:27:57 -05:00
|
|
|
data = f.read()
|
2020-02-28 10:12:11 -05:00
|
|
|
match = re.search(r'#define\s+IDF_PERFORMANCE_(MIN|MAX)_{}\s+([\d.]+)'.format(item.upper()), data)
|
|
|
|
return match.group(1), float(match.group(2))
|
|
|
|
|
|
|
|
def _check_perf(op, standard_value):
|
|
|
|
if op == 'MAX':
|
|
|
|
ret = value <= standard_value
|
|
|
|
else:
|
|
|
|
ret = value >= standard_value
|
|
|
|
if not ret:
|
|
|
|
raise AssertionError("[Performance] {} value is {}, doesn't meet pass standard {}"
|
|
|
|
.format(item, value, standard_value))
|
|
|
|
|
|
|
|
path_prefix = os.path.join(IDFApp.get_sdk_path(), 'components', 'idf_test', 'include')
|
|
|
|
performance_files = (os.path.join(path_prefix, target, 'idf_performance_target.h'),
|
|
|
|
os.path.join(path_prefix, 'idf_performance.h'))
|
|
|
|
|
|
|
|
for performance_file in performance_files:
|
|
|
|
try:
|
|
|
|
op, value = _find_perf_item(performance_file)
|
|
|
|
except (IOError, AttributeError):
|
|
|
|
# performance file doesn't exist or match is not found in it
|
|
|
|
continue
|
|
|
|
|
|
|
|
_check_perf(op, value)
|
|
|
|
# if no exception was thrown then the performance is met and no need to continue
|
|
|
|
break
|