generic-poky/meta/lib/oeqa/core
Richard Purdie 66f536ad57 oeqa: Clean up logger handling
The logger handling in oeqa was confused at best. This patch:

a) Passes in a logger through various qemu runner pieces
b) Uses that logger consistently in the code
c) Creates a logger for QemuRunner outside the bitbake namespace
   meaning we don't conflict with the tinfoil logging changes

The result of this is more consistency. For runtime tests in testimage,
the logs always contain the debug info, nothing is shwon on the console.
For the oe-selftests, logs are intercepted and only shown if the test
fails.

(From OE-Core rev: ba8babc45141891d0624f9a181a580fa416e87ec)

(From OE-Core rev: 22003f97ff7f53c32999dc466d26c1471ead9b6b)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-03-04 11:11:59 +00:00
..
cases oeqa/core/cases: Add example test cases 2017-01-23 12:05:18 +00:00
decorator oeqa/core/decorator: Add skipIfNotDataVar and skipIfNotInDataVar 2017-01-23 12:05:20 +00:00
target oeqa: Clean up logger handling 2018-03-04 11:11:59 +00:00
tests oeqa/core: Add tests for the OEQA framework 2017-01-23 12:05:18 +00:00
utils meta: remove remaining True option to getVar calls 2017-01-31 14:43:02 +00:00
README oeqa/core: Add README 2017-01-23 12:05:18 +00:00
__init__.py oeqa/core: Add base OEQA framework 2017-01-23 12:05:18 +00:00
case.py oeqa/core: Add base OEQA framework 2017-01-23 12:05:18 +00:00
context.py oeqa/core/context.py: Add validation for run-tests option 2017-01-31 23:27:47 +00:00
exception.py oeqa/core: Add base OEQA framework 2017-01-23 12:05:18 +00:00
loader.py oeqa/core/loader.py: Do not import underscore modules by default 2017-03-28 08:43:12 +01:00
runner.py oeqa/core/runner: Append PID in the test result folder name 2017-04-13 10:54:10 +01:00

README

= OEQA Framework =

== Introduction ==

This is the new OEQA framework the base clases of the framework
are in this module oeqa/core the subsequent components needs to
extend this classes.

A new/unique runner was created called oe-test and is under scripts/
oe-test, this new runner scans over oeqa module searching for test
components that supports OETestContextExecutor implemented in context
module (i.e. oeqa/core/context.py).

For execute an example:

$ source oe-init-build-env
$ oe-test core

For list supported components:

$ oe-test -h

== Create new Test component ==

Usally for add a new Test component the developer needs to extend
OETestContext/OETestContextExecutor in context.py and OETestCase in
case.py.

== How to run the testing of the OEQA framework ==

Run all tests:

$ PATH=$PATH:../../ python3 -m unittest discover -s tests

Run some test:

$ cd tests/
$ ./test_data.py