]> git.ipfire.org Git - thirdparty/systemd.git/blame - docs/AUTOPKGTEST.md
Merge pull request #31648 from neighbourhoodie/review-content
[thirdparty/systemd.git] / docs / AUTOPKGTEST.md
CommitLineData
163e2c83
MG
1---
2title: Autopkgtest - Defining tests for Debian packages
3category: Documentation for Developers
4layout: default
5SPDX-License-Identifier: LGPL-2.1-or-later
6---
7
8# Test description
9
3bfe7109 10Full system integration/acceptance testing is done through [autopkgtests](https://salsa.debian.org/ci-team/autopkgtest/-/blob/master/doc/README.package-tests.rst).
163e2c83 11
3bfe7109 12These test the actual installed binary distribution packages.
13They are run in QEMU or containers and thus can do intrusive and destructive things such as installing arbitrary packages, modifying arbitrary files in the system (including grub boot parameters), rebooting, or loading kernel modules.
14
15The tests for systemd are defined in the [Debian package's debian/tests](https://salsa.debian.org/systemd-team/systemd/-/tree/debian/master/debian/tests) directory.
16
17For validating a pull request, the Debian package is built using the unpatched code from that PR (via the [checkout-upstream](https://salsa.debian.org/systemd-team/systemd/-/blob/debian/master/debian/extra/checkout-upstream) script), and the tests run against these built packages.
18
19Note that some tests which check Debian specific behaviour are skipped in "test upstream" mode.
163e2c83
MG
20
21# Infrastructure
22
23systemd's GitHub project has webhooks that trigger autopkgtests on Ubuntu 18.04 LTS on three architectures:
24
25* i386: 32 bit x86, little endian, QEMU (OpenStack cloud instance)
26* amd64: 64 bit x86, little endian, QEMU (OpenStack cloud instance)
27* arm64: 64 bit ARM, little endian, QEMU (OpenStack cloud instance)
28* s390x: 64 bit IBM z/Series, big endian, LXC (this architecture is not yet available in Canonical's OpenStack and thus skips some tests)
29
30Please see the [Ubuntu CI infrastructure](https://wiki.ubuntu.com/ProposedMigration/AutopkgtestInfrastructure) documentation for details about how this works.
31
32# Manually retrying/triggering tests on the infrastructure
33
3bfe7109 34The current tests are fairly solid by now, but rarely they fail on infrastructure/network issues or race conditions.
35
36If you encounter these, please notify @iainlane in the GitHub PR for debugging/fixing those -- transient infrastructure issues are supposed to be detected automatically, and tests auto-retry on those; and flaky tests should of course be fixed properly.
37But sometimes it is useful to trigger tests on a different Ubuntu release too, for example to test a PR on a newer kernel or against current build/binary dependencies (cgroup changes, util-linux, gcc, etc.).
163e2c83
MG
38
39This can be done using the generic [retry-github-test](https://git.launchpad.net/autopkgtest-cloud/tree/charms/focal/autopkgtest-cloud-worker/autopkgtest-cloud/tools/retry-github-test) script from [Ubuntu's autopkgtest infrastructure](https://git.launchpad.net/autopkgtest-cloud): you need the parameterized URL from the [configured webhooks](https://github.com/systemd/systemd/settings/hooks) and the shared secret (Ubuntu's CI needs to restrict access to avoid DoSing and misuse).
40
3bfe7109 41You can use Martin Pitt's [retry-gh-systemd-test](https://piware.de/gitweb/?p=bin.git;a=blob;f=retry-gh-systemd-test) shell wrapper around retry-github-test for that.
42You need to adjust the path where you put retry-github-test and the file with the shared secret, then you can call it like this:
163e2c83
MG
43
44```sh
45$ retry-gh-systemd-test <#PR> <architecture> [release]
46```
47
48where `release` defaults to `bionic` (aka Ubuntu 18.04 LTS). For example:
49
50```sh
51$ retry-gh-systemd-test 1234 amd64
52$ retry-gh-systemd-test 2345 s390x cosmic
53```
54
55Please make sure to not trigger unknown [releases](https://launchpad.net/ubuntu/+series) or architectures as they will cause a pending test on the PR which never gets finished.
56
57# Test the code from the PR locally
58
3bfe7109 59As soon as a test on the infrastructure finishes, the "Details" link in the PR "checks" section will point to the `log.gz` log.
60
61You can download the individual test log, built .debs, and other artifacts that tests leave behind (some dump a complete journal or the udev database on failure) by replacing `/log.gz` with `/artifacts.tar.gz` in that URL.
62
63You can then unpack the tarball and use `sudo dpkg -iO binaries/*.deb` to install the debs from the PR into an Ubuntu VM of the same release/architecture for manually testing a PR.
163e2c83
MG
64
65# Run autopkgtests locally
66
67Preparations:
68
69* Get autopkgtest:
70 ```sh
71 git clone https://salsa.debian.org/ci-team/autopkgtest.git
72 ```
73
74* Install necessary dependencies; on Debian/Ubuntu you can simply run `sudo apt install autopkgtest` (instead of the above cloning), on Fedora do `yum install qemu-kvm dpkg-perl`
75
76* Build a test image based on Ubuntu cloud images for the desired release/arch:
77 ```sh
78 autopkgtest/tools/autopkgtest-buildvm-ubuntu-cloud -r bionic -a amd64
79 ```
80
3bfe7109 81 This will build `autopkgtest-bionic-amd64.img`.
82
83 This is normally being used through the `autopkgtest` command (see below), but you can boot this normally in QEMU (using `-snapshot` is highly recommended) to interactively poke around; this provides a easy throw-away test environment.
163e2c83
MG
84
85
86The most basic mode of operation is to run the tests for the current distro packages:
87
88```sh
89autopkgtest/runner/autopkgtest systemd -- qemu autopkgtest-bionic-amd64.img
90```
91
92But autopkgtest allows lots of [different modes](https://salsa.debian.org/ci-team/autopkgtest/-/blob/master/doc/README.running-tests.rst) and [options](http://manpages.ubuntu.com/autopkgtest), like running a shell on failure (`-s`), running a single test only (`--test-name`), running the tests from a local checkout of the Debian source tree (possibly with modifications to the test) instead of from the distribution source, or running QEMU with more than one CPU (check the [autopkgtest-virt-qemu manpage](http://manpages.ubuntu.com/autopkgtest-virt-qemu).
93
94A common use case is to check out the Debian packaging git for getting/modifying the tests locally:
95
96```sh
97git clone https://salsa.debian.org/systemd-team/systemd.git /tmp/systemd-debian/
98```
99
100and running these against the binaries from a PR (see above), running only the `logind` test, getting a shell on failure, showing the boot output, and running with 2 CPUs:
101
102```sh
103autopkgtest/runner/autopkgtest --test-name logind /tmp/binaries/*.deb /tmp/systemd-debian/ -s -- \
104 qemu --show-boot --cpus 2 /srv/vm/autopkgtest-bionic-amd64.img
105```
106
107# Contact
108
109For troubles with the infrastructure, please notify [iainlane](https://github.com/iainlane) in the affected PR.