Difference between revisions of "Test Standards"

From eLinux.org
Jump to: navigation, search
(Board management)
(Meta-data: fix bullets)
 
(19 intermediate revisions by 3 users not shown)
Line 20: Line 20:
 
[[File:CI-Loop-high-level-arch-v3.jpg|1000px|high level CI loop]]
 
[[File:CI-Loop-high-level-arch-v3.jpg|1000px|high level CI loop]]
  
= Board management =
+
= Board management (G) =
 
This standard has a set of APIs or interfaces for managing the devices under test (DUTs)
 
This standard has a set of APIs or interfaces for managing the devices under test (DUTs)
 
It includes things like:
 
It includes things like:
Line 36: Line 36:
  
 
See [[Board Management Layer Notes]]
 
See [[Board Management Layer Notes]]
 +
 +
As of October 2020, TimeSys and Sony have developed a "board farm REST API" which they are proposing to the
 +
Linux automated testing community.
 +
 +
The API is described at [[Board Farm REST API]]
  
 
== Power Control ==
 
== Power Control ==
Line 50: Line 55:
 
or
 
or
 
* https://docs.google.com/document/d/1-f2VNVlOnaJUSKUUWeYko3wXh7_ertbFD55y_0dTZvI
 
* https://docs.google.com/document/d/1-f2VNVlOnaJUSKUUWeYko3wXh7_ertbFD55y_0dTZvI
 +
 +
== Board IO connections ==
 +
This consists of the ability to control or test features of the board that are related
 +
to busses or other connections to the device under test.  This could include
 +
things like:
 +
* serial ports
 +
* USB buses
 +
* i2c
 +
* CAN
 +
 +
It might also involve any other aspect of board IO, such as audio, video, gpio, leds,
 +
etc.
 +
 +
In general, the connection might be between the board farm controller node and the DUT (interface G)
 +
or between some special hardware and the DUT (interface H, controlled by interface J).
 +
 +
See [[Board IO connection Testing]]
  
 
= Test Definition =
 
= Test Definition =
Line 63: Line 85:
 
See [[Test Definition Project]] for more information about a project to
 
See [[Test Definition Project]] for more information about a project to
 
harmonize test definitions across multiple test systems.
 
harmonize test definitions across multiple test systems.
 +
 +
== Test Definition server ==
 +
The test definition itself is separate from the API or interface to a test definition server.
 +
A test definition server is a place where test definitions are stored.
 +
 +
In 2019, there is not central repository for test definitions that hold open source test definitions for
 +
multiple test frameworks.
 +
 +
But there is some movement towards storing auto-generated test (produced by fuzzers) for the linux kernel
 +
in a centralized location.  See this repository: https://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-arts.git/
 +
Discussion about the creation of this repository is at: https://lwn.net/Articles/799162/
 +
  
 
== Test dependencies ==
 
== Test dependencies ==
Line 78: Line 112:
 
* host/target abstraction
 
* host/target abstraction
 
** kernel installation / provisioning
 
** kernel installation / provisioning
 +
*** See [[Board Provisioning Notes]]
 
** file operations
 
** file operations
 
** console access
 
** console access
Line 85: Line 120:
 
*** ex: 'make test'
 
*** ex: 'make test'
 
*** runtest.sh?
 
*** runtest.sh?
 +
*** communicating lab and board-specific parameters to a test
 +
**** See [[LTP device discovery protocol]]
 
* test phases
 
* test phases
  
 
= Build Artifacts =
 
= Build Artifacts =
 +
* kernel build bundle
 +
** See [[Kernel build bundle]]
 +
* image build bundle
 
* test package format
 
* test package format
 
** meta-data for each test
 
** meta-data for each test
Line 96: Line 136:
 
This is a package intended to be installed on a target (as opposed to the collection of test definition
 
This is a package intended to be installed on a target (as opposed to the collection of test definition
 
information that may be stored elsewhere in the test system)
 
information that may be stored elsewhere in the test system)
 +
 +
== Test server ==
 +
This is a place where tests or test packages can be stored, and downloaded for use in a CI framework.
 +
 +
See [[Test Server Notes]]
  
 
= Run Artifacts =
 
= Run Artifacts =
 +
* test meta-data (hardware info, architecture, toolchain, kernel version, configuration settings, environment variables, test time and date, etc.)
 
* logs
 
* logs
 
* data files (audio, video)
 
* data files (audio, video)
Line 103: Line 149:
 
* snapshots
 
* snapshots
  
 +
== Meta-data ==
 +
This is information (other than results data or logs) about a test invocation (or "run").
 +
 +
This could include information about the hardware being tested, the architecture, toolchain used
 +
for compilation of the software under test or the test program, the kernel version, the configuration
 +
settings for the kernel, the environment variables, etc.
 +
 +
ideas:
 +
* capture /etc/os-release for the device under test
 +
* capture kernel make environment: CROSS_COMPILE, ARCH, KBUILD_OUTPUT
 +
* capture gcc version, as version, ld version
 +
* capture git-describe for kernel
 +
* have sections for each item (kernel build, device under test, software under test, test software)
 +
 +
=== What meta-data do other test and build systems capture ===
 +
See [[Test meta-data survey]] for notes about the schema used for various test results.
  
 
== Results Format ==
 
== Results Format ==
Line 118: Line 180:
 
** Candidate formats:
 
** Candidate formats:
 
*** [https://testanything.org/ TAP (TestAnythingProtocol)]
 
*** [https://testanything.org/ TAP (TestAnythingProtocol)]
 +
*** [[Test Results Format Notes | KTAP]]
 
*** [https://github.com/testing-cabal/subunit SubUnit]
 
*** [https://github.com/testing-cabal/subunit SubUnit]
 
*** JUnit
 
*** JUnit
Line 146: Line 209:
 
https://api.kernelci.org/schema-test-case.html
 
https://api.kernelci.org/schema-test-case.html
  
==== Squad ====
+
==== SQUAD ====
 
The results backend for LKFT is: https://qa-reports.linaro.org/lkft/
 
The results backend for LKFT is: https://qa-reports.linaro.org/lkft/
  
 +
Source code for SQUAD: https://github.com/linaro/squad
  
https://qa-reports.linaro.org/api/
+
Documentation: https://squad.readthedocs.io/en/latest/
  
 
==== BigQuery common results server project ====
 
==== BigQuery common results server project ====
Line 160: Line 224:
  
 
=== Standards ===
 
=== Standards ===
The Linux kernel kselftest uses TAP as the preferred output format.
+
The Linux kernel kselftest and the kunit test framework use TAP as the preferred output format.
 +
 
 +
They are moving from TAP to KTAP.
 +
 
 +
See [[Test_Results_Format_Notes#Standards]] for information about KTAP.
  
 
= Pass Criteria =
 
= Pass Criteria =
Line 182: Line 250:
 
set of testcases are ignored for expediency's sake.
 
set of testcases are ignored for expediency's sake.
  
= Miscelaneous (uncategorized) =
+
= Miscellaneous (uncategorized) =
 
* environment variables used to create an SDK build environment for a board
 
* environment variables used to create an SDK build environment for a board
 
* environment variables used for controlling execution of a test
 
* environment variables used for controlling execution of a test
Line 188: Line 256:
 
* default name of test program in a target package (run-test.sh?)
 
* default name of test program in a target package (run-test.sh?)
 
** this should be part of the test definition
 
** this should be part of the test definition
 +
 +
[[Category:Test]]
 +
[[Category:TAP Specification]]
 +
[[Category:KTAP Specification]]

Latest revision as of 10:20, 9 March 2023

This page will be used to collect information about test standards.

meta-documents

A survey of existing test systems was conducted in the Fall of 2018. The survey and results are here: Test Stack Survey


Here are some things we'd like to standardize in open source automated testing:

Terminology and Framework

Diagram

Below is a diagram for the high level CI loop:

The boxes represent different processes, hardware, or storage locations. Lines between boxes indicate APIs or control flow, and are labeled with letters. The intent of this is to provide a reference model for the test standards.

high level CI loop

Board management (G)

This standard has a set of APIs or interfaces for managing the devices under test (DUTs) It includes things like:

  • board reservation
  • image instantiation (in the case of VMs or emulators)
  • board provisioning (installation of software under test)
  • power control (or, in the case of VMs - VM start)
  • bus control
  • power measurement
  • attribute discovery
  • console monitoring
  • file transfer to/from the board
  • command execution

See Board Management Layer Notes

As of October 2020, TimeSys and Sony have developed a "board farm REST API" which they are proposing to the Linux automated testing community.

The API is described at Board Farm REST API

Power Control

The power control API is a standard for controlling the power state of a board in a board farm (inside an automated testing farm).

See Test Power Control Notes

Standards

pdudaemon was selected as the standard for controlling power to a board in a lab.

The document containing this standard is at:

or

Board IO connections

This consists of the ability to control or test features of the board that are related to busses or other connections to the device under test. This could include things like:

  • serial ports
  • USB buses
  • i2c
  • CAN

It might also involve any other aspect of board IO, such as audio, video, gpio, leds, etc.

In general, the connection might be between the board farm controller node and the DUT (interface G) or between some special hardware and the DUT (interface H, controlled by interface J).

See Board IO connection Testing

Test Definition

The test definition is the set of attributes, code, and data that are used to perform a test. A test definition standard would specify things like the following:

  • fields - the data elements of a test
  • file format (json, xml, etc.) - how a test is expressed and transported
  • meta-data - data describing the test
  • visualization control - information used for visualization of results
  • instructions - executable code to perform the test

See Test Definition Project for more information about a project to harmonize test definitions across multiple test systems.

Test Definition server

The test definition itself is separate from the API or interface to a test definition server. A test definition server is a place where test definitions are stored.

In 2019, there is not central repository for test definitions that hold open source test definitions for multiple test frameworks.

But there is some movement towards storing auto-generated test (produced by fuzzers) for the linux kernel in a centralized location. See this repository: https://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-arts.git/ Discussion about the creation of this repository is at: https://lwn.net/Articles/799162/


Test dependencies

  • how to specify test dependencies
    • ex: assert_define ENV_VAR_NAME
    • ex: kernel_config
  • types of dependencies

See Test_Dependencies

Test Execution API (E)

See Test Execution Notes for more details and miscellaneous notes.

  • test API
  • host/target abstraction
  • test retrieval, build, deployment
  • test phases

Build Artifacts

  • kernel build bundle
  • image build bundle
  • test package format
    • meta-data for each test
    • test results
    • baseline expected results for particular tests on particular platforms

Test package format

This is a package intended to be installed on a target (as opposed to the collection of test definition information that may be stored elsewhere in the test system)

Test server

This is a place where tests or test packages can be stored, and downloaded for use in a CI framework.

See Test Server Notes

Run Artifacts

  • test meta-data (hardware info, architecture, toolchain, kernel version, configuration settings, environment variables, test time and date, etc.)
  • logs
  • data files (audio, video)
  • monitor results (power log, trace log)
  • snapshots

Meta-data

This is information (other than results data or logs) about a test invocation (or "run").

This could include information about the hardware being tested, the architecture, toolchain used for compilation of the software under test or the test program, the kernel version, the configuration settings for the kernel, the environment variables, etc.

ideas:

  • capture /etc/os-release for the device under test
  • capture kernel make environment: CROSS_COMPILE, ARCH, KBUILD_OUTPUT
  • capture gcc version, as version, ld version
  • capture git-describe for kernel
  • have sections for each item (kernel build, device under test, software under test, test software)

What meta-data do other test and build systems capture

See Test meta-data survey for notes about the schema used for various test results.

Results Format

See Test Results Format Notes for details and miscellaneous notes

The results format is the output from the test and creates is part of the interface between the test program and the test execution layer (or test harness).

The main thing that the format communicates is the list of testcases (or metrics, in the case of benchmarks) and the result of the testcase (pass, fail, etc.)

Server-based results storage

yocto project

All our test results for YP builds are added to a git repository:

http://git.yoctoproject.org/cgit.cgi/yocto-testresults/

(they're stored in a json format). the YP project doesn't have good tools to analyse the data yet but are at least storing them.

Fuego

Uses the fserver project (https://github.com/tbird20d/fserver) to store run results in a common location.

Data is stored using Fuego's run.json format (http://fuegotest.org/wiki/run.json)

Fuego can also save results to a kernelci backend and a Squad backend.

KernelCI

Site: https://kerneci.org/

A test has the results from a test: https://api.kernelci.org/schema-test.html A test group is a collection of test cases: See https://api.kernelci.org/schema-test-group.html and https://api.kernelci.org/schema-test-case.html

SQUAD

The results backend for LKFT is: https://qa-reports.linaro.org/lkft/

Source code for SQUAD: https://github.com/linaro/squad

Documentation: https://squad.readthedocs.io/en/latest/

BigQuery common results server project

The client for this is at: https://github.com/spbnick/kcidb

The server for this is at: ??

Standards

The Linux kernel kselftest and the kunit test framework use TAP as the preferred output format.

They are moving from TAP to KTAP.

See Test_Results_Format_Notes#Standards for information about KTAP.

Pass Criteria

The pass criteria is a set of data that indicate to the test framework how to interpret the results from a test. They can indicate the following:

  • what tests can be skipped (this is more part of test execution and control)
  • what test results can be ignored (xfail)
  • min required pass counts, max allowed failures
  • thresholds for measurement results
    • requires testcase id, number and operator

The pass criteria allows separation of things like expected failure from the test code itself, to allow for situations where different sets of results are interpreted as success or failure depending on factors outside the test (for example, kernel version, kernel configuration, available hardware, etc.)

For things like functional unit tests, a single failing result should result in the overall failure of a test suite. However, for system tests or benchmarks, it is often the case that some results must be interpreted in a context-sensitive manner, or some set of testcases are ignored for expediency's sake.

Miscellaneous (uncategorized)

  • environment variables used to create an SDK build environment for a board
  • environment variables used for controlling execution of a test
  • location of kernel configuration (used for dependency testing) KCONFIG_PATH (adopted by LTP)
  • default name of test program in a target package (run-test.sh?)
    • this should be part of the test definition