17c37b12b0
Merge pull request !752 from 糖宝儿/master |
||
---|---|---|
ability | ||
common | ||
communication | ||
distributeddatamgr | ||
distributedhardware | ||
figures | ||
filemanagement | ||
multimedia | ||
notification | ||
testtools | ||
BUILD.gn | ||
build.sh | ||
bundle.json | ||
LICENSE | ||
OAT.xml | ||
README_ZH.md | ||
README.md | ||
runtest.sh | ||
test_packages.gni |
XTS
- Introduction
- System Types
- Directory Structure
- Constraints
- Usage Guidelines
- Test Case Development Guidelines
Introduction
The X test suite XTS
subsystem contains a set of OpenHarmony certification test suites, including the currently supported distributed compatibility test suite DCTS
.
This subsystem contains the DCTS and tools software package.
- The dcts directory stores the source code and configuration files of DCTS test cases. The DCTS helps device vendors detect the distributed scenario incompatibility as early as possible and ensures that the software is compatible to OpenHarmony during the entire development process.
- The tools software package stores the test case development framework related to dcts.
System Types
OpenHarmony supports the following system types:
-
Mini system
A mini system runs on the devices whose memory is greater than or equal to 128 KiB and that are equipped with MCU processors such as ARM Cortex-M and 32-bit RISC-V. This system provides multiple lightweight network protocols and graphics frameworks, and a wide range of read/write components for the IoT bus. Typical products include connection modules, sensors, and wearables for smart home.
-
Small system
A small system runs on the devices whose memory is greater than or equal to 1 MiB and that are equipped with application processors such as ARM Cortex-A. This system provides higher security capabilities, standard graphics frameworks, and video encoding and decoding capabilities. Typical products include smart home IP cameras, electronic cat eyes, and routers, and event data recorders
EDRs
for smart travel. -
Standard system
A standard system runs on the devices whose memory is greater than or equal to 128 MiB and that are equipped with application processors such as ARM Cortex-A. This system provides a complete application framework supporting the enhanced interaction, 3D GPU, hardware composer, diverse components, and rich animations. This system applies to high-end refrigerator displays.
Directory Structure
/test/xts
├── dcts # Test code
│ └── subsystem # Source code of subsystem test cases for the standard system
│ └── subsystem_lite # Source code of subsystems test cases for mini and small systems
│ └── common # Source code of Test cases rely on shared memory for mini and small systems
│ └── BUILD.gn # Build configuration of test cases for the standard system
│ └── build_lite
│ └── BUILD.gn # Build configuration of test cases for mini and small systems
└── tools # Test tool code
Constraints
Test cases for the mini system must be developed based on C, the small system must be developed based on C++, and the standard system must be developed based on C++ or js.
- Currently the DCTS supports the standard system.
- Screenless devices do not support PIN authentication networking and do not support DCTS test。
Usage Guidelines
Table 1 Test case levels
Table 2 Test case granularities
Table 3 Test types
Test Case Development Guidelines
You should select the appropriate programming language and your target test framework to develop test cases.
Table 4 Test frameworks and test case languages for different systems
C-based Test Case Development and Compilation (for the Mini System)
Developing test cases for the mini system
The HCTest framework is used to support test cases developed with the C language. HCTest is enhanced and adapted based on the open-source test framework Unity.
-
Access the test/xts/dcts repository where the test cases will be stored.
├── dcts │ └──subsystem_lite │ │ └── module_hal │ │ │ └── BUILD.gn │ │ │ └── src │ └──build_lite │ │ └── BUILD.gn
-
Write the test case in the src directory.
1 Import the test framework header file.
#include "hctest.h"
- Use the LITE_TEST_SUIT macro to define names of the subsystem, module, and test suite.
/** * @brief Registers a test suite named IntTestSuite. * @param test Subsystem name * @param example Module name * @param IntTestSuite Test suite name */ LITE_TEST_SUIT(test, example, IntTestSuite);
- Define Setup and TearDown.
Format: Test suite name+Setup, Test suite name+TearDown.
The Setup and TearDown functions must exist, but function bodies can be empty.
- Use the LITE_TEST_CASE macro to write the test case.
Three parameters are involved: test suite name, test case name, and test case properties
including type, granularity, and level
.LITE_TEST_CASE(IntTestSuite, TestCase001, Function | MediumTest | Level1) { // Do something };
- Use the RUN_TEST_SUITE macro to register the test suite.
RUN_TEST_SUITE(IntTestSuite);
-
Create the configuration file
**BUILD.gn**
of the test module.Create a BUILD.gn
example
build file in each test module directory. Specify the name of the built static library and its dependent header file and library in the build file. The format is as follows:import("//test/xts/tools/lite/build/suite_lite.gni") hctest_suite("DctsDemoTest") { suite_name = "dcts" sources = [ "src/test_demo.c", ] include_dirs = [ ] cflags = [ "-Wno-error" ] }
-
Add build options to the BUILD.gn file in the dcts directory.
You need to add the test module to the test/xts/dcts/build_lite/BUILD.gn script in the dcts directory.
lite_component("dcts") { ... if(board_name == "liteos_m") { features += [ ... "//xts/dcts/subsystem_lite/module_hal:DctsDemoTest" ] } }
-
Run build commands.
Test suites are built along with version build. The DCTS is built together with the debug version.
NOTE: The DCTS build middleware is a static library, which will be linked to the image.
C-based Test Case Execution (for the Mini System)
Executing test cases for the mini system
Burn the image into the development board.
Executing the test
- Use a serial port tool to log in to the development board and save information about the serial port.
- Restart the device and view serial port logs.
Analyzing the test result
View the serial port logs, whose format is as follows:
The log for each test suite starts with Start to run test suite: and ends with xx Tests xx Failures xx Ignored.
C++-based Test Case Development and Compilation (for Standard and Small Systems)
Developing test cases for small-system devices For examples of the standard system, go to the **global/i18n\_standard directory**.
The HCPPTest framework is enhanced and adapted based on the open-source framework Googletest.
-
Access the test/xts/dcts repository where the test cases will be stored.
├── dcts │ └──subsystem_lite │ │ └── module_posix │ │ │ └── BUILD.gn │ │ │ └── src │ └──build_lite │ │ └── BUILD.gn
-
Write the test case in the src directory.
- Import the test framework header file.
The following statement includes gtest.h.
#include "gtest/gtest.h"
- Define Setup and TearDown.
using namespace std; using namespace testing::ext; class TestSuite: public testing::Test { protected: // Preset action of the test suite, which is executed before the first test case static void SetUpTestCase(void){ } // Test suite cleanup action, which is executed after the last test case static void TearDownTestCase(void){ } // Preset action of the test case virtual void SetUp() { } // Cleanup action of the test case virtual void TearDown() { } };
- Use the HWTEST or HWTEST_F macro to write the test case.
HWTEST: definition of common test cases, including the test suite name, test case name, and case annotation.
HWTEST_F: definition of SetUp and TearDown test cases, including the test suite name, test case name, and case annotation.
Three parameters are involved: test suite name, test case name, and test case properties
including type, granularity, and level
.HWTEST_F(TestSuite, TestCase_0001, Function | MediumTest | Level1) { // Do something }
-
Create a configuration file
**BUILD.gn**
of the test module.Create a BUILD.gn build file in each test module directory. Specify the name of the built static library and its dependent header file and library in the build file. Each test module is independently built into a .bin executable file, which can be directly pushed to the development board for testing.
Example:
import("//test/xts/tools/lite/build/suite_lite.gni") hcpptest_suite("DctsDemoTest") { suite_name = "dcts" sources = [ "src/TestDemo.cpp" ] include_dirs = [ "src", ... ] deps = [ ... ] cflags = [ "-Wno-error" ] }
-
Add build options to the BUILD.gn file in the dcts directory.
Add the test module to the test/xts/dcts/build_lite/BUILD.gn script in the dcts directory.
lite_component("dcts") { ... else if(board_name == "liteos_a") { features += [ ... "//xts/dcts/subsystem_lite/module_posix:DctsDemoTest" ] } }
-
Run build commands.
Test suites are built along with the version build. The DCTS is built together with the debug version.
NOTE: The DCTS for the small system is independently built to an executable file
.bin
and archived in the suites\dcts directory of the build result.
C++-based Test Case Execution (for Standard and Small Systems)
Executing test cases for the small system
Currently, test cases are shared by the NFS and mounted to the development board for execution.
Setting up the environment
-
Use a network cable or wireless network to connect the development board to your PC.
-
Configure the IP address, subnet mask, and gateway for the development board. Ensure that the development board and the PC are in the same network segment.
-
Install and register the NFS server on the PC and start the NFS service.
-
Run the mount command for the development board to ensure that the development board can access NFS shared files on the PC.
Format: mount NFS server IP address:/NFS shared directory /development board directory nfs
Example:
mount 192.168.1.10:/nfs /nfs nfs
Executing test cases
Execute DctsDemoTest.bin to trigger test case execution, and analyze serial port logs generated after the execution is complete.