On Centos Stream 9 as root:
tmt -vvv -c distro=centos-stream-9 run --all provision --how=localIn order to run it with the SKIP_QA_HARNESS=0 off (default as 1):
tmt -vvv -c distro=centos-stream-9 run -e SKIP_QA_HARNESS=0 --all provision --how=localor
tmt -vvv -c distro=centos-stream-9 run -e SKIP_QA_HARNESS=$(host repo.centos.qa > /dev/null; echo $?) --all provision --how=localTMT plans.
external/: Plans that import remote tmt tests (e.g., from gitlab.com/redhat/centos-stream/rpms)ng.fmf: The plan that runs the new generation of tests intests/that fully leveragetmt, excluding the ones intests/legacylegacy.fmf: The plan that runs thet_functionaltests intests/legacy/
Tests will be organized in one directory per packages and one directory per integration test comprising multiple packages.
The legacy contains the tests imported from t_functional.
Create a folder inside tests/ named after the package you want to test, e.g., httpd. It could also be named after some integration test involving multiple packages (e.g., httpd-php-postgresql).
Organize your tests inside the folder by features you are testing. Feel free to leverage tmt and beakerlib to design them. You can follow the podman test as an example.
tmtdocumentation: https://tmt.readthedocs.iobeakerlibdocumentation: https://beakerlib.readthedocs.io/en/latest/manual.html#
When finished, ensure the tests pass the linting, and pay attention to any warning:
tmt lint
find ./tests/yourtest/ -name '*.sh' | xargs -n 1 shellcheck --severity=warning --shell=bashYou should be able to run your tests by simply cd'ing into them and running the shell scripts. Example:
cd tests/podman
./test.shYou can also run them using the tmt tool. Example of how to run podman with tmt directly on your machine.
tmt -vv -c distro=centos-stream-9 run -a provision --how=local test --name /podmanTest outputs will be in the default temp tmt folder, e.g. /var/tmp/tmt. If you pass -vv to the command as in the example above, you will get the full path to the output of each test. For example:
report
how: display
pass /tests/podman
output.txt: /var/tmp/tmt/run-1/plans/execute/data/guest/default-0/tests/podman-1/output.txt
journal.txt: /var/tmp/tmt/run-1/plans/execute/data/guest/default-0/tests/podman-1/journal.txt
summary: 1 test passedCreate a .fmf file within plans/external/ named after the package, and follow the tmt documentation how to import tmt tests from git (see the discover step Example, and Specs ). You can follow the plans/external/podman.fmf example.
You can enable or disable test based on the distro in the fmf file. Example:
enabled: true # default
adjust: # change "enabled" value when condition is true
when: distro == centos-7
enabled: falseYou can also disable a test all together with the same enabled: false flag on the test fmf file. Example:
summary: tests podman pull
description: It tests podman pull with different options
enabled: false # disabling for now until issue #99999 is resolvedTODO: define the tiers and what tiers a test should go into.
The legacy tests contains variable that are EL distro specific. These variables are defined in the legacy.fmf file. In order to run those tests in another EL distro, you would need to override them. You can do it in two different ways:
A) Passing them in the command line, for example, running the test locally:
tmt -vvv -c distro=centos-stream-9 run \
-e vendor="eldistro" \
-e os_name="ELdistro" \
-e grub_sb_token="ELdistro Secure Boot Signing" \
-e kernel_sb_token="ELdistro Secure Boot Signing" \
-e key_template="ELdistro %s signing key" \
-e firefox_start_page="www.eldistro.org" \
--all provision --how=localB) Defining a new plan importing compose-tests
summary: Compose tests plan
environment:
vendor: "eldistro"
os_name: "ELdistro"
grub_sb_token: "ELdistro Secure Boot Signing"
kernel_sb_token: "ELdistro Secure Boot Signing"
key_template: "ELdistro %s signing key"
firefox_start_page: "www.eldistro.org"
discover:
how: fmf
url: https://gitlab.com/CentOS/Integration/compose-tests.git
execute:
how: tmtIn order to run only a set of tests on the different EL distro, you can use tmt filtering to specify them:
# Run tests that their name start with `/legacy/p_`
tmt -vv -c distro=centos-stream-9 run -a provision --how=local test --name '/legacy/p_.*'