Difference between revisions of "Test Results Format Notes"

From eLinux.org
Jump to: navigation, search
(More notes: add empty sections for KTAP versions 1 and 2)
(KTAP version 1: initial contents)
Line 88: Line 88:
  
 
== KTAP version 1 ==
 
== KTAP version 1 ==
 +
 +
[https://git.kernel.org/?p=/linux/kernel/git/torvalds/linux.git;a=blob_plain;f=Documentation/dev-tools/ktap.rst Documentation/dev-tools/ktap.rst]
 +
(this link is to the current top of tree version,
 +
not the original commit).
 +
 +
The specification can be converted from .rst to various
 +
formats with the kernel make command:
 +
  make htmldocs
 +
  make latexdocs
 +
  make pdfdocs
 +
  make epubdocs
 +
  make xmldocs
 +
 +
Formatted version 1, as of commit 312310928417 ("Linux 5.18-rc1"),
 +
Sun Apr 3 14:08:21 2022:
 +
 +
    [[Media:Ktap-version_1-312310928417.bz2 | tar of ktap-version_1-312310928417.html]]
 +
 +
 +
In June 2020 Tim Bird started an
 +
[https://lore.kernel.org/all/CY4PR13MB1175B804E31E502221BC8163FD830@CY4PR13MB1175.namprd13.prod.outlook.com/ RFC email]
 +
proposing a KTAP specification.  There is much interesting discussion,
 +
but the thread ended without creating a specification.
 +
 +
The discussion continued in August 2021 with another
 +
[https://lore.kernel.org/all/CA+GJov6tdjvY9x12JsJT14qn6c7NViJxqaJk+r-K1YJzPggFDQ@mail.gmail.com/ RFC email]
 +
proposing a KTAP specification based on Tim's previous RFC.  There is discussion
 +
in the thread, but again the thread ended without creating a specification.
 +
 +
David Gow submitted an
 +
[https://lore.kernel.org/all/20211203064840.2871751-1-davidgow@google.com/ RFC email]
 +
with a pared down KTAP specification, based on the previous discussions.  This was
 +
quickly followed by
 +
[https://lore.kernel.org/all/20211207190251.18426-1-davidgow@google.com/ RFC email, v2].
 +
After a short discussion this proposal was added to the Linux kernel source tree as:
 +
[https://git.kernel.org/?p=/linux/kernel/git/torvalds/linux.git;a=blob_plain;f=Documentation/dev-tools/ktap.rst Documentation/dev-tools/ktap.rst]
 +
(this link is to the current top of tree version, not the original commit).
 +
 +
There have been a few additional commits modifying version 1.  These changes have
 +
been for clarity, and have not modified the KTAP output format.
  
 
== KTAP version 2 ==
 
== KTAP version 2 ==

Revision as of 10:45, 4 May 2022

This document has information about various test results formats, and their strengths and weaknesses.

Introduction

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.)

A good starting document that describes different test report formats is:


Existing output formats

Here are some of the existing formats that are used by various test programs and frameworks:

Elements

A test output format needs to communicate the following information:

  • testcase identifiers (names or descriptions or ID numbers)
  • result of the testcase (pass, fail, skip, error, xfail)
  • additional information
    • counts (aggregate data)
    • subtest results
    • diagnostic information - general information that may help diagnose the test operation
    • reason - text explaining why a test passed or failed

testcase identifiers

There should be a way to identify a test, so that when a test is repeated it can be determined if the test result changed or not. The testcase identifier could be a number or a short name, or a description. But it should be the same ever time the test is run (it should be invariant over test invocations).

Many test developers will change the output related to a testcase based on the testcase result. There needs to be a portion of the testcase output that is invariant, and which can be parsed to an identifier that is unique within a single run of the test.

result strings

One aspect of the result format is the result or status code for individual test cases or the test itself.

Result codes

  • test log output format

Metric data

Metric or measurement data is a a string indicating the value for an operation. This is usually used for performance, timing or other number-related data (such as that reported by benchmarks)

The metric data needs to report a number, and most likely a 'units' indicating how the number should be interpreted.

There may also be associated with a metric (or measurement), some additional information indicating parameters associated with the metric used to determine whether the value indicates success or failure of the related testcase.

parser helper information

Some tests use simple line-based output. Here is an idea for how a program or log might provide information about it's output format, allowing the test framework to perform introspection on the logs.

Note that this is a fallback mechanism for when a test has already been written to with some ad-hoc consistency in its output. It is much preferred when writing new tests to use one of the existing test output formats.

More notes

TAP version 14

The effort to create TAP version 14 has stalled.

Version 14 was intended to capture current practices that are already in use. The pull request for version 14, and resulting discussion is at:

 * https://github.com/TestAnything/testanything.github.io/pull/36/files

You can see the full version 14 document in the submitter's repo:

 $ git clone https://github.com/isaacs/testanything.github.io.git
 $ cd testanything.github.io
 $ git checkout tap14
 $ ls tap-version-14-specification.md

KTAP version 1

Documentation/dev-tools/ktap.rst
(this link is to the current top of tree version,
not the original commit).

The specification can be converted from .rst to various 
formats with the kernel make command:
  make htmldocs
  make latexdocs
  make pdfdocs
  make epubdocs
  make xmldocs

Formatted version 1, as of commit 312310928417 ("Linux 5.18-rc1"),
Sun Apr 3 14:08:21 2022:

    tar of ktap-version_1-312310928417.html


In June 2020 Tim Bird started an RFC email proposing a KTAP specification. There is much interesting discussion, but the thread ended without creating a specification.

The discussion continued in August 2021 with another RFC email proposing a KTAP specification based on Tim's previous RFC. There is discussion in the thread, but again the thread ended without creating a specification.

David Gow submitted an RFC email with a pared down KTAP specification, based on the previous discussions. This was quickly followed by RFC email, v2. After a short discussion this proposal was added to the Linux kernel source tree as: Documentation/dev-tools/ktap.rst (this link is to the current top of tree version, not the original commit).

There have been a few additional commits modifying version 1. These changes have been for clarity, and have not modified the KTAP output format.

KTAP version 2

Standards

For the Linux kernel selftests, the preferred output format is TAP (TestAnythingProtocol)