|
|
4 vuotta sitten | |
|---|---|---|
| .. | ||
| components | 6 vuotta sitten | |
| configs | 6 vuotta sitten | |
| main | 7 vuotta sitten | |
| tools | 4 vuotta sitten | |
| CMakeLists.txt | 7 vuotta sitten | |
| Makefile | 7 vuotta sitten | |
| README.md | 7 vuotta sitten | |
| idf_ext.py | 5 vuotta sitten | |
| partition_table_unit_test_app.csv | 6 vuotta sitten | |
| partition_table_unit_test_two_ota.csv | 7 vuotta sitten | |
| sdkconfig.defaults | 4 vuotta sitten | |
| unit_test.py | 4 vuotta sitten | |
ESP-IDF unit tests are run using Unit Test App. The app can be built with the unit tests for a specific component. Unit tests are in test subdirectories of respective components.
tools/unit-test-app directorymake menuconfig to configure the Unit Test App.make TEST_COMPONENTS= with TEST_COMPONENTS set to names of the components to be included in the test app. Or make TESTS_ALL=1 to build the test app with all the tests for components having test subdirectory.make flash.make ut-clean-config_name and make ut-build-config_name (where config_name is the file name under unit-test-app/configs folder) to build with preset configs. For example, you can use make ut-build-default TESTS_ALL=1 to build with config file unit-test-app/configs/default. Built binary for this config will be copied to unit-test-app/output/config_name folder.tools/unit-test-app directoryidf.py menuconfig to configure the Unit Test App.idf.py build -T <component> <component> ... with component set to names of the components to be included in the test app. Or idf.py build -T all to build the test app with all the tests for components having test subdirectory.idf.py flash -p PORT.idf.py ut-clean-config_name and idf.py ut-build-config_name (where config_name is the file name under unit-test-app/configs folder) to build with preset configs. For example, you can use idf.py ut-build-default -T all to build with config file unit-test-app/configs/default. Built binary for this config will be copied to unit-test-app/output/config_name folder.The unit test partition table assumes a 4MB flash size. When testing TESTS_ALL=1 (Make) or -T all (CMake), this additional factory app partition size is required.
If building unit tests to run on a smaller flash size, edit partition_table_unit_tests_app.csv and use TEST_COMPONENTS= (Make) or -T <component> <component> ... (CMake) instead of TESTS_ALL or -T all if tests don't fit in a smaller factory app partition (exact size will depend on configured options).
The unit test loader will prompt by showing a menu of available tests to run:
* to run all tests.[tagname] to run tests with "tag"![tagname] to run tests without "tag" (![ignore] is very useful as it runs all CI-enabled tests.)"test name here" to run test with given nameUnit test uses 3 stages in CI: build, assign_test, unit_test.
build_esp_idf_tests job will build all UT configs and parse test cases form built elf files. Built binary (tools/unit-test-app/output) and parsed cases (components/idf_test/unit_test/TestCaseAll.yml) will be saved as artifacts.
When we add new test case, it will construct a structure to save case data during build. We'll parse the test case from this structure. The description (defined in test case: TEST_CASE("name", "description")) is used to extend test case definition. The format of test description is a list of tags:
TagDefinition.yml defines how we should parse the description. In TagDefinition.yml, we declare the tags we are interested in, their default value and omitted value. Parser will parse the properities of test cases according to this file, and add them as test case attributes.
We will build unit-test-app with different sdkconfigs. Some config items requires specific board to run. For example, if CONFIG_SPIRAM_SUPPORT is enabled, then unit test app must run on board supports PSRAM. ConfigDependency.yml is used to define the mapping between sdkconfig items and tags. The tags will be saved as case attributes, used to select jobs and runners. In the previous example, psram tag is generated, will only select jobs and runners also contains psram tag.
assign_test job will try to assign all cases to test jobs defined in .gitlab-ci.yml, according to test environment and tags. For each job, one config file with same name of test job will be generated in components/idf_test/unit_test/CIConfigs/(this folder will be passed to test jobs as artifacts). These config files will tell test jobs which cases it need to run, and pass some extra configs (like if the case will reset) of test case to runner.
Please check related document in tiny-test-fw for details.
All jobs in unit_test stage will run job according to unit test configs. Then unit test jobs will use tiny-test-fw runner to run the test cases. The test logs will be saved as artifacts.
Unit test jobs will do reset before running each case (because some cases do not cleanup when failed). This makes test cases independent with each other during execution.
Gitlab CI do not support create jobs at runtime. We must maunally add all jobs to CI config file. To make test running in parallel, we limit the number of cases running on each job. When add new unit test cases, it could exceed the limitation that current unit test jobs support. In this case, assign test job will raise error, remind you to add jobs to .gitlab-ci.yml.
Too many test cases vs jobs to run. Please add the following jobs to .gitlab-ci.yml with specific tags:
* Add job with: UT_T1_1, ESP32_IDF, psram
* Add job with: UT_T1_1, ESP32_IDF
The above is an example of error message in assign test job. In this case, please add the following jobs in .gitlab-ci.yml:
UT_001_25:
<<: *unit_test_template
tags:
- ESP32_IDF
- UT_T1_1
UT_004_09:
<<: *unit_test_template
tags:
- ESP32_IDF
- UT_T1_1
- psram
The naming rule of jobs are UT + job type index + job index. Each combination of tags is a different job type.
First you can check the logs. It's saved as unit test job artifacts. You can download from the test job page.
If you want to reproduce locally, you need to:
build_esp_idf_tests. The built binary is in tools/unit-test-app/output folder.
Running unit test for config: config_name. Then flash the binary of this config to your board.tools/unit-test-app/unit_test.py to run the test cases:
TEST_FW_PATH and IDF_PATHunit_test.py (see examples below)tools/tiny-test-fw/Runner.py to run test cases (it will be the same as what Runner do). Please use python Runner.py -c $CONFIG_FILE $IDF_PATH/tools/unit-test-app command, where CONFIG_FILE is a YAML file with same name with CI job in components/idf_test/unit_test/CIConfigs (artifacts, need to be download from assign_test job).unit_test.pyA couple of examples follow for running unit tests on local machine.
# run a simple unit test
./unit_test.py "UART can do select()"
# repeat the tests two times
./unit_test.py -r 2 "UART can do select()"
# use custom environment config file
./unit_test.py -e /tmp/EnvConfigTemplate.yml "UART can do select()"
# use custom application binary
./unit_test.py -b /tmp/app.bin "UART can do select()"
# run a list of unit tests
./unit_test.py "UART can do select()" "concurent selects work"
# add some options for unit tests
./unit_test.py "UART can do select()",timeout:10 "concurent selects work",config:release,env_tag:UT_T2_1
# run a multi stage test (type of test and child case numbers are autodetected)
./unit_test.py "check a time after wakeup from deep sleep"
# run a list of different unit tests (one simple and one multi stage test)
./unit_test.py "concurent selects work" "NOINIT attributes behavior"