Ptest: Difference between revisions

From Yocto Project
Jump to navigationJump to search
(Undo revision 36102 by Rebecca Chang Swee Fun (talk))
(Update and improve formatting)
Line 1: Line 1:
=Introduction=
=Introduction=


Ptest (''package test'') is a concept for building, installing and running the test suites that are included in many packages, and producing a consistent output format.
Ptest (''package test'') is a concept for building, installing and running the test suites that are included in many upstream packages, and producing a consistent output format for the results.


=Adding ptest to your build=
=Adding ptest to your build=
Line 7: Line 7:
To add package testing to your build, add the DISTRO_FEATURES and EXTRA_IMAGE_FEATURES variables to your local.conf file, which is found in the Build Directory:
To add package testing to your build, add the DISTRO_FEATURES and EXTRA_IMAGE_FEATURES variables to your local.conf file, which is found in the Build Directory:


    DISTRO_FEATURES_append = " ptest"
DISTRO_FEATURES_append = " ptest"
    * Adding "ptest" to your DISTRO_FEATURES variable causes -ptest packages to be built.
# Adding "ptest" to your DISTRO_FEATURES variable causes -ptest packages to be built.


    EXTRA_IMAGE_FEATURES += "ptest-pkgs"
EXTRA_IMAGE_FEATURES += "ptest-pkgs"
    * Adding "ptest-pkgs" to IMAGE_FEATURES variable causes -ptest packages to be installed in your image.
# Adding "ptest-pkgs" to IMAGE_FEATURES variable causes -ptest packages to be installed in your image.


All ptest files are installed in /usr/lib/<package>/ptest.
All ptest files are installed in /usr/lib/<package>/ptest.
Line 23: Line 23:
The usage for the ptest-runner is as follows:
The usage for the ptest-runner is as follows:


<pre>Usage: ptest-runner [-d directory] [-l list] [-t timeout] [-h] [ptest1 ptest2 ...] </pre>
Usage: ptest-runner [-d directory] [-l list] [-t timeout] [-h] [ptest1 ptest2 ...]


==Executing Ptest-runner==
==Executing Ptest-runner==
Line 29: Line 29:
To execute a full ptest run you can do the following command line anywhere in the target:
To execute a full ptest run you can do the following command line anywhere in the target:


<pre> $ ptest-runner </pre>
$ ptest-runner


Remember to redirect to a file if you want to have a log
Remember to redirect to a file if you want to have a log
Line 37: Line 37:
==What constitutes a ptest?==
==What constitutes a ptest?==


A ptest must at minimum contain two things: run-ptest and the actual test.
A ptest must at minimum contain two things: <code>run-ptest</code> and the actual test.


run-ptest is a minimal shell script that ''starts'' the test suite. Note: It must not ''contain'' the test suite, only start it!
<code>run-ptest</code> is a minimal shell script that ''starts'' the test suite. Note: It must not ''contain'' the test suite, only start it!


The test can be anything, from a simple shell script running a binary and checking its output to an elaborate system of test binaries and data files.
The test can be anything, from a simple shell script running a binary and checking its output to an elaborate system of test binaries and data files.
Line 45: Line 45:
One major point of ptest is to consolidate the output format of all tests into a single common format. The format selected is the automake "simple test" format:
One major point of ptest is to consolidate the output format of all tests into a single common format. The format selected is the automake "simple test" format:


  result: testname
result: testname


Where "result" is one of PASS, FAIL or SKIP and "testname" can be any identifying string. (The same format [http://www.gnu.org/software/automake/manual/automake.html#Simple-Tests used by Automake].)
Where "result" is one of PASS, FAIL or SKIP and "testname" can be any identifying string (the same format [http://www.gnu.org/software/automake/manual/automake.html#Simple-Tests used by Automake].)


==General recipe preparations==
==General recipe preparations==


First, add "ptest" to the "inherit" line in the package recipe.
First, add <code>ptest</code> to the <code>inherit</code> line in the recipe.


If a test adds build-time or run-time dependencies to the package which are not there normally (such as requiring "make" to run the test suite), add those with a -ptest suffix, like this:
If a test adds build-time or run-time dependencies to the package which are not there normally (such as requiring "make" to run the test suite), add those with a -ptest suffix, like this:


  RDEPENDS_${PN}-ptest += "make"
RDEPENDS_${PN}-ptest += "make"


==Building the test suite==
==Building the test suite==
Line 65: Line 65:
Now add a do_compile_ptest function to build the test suite:
Now add a do_compile_ptest function to build the test suite:


  do_compile_ptest() {
do_compile_ptest() {
      oe_runmake buildtest-TESTS
    oe_runmake buildtest-TESTS
  }
}


If the package requires special configuration actions prior to compiling the test code, create a do_configure_ptest function to do that.
If the package requires special configuration actions prior to compiling the test code, create a do_configure_ptest function to do that.
Line 74: Line 74:
In this case, you may have to modify the configure.ac script by adding serial-tests to AM_INIT_AUTOMAKE:
In this case, you may have to modify the configure.ac script by adding serial-tests to AM_INIT_AUTOMAKE:


  AM_INIT_AUTOMAKE([serial-tests])
AM_INIT_AUTOMAKE([serial-tests])


Recursive targets may not work out of the box either, in that case also try adding the following into configure.ac:
Recursive targets may not work out of the box either, in that case also try adding the following into configure.ac:


  AM_EXTRA_RECURSIVE_TARGETS([buildtest-TESTS])
AM_EXTRA_RECURSIVE_TARGETS([buildtest-TESTS])


==Installing the test suite==
==Installing the test suite==
Line 88: Line 88:
==Recipes with ptest Enabled==
==Recipes with ptest Enabled==


The following is a list of recipes already have ptest enabled:
You can use the layer index search function to find out which recipes have ptest enabled by searching for recipes that inherit the <code>ptest</code> class:
*acl
*attr
*apr
*apr-util
*bash
*beecrypt
*bluz5
*busybox
*bzip
*diffstat
*diffutils
*dbus
*ethtool
*e2fsprogs
*flex
*gawk
*gdbm
*glib
*go
*kbd
*kmod
*libevent
*libxml2
*libpcre
*lttng-tools
*lzo
*mdadm
*nettle
*openssh
*openssl
*parted
*perl
*python
*qemu
*quilt
*rt-tests
*sed
*slang
*strace
*systemd
*sed
*tcl
*udev
*util-linux
*valgrind
*zlib


==Recipes in Progress==
http://layers.openembedded.org/layerindex/branch/master/recipes/?q=inherits%3Aptest


The following list is being worked on by various people, to avoid duplication, please add any recipes you might be working on here, once they are merged we can move them to the list above.
Specifically for OE-Core:
 
*dhcp
*dropbear
*gcc-runtime
*gdb
*gettext
*gmp
*guile
*libuser
*tar
*xz


http://layers.openembedded.org/layerindex/branch/master/recipes/?q=inherits%3Aptest+layer%3Aopenembedded-core


Please consider when updating a recipe whether you can also incorporate a ptest package to it as well.
Please consider when updating a recipe whether you can also incorporate a ptest package to it as well.

Revision as of 00:01, 5 April 2018

Introduction

Ptest (package test) is a concept for building, installing and running the test suites that are included in many upstream packages, and producing a consistent output format for the results.

Adding ptest to your build

To add package testing to your build, add the DISTRO_FEATURES and EXTRA_IMAGE_FEATURES variables to your local.conf file, which is found in the Build Directory:

DISTRO_FEATURES_append = " ptest"
# Adding "ptest" to your DISTRO_FEATURES variable causes -ptest packages to be built.
EXTRA_IMAGE_FEATURES += "ptest-pkgs"
# Adding "ptest-pkgs" to IMAGE_FEATURES variable causes -ptest packages to be installed in your image.

All ptest files are installed in /usr/lib/<package>/ptest.

Running ptest

The "ptest-runner" package installs a "ptest-runner" which loops through all installed ptest test suites and runs them in sequence. You may therefore want to add "ptest-runner" to your image.

Ptest-runner Usage

The usage for the ptest-runner is as follows:

Usage: ptest-runner [-d directory] [-l list] [-t timeout] [-h] [ptest1 ptest2 ...]

Executing Ptest-runner

To execute a full ptest run you can do the following command line anywhere in the target:

$ ptest-runner

Remember to redirect to a file if you want to have a log

Implementing ptest in a package recipe

What constitutes a ptest?

A ptest must at minimum contain two things: run-ptest and the actual test.

run-ptest is a minimal shell script that starts the test suite. Note: It must not contain the test suite, only start it!

The test can be anything, from a simple shell script running a binary and checking its output to an elaborate system of test binaries and data files.

One major point of ptest is to consolidate the output format of all tests into a single common format. The format selected is the automake "simple test" format:

result: testname

Where "result" is one of PASS, FAIL or SKIP and "testname" can be any identifying string (the same format used by Automake.)

General recipe preparations

First, add ptest to the inherit line in the recipe.

If a test adds build-time or run-time dependencies to the package which are not there normally (such as requiring "make" to run the test suite), add those with a -ptest suffix, like this:

RDEPENDS_${PN}-ptest += "make"

Building the test suite

Few packages support cross-compiling their test suites, so this is something we typically have to add.

Many automake-based packages compile and run the test suite in a single command: "make check". This doesn't work when cross-compiling, since we need to build on host and run on target. So we need to split that into two targets: One for building the test and one for running it. Our build of automake comes with a patch which does this automatically, so packages using the plain "make check" arrangement from automake get this automatically.

Now add a do_compile_ptest function to build the test suite:

do_compile_ptest() {
    oe_runmake buildtest-TESTS
}

If the package requires special configuration actions prior to compiling the test code, create a do_configure_ptest function to do that.

Note that buildtest-TESTS requires serial-tests, but usually parallel tests are enabled by default. In this case, you may have to modify the configure.ac script by adding serial-tests to AM_INIT_AUTOMAKE:

AM_INIT_AUTOMAKE([serial-tests])

Recursive targets may not work out of the box either, in that case also try adding the following into configure.ac:

AM_EXTRA_RECURSIVE_TARGETS([buildtest-TESTS])

Installing the test suite

The ptest.bbclass will automatically copy the required "run-ptest" file and run "make install-ptest" if there is such a target in the top-level Makefile. For packages where this is enough, you don't need to do anything else.

If you need to do something more than the automatic "make install-ptest", create a do_install_ptest function and put the required actions there. This function will be called after "make install-ptest" has completed.

Recipes with ptest Enabled

You can use the layer index search function to find out which recipes have ptest enabled by searching for recipes that inherit the ptest class:

http://layers.openembedded.org/layerindex/branch/master/recipes/?q=inherits%3Aptest

Specifically for OE-Core:

http://layers.openembedded.org/layerindex/branch/master/recipes/?q=inherits%3Aptest+layer%3Aopenembedded-core

Please consider when updating a recipe whether you can also incorporate a ptest package to it as well.

QA

For every Milestone of the release, QA team should execute pTest on real HW and compare the results with his previous corresponding execution (example 2.3 M2 should be compared with 2.3 M1 results) to track better all the releases ans execution an archive page was created to track all the executions and check what are the previous results available to compare.

  • To check the process used to execute Ptest during QA cycles go to pTest process