Command Line Interface
Testing Farm provides a CLI tool for easy interaction with Testing Farm.
Use cases
Currently, the CLI targets these main use cases:
-
submitting a test request
-
watch a request for completion
-
get a request completion report
-
easy integration with CI systems via small container image
quay.io/testing-farm/cli
-
reservation of a test environment
Installation
See the CLI installation documentation.
First steps
For the CLI to work, make sure to export the TESTING_FARM_API_TOKEN
in your environment.
If you do not yet have a token, see onboarding.
Testing of the project is currently done via:
export TESTING_FARM_API_TOKEN=<your-token>
The token is specific only to a single ranch. If you want to use more ranches, you will need a token for each of them. |
Testing Farm provides a sample tmt plan to try out the CLI tool.
This plan runs a single test which by default prints out cat /etc/os-release
.
-
🌍 Public Ranch - run sanity test against Fedora Rawhide
testing-farm request --compose Fedora-Rawhide --git-url https://gitlab.com/testing-farm/tests --plan /testing-farm/sanity
-
🎩 Red Hat Ranch
testing-farm request --compose RHEL-9.2.0-Nightly --git-url https://gitlab.com/testing-farm/tests --plan /testing-farm/sanity
If your test is expected to take a long time, you should set the --timeout
parameter so that your test is not terminated prematurely.
The default is currently 12 hours.
Try your tmt
test locally first to get an idea of how long it will take - perhaps using time
.
The timeout is specified in minutes. For example:
testing-farm request --compose RHEL-9.2.0-Nightly --git-url https://gitlab.com/myproject --plan /tests/bigtest --timeout 360
Usage
Test Environment Reservation
The testing-farm reserve
command allows you to reserve a system in the Testing Farm environment for testing purposes.
This is particularly useful for debugging unexpected test failures.
The reservation now works in the |
To reserve a system, use the following command:
testing-farm reserve --compose Fedora-Rawhide
By default, the CLI sets the reservation duration to 30 minutes.
You can change this duration using the --duration MINUTES
option.
For example:
testing-farm reserve --compose Fedora-Rawhide --duration 60
Or by using the extend-reservation MINUTES
command within the machine:
extend-reservation 60
The maximum reservation time is 12 hours (720 minutes) |
SSH is used for accessing the reserved machine.
The CLI will, by default, copy all public keys that match the pattern ~/.ssh/*.pub
to the machine.
You can specify a different public key using the --ssh-public-key PATH
option.
Globbing can be used to specify multiple keys.
For instance:
testing-farm reserve --compose Fedora-Rawhide --ssh-public-key /path/to/my/keys/*.pub
For the container based installation, the option is unsupported. |
Similar to the testing-farm request
command, the reserve
command provides various options to customize the testing environment.
You can view all available options using the --help
option:
testing-farm reserve --help
See Test Environment and Hardware Requirements pages to find more information.
If you need to return the machine early, execute the following command within the machine:
return2testingfarm
Request Cancellation
In some cases you want to prematurely cancel your request.
Use the cancel
command and provide the request ID or a string containing it.
$ testing-farm cancel 9baab88b-aca6-4652-ad93-8d954e109a25
$ testing-farm cancel https://api.testing-farm.io/v0.1/requests/a0f18d55-2dd5-466d-b2b8-6bd4a60ca12e
$ testing-farm cancel https://artifacts.dev.testing-farm.io/a0f18d55-2dd5-466d-b2b8-6bd4a60ca12e
Multiple key=value
pairs per single option
As of CLI v0.0.21
, released together with Testing Farm 2024-10.1, options which accept key=value
pairs, such as:
-
--kickstart
, -
--context
(-c
), -
--environment
(-e
), -
--secret
(-s
), -
--tmt-environment
(-T
) -
--tag
(-t
)
now support setting multiple key=value
pairs per single option. Example:
testing-farm
CLI$ testing-farm request -e "foo=foo bar=bar"
...
{
"variables": {
"foo": "foo",
"bar": "bar"
}
}
...
Breaking change for strings with whitespaces
This change affected how strings containing whitespaces should be quoted.
v0.0.20
Wrapping the whole key=value
pair in quotes if either key
or value
contained white spaces.
$ testing-farm request --kickstart "foo=script with whitespace"
v0.0.20
Wrapping the whole key=value
pair in quotes and also nested quotes pair of quotes for the key
or value
that contains whitespaces.
$ testing-farm request --kickstart "foo='script with whitespace'"
The commands above result in this data being sent to the API:
...
{
"kickstart": {
"foo": "script with whitespace"
}
}
...