1 Star 0 Fork 272

Teacher_Dong / testfwk_developer_test_stage

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
contribute
Sync branch
Cancel
Notice: Creating folder will generate an empty file .keep, because not support in Git
Loading...
README
Apache-2.0

Developers Test

Overview

This module allows you to develop new test cases for new features, or modify existing test cases for modified features. The developers test framework helps you develop high-quality code.

Directory Structure

developer_test/
├── aw                            # Static libraries of the test framework
│   ├── cxx                      # C++ libraries
│   └── python                   # Python libraries
├── config                        # Test framework configuration
│   ├── build_config.xml         # Test case build configuration
│   ├── filter_config.xml        # Test case filter configuration
│   ├── framework_config.xml     # Test type configuration
│   └── user_config.xml          # User configuration
├── examples                      # Test case examples
│   ├── calculator               # Calculator
│   └── test                     # Test resources
├── src                           # Source code of the test framework
│   ├── main                     # Entry function
│   └── core                     # Core code of the test framework
├── third_party                   # Adaptation code for third-party components on which the test framework relies
│   └── lib                      # Compilation configuration of the static library
├── BUILD.gn                      # Compilation entry of the test framework
├── start.bat                     # Developers test entry for Windows
└── start.sh                      # Developers test entry for Linux

Constraints

The test tool environment must meet the following requirements:

  1. Python version: 3.7.5 or later
  2. Paramiko version: 2.7.1 or later
  3. Setuptools version: 40.8.0 or later
  4. RSA version: 4.0 or later
  5. NFS version: V4 or later (required when device supports connection using the serial port but not the hdc)
  6. pySerial version: 3.3 or later (required when the device supports connection using the serial port but not the hdc)
  7. OS version: Windows 10 or later; Ubuntu 18.04

Installation

The Python environment is required.

  1. Run the following command to install the Linux extension component Readline:

    sudo apt-get install libreadline-dev
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    libreadline-dev is already the newest version (7.0-3).
    0 upgraded, 0 newly installed, 0 to remove and 11 not upgraded.
  2. Run the following command to install the plug-in Setuptools:

    pip3 install setuptools

    If the installation is successful, the following prompts are displayed:

    Requirement already satisfied: setuptools in d:\programs\python37\lib\site-packages (41.2.0)
  3. Run the following command to install the plug-in Paramiko:

    pip3 install paramiko

    If the installation is successful, the following prompts are displayed:

    Installing collected packages: pycparser, cffi, pynacl, bcrypt, cryptography, paramiko
    Successfully installed bcrypt-3.2.0 cffi-1.14.4 cryptography-3.3.1 paramiko-2.7.2 pycparser-2.20 pynacl-1.4.0
  4. Run the following command to install the Python plug-in RSA:

    pip3 install rsa

    If the installation is successful, the following prompts are displayed:

    Installing collected packages: pyasn1, rsa
    Successfully installed pyasn1-0.4.8 rsa-4.7
  5. Run the following command to install the serial port plug-in pySerial for Python on the local PC:

    pip3 install pyserial

    If the installation is successful, the following prompts are displayed:

    Requirement already satisfied: pyserial in d:\programs\python37\lib\site-packages\pyserial-3.4-py3.7.egg (3.4)
  6. If the device supports test result output only using the serial port, install the NFS server.

    For example, to install haneWIN NFS Server 1.2.50 for Windows, download the installation package from https://www.hanewin.net/nfs-e.htm.

    For Linux, run the following command:

    sudo apt install nfs-kernel-server

    If the installation is successful, the following prompts are displayed:

    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    nfs-kernel-server is already the newest version (1:1.3.4-2.1ubuntu5.3).
    0 upgraded, 0 newly installed, 0 to remove and 11 not upgraded.

Using Test Framework

  • (Optional) Install the XDevice module.

    1. Go to the XDevice installation directory test/xdevice.

    2. Open the console and run the following command:

      python setup.py install

      If the installation is successful, the following prompts are displayed:

      Installed d:\programs\python37\lib\site-packages\xdevice-0.0.0-py3.7.egg
      Processing dependencies for xdevice==0.0.0
      Finished processing dependencies for xdevice==0.0.0
  • Configure the developers test module in the configuration file developer_test/config/user_config.xml.

    1. Modify basic configuration parameters of the test framework.

      [build] # Configure build parameters of the test case.

      <build>
          <example>false</example>
          <version>false</version>
          <testcase>true</testcase>
          ...
      </build>

      NOTE: example: whether to build the test case example. The default value is false. version: whether to build the test version. The default value is false. testcase: whether to build the test case. The default value is true.

    2. For devices that support the Harmony device connector (hdc), modify the configuration file as follows:

      [device] # Configure the device information with the "usb-hdc" attribute, including the test device IP address and the matched hdc port.

      <device type="usb-hdc">
          <ip>192.168.1.1</ip>
          <port>9111</port>
          <sn></sn>
      </device>
    3. For devices that only support the serial port connection, modify the configuration file as follows:

      [device] # Configure the serial port information with the "ipcamera" attribute, including the COM port and baud rate.

      <device type="com" label="ipcamera">
          <serial>
              <com>COM1</com>
              <type>cmd</type>
              <baud_rate>115200</baud_rate>
              <data_bits>8</data_bits>
              <stop_bits>1</stop_bits>
              <timeout>1</timeout>
          </serial>
      </device>
  • (Optional) Modify the configuration file config/user_config.xml of the developer_test module. If a test case has been compiled, specify the compilation output directory of the test case. In this case, the test platform will not recompile the test case.

    1. Specify the output directory of the test case, that is, the compilation output directory between the <test_cases> tags.

      <test_cases>
          <dir>/home/opencode/out/release/tests</dir>
      </test_cases>
    2. For devices that only support serial port connection, specify the NFS directory on the PC (host_dir) and the corresponding directory on the board (board_dir) between the <NFS> tags. For example:

      <NFS>
          <host_dir>D:\nfs</host_dir>
          <board_dir>user</board_dir>
      </NFS>
  • Prepare the test environment. (Check that the test environment is ready if the tested device only supports serial port connection.)

    • The system image and file system have been burnt into a development board and are running properly on the development board. For example, in system mode, device prompt OHOS# is displayed during shell login, indicating that the system is running properly.
    • The development host has been connected to the serial port of the development board and the network port.
    • The IP addresses of the development host and development board are in the same network segment and can ping each other.
    • An empty directory is created on the development host for mounting test cases through the NFS, and the NFS service is started properly.
  • Run test suites.

    • Start the test framework and go to the test/developer_test directory.

      1. Run the following command to start the test framework in Windows.

        start.bat
      2. Run the following command to start the test framework in Linux.

        ./strat.sh
    • Select a device form.

      Configure device forms based on the actual development board, for example, developer_test/config/framework_config.xml.

    • Run test commands.

      1. To query the subsystems, modules, product forms, and test types supported by test cases, run the show commands.

        usage: 
            show productlist      Querying Supported Product Forms
            show typelist         Querying the Supported Test Type
            show subsystemlist    Querying Supported Subsystems
            show modulelist       Querying Supported Modules
      2. Run the execution command, where -t is mandatory, and -ss and -tm are optional.

        run -t ut -ss test -tm example
      3. Specify the parameters that can be used to execute the test suite corresponding to a specific feature or module.

        usage: run [-h] [-p PRODUCTFORM] [-t [TESTTYPE [TESTTYPE ...]]]
            [-ss SUBSYSTEM] [-tm TESTMODULE] [-ts TESTSUIT]
            [-tc TESTCASE] [-tl TESTLEVEL] 
        
        optional arguments:
            -h, --help            show this help message and exit
            -p PRODUCTFORM, --productform PRODUCTFORM    Specified product form
            -t [TESTTYPE [TESTTYPE ...]], --testtype [TESTTYPE [TESTTYPE ...]]
                Specify test type(UT,MST,ST,PERF,ALL)
            -ss SUBSYSTEM, --subsystem SUBSYSTEM    Specify test subsystem
            -tm TESTMODULE, --testmodule TESTMODULE    Specified test module
            -ts TESTSUIT, --testsuite TESTSUIT    Specify test suite
            -tc TESTCASE, --testcase TESTCASE    Specify test case
            -tl TESTLEVEL, --testlevel TESTLEVEL    Specify test level
  • See the test framework help if needed.

    • Run the following command to query commands supported by the test platform:

      help
  • Exit the self-test platform.

    • Run the following command to exit the test platform:

      quit

Test Result and Log

  • Test logs and test reports are generated after you execute the test commands.

  • Test result

    • Reports are displayed on the console. The root path of the test result is as follows:

      reports/xxxx-xx-xx-xx-xx-xx
    • Test case formatting result

      result/
    • Test case log

      log/plan_log_xxxx-xx-xx-xx-xx-xx.log
    • Report summary

      summary_report.html
    • Test report details

      details_report.html
  • Test framework log

    reports/platform_log_xxxx-xx-xx-xx-xx-xx.log
  • Latest test reports

    reports/latest

Repositories Involved

testing subsystem

test_developer_test

test_xdevice

Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS

About

Development self-test framework | 开发者自测试框架 expand collapse
Apache-2.0
Cancel

Releases

No release

Contributors

All

Activities

Load More
can not load any more
1
https://gitee.com/teacher-dong/testfwk_developer_test_stage.git
git@gitee.com:teacher-dong/testfwk_developer_test_stage.git
teacher-dong
testfwk_developer_test_stage
testfwk_developer_test_stage
master

Search