spiegel_podman/test/apiv2
renovate[bot] 455367165c
Update dependency openapi-schema-validator to ~=0.9.0
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-27 18:58:39 +00:00
..
python Update dependency openapi-schema-validator to ~=0.9.0 2026-04-27 18:58:39 +00:00
00-TEMPLATE Tests for API v2 2020-01-17 09:59:22 -07:00
01-basic.at API: Add Health field to compat ListContainers and restrict to v1.52+ 2026-04-23 08:39:43 +00:00
10-images.at Extend libpod pull API to show pull progress 2026-03-18 13:44:41 +01:00
12-imagesMore.at Add os, arch, and ismanifest to libpod image list 2024-04-11 08:46:37 -05:00
14-commit.at Accept a config blob alongside the "changes" slice when committing 2023-11-30 09:00:52 -05:00
15-manifest.at Bump Go version to v6 2025-10-23 11:00:15 -04:00
19-stats.at Send container stats over API on a per-interface basis 2024-02-06 17:05:07 -05:00
20-containers.at API: Add Health field to compat ListContainers and restrict to v1.52+ 2026-04-23 08:39:43 +00:00
22-stop.at Add support for passing container stop timeout as -1 (infinite) 2023-08-04 08:36:45 -04:00
23-containersArchive.at Revert "Fix copyUIDGID parameter inversion in Docker compat API" 2025-11-14 12:39:04 +01:00
25-containersMore.at Detect and fix typos using codespell 2024-09-05 13:56:39 -04:00
26-containersWait.at Fix Docker compat /wait hanging on fast-exiting containers 2026-04-20 15:01:42 +02:00
27-containersEvents.at api/compat: switch to moby/moby 2026-03-09 11:09:23 +01:00
28-containersAnnotations.at Add support for annotations 2024-03-22 19:38:22 +00:00
30-volumes.at Add until filter to volume ls filters list 2021-07-22 00:01:07 +02:00
35-networks.at remove isolate option from docker compat API 2026-04-16 15:56:44 +02:00
36-quadlets.at Add Pod to quadlet list 2026-04-17 13:42:16 +02:00
40-pods.at test/apiv2: adapt apiv2 test on cgroups v1 environment 2023-10-24 11:52:03 +09:00
44-mounts.at compat/api: honor VolumeOptions.Subpath for HostConfig.Mounts 2026-02-13 12:47:54 -05:00
45-system.at api/compat: switch to moby/moby 2026-03-09 11:09:23 +01:00
47-subnet-pools.at compat: Add DefaultAddressPools field to GET /info 2025-05-16 13:16:27 +02:00
50-secrets.at fix(api/compat): typo in the remove secret handle 2025-11-21 13:06:52 +01:00
60-auth.at test/apiv2/60-auth.at: use doesnotexists.podman.io 2023-08-24 16:22:02 +02:00
70-short-names.at compat API push: fix error handling 2023-06-21 16:35:55 +02:00
80-kube.at feat(libpod): support kube play tar content-type (#24015) 2024-09-27 15:40:55 +02:00
90-build.at Add local build API for direct filesystem builds on MacOS and Windows (only WSL) 2025-10-09 15:14:48 +02:00
containers.conf compat API: allow enforcing short-names resolution to Docker Hub 2021-11-30 14:22:52 +01:00
containers.host-netns.conf [docker compat] Don't overwrite the NetworkMode if containers.conf overrides netns. 2023-01-11 17:44:09 +00:00
containers.no_hosts.conf API: use no_hosts from containers.conf 2022-04-11 18:41:19 +02:00
README.md APIv2 test cleanup, part 2 of 2 2022-08-25 11:07:11 -06:00
test-apiv2 Bump Compat API version to supported v1.44 2026-01-17 09:56:18 +01:00

API v2 tests

This directory contains tests for the podman version 2 API (HTTP).

Tests themselves are in files of the form 'NN-NAME.at' where NN is a two-digit number, NAME is a descriptive name, and '.at' is just an extension I picked.

Running Tests

The main test runner is test-apiv2. Usage is:

$ sudo ./test-apiv2 [NAME [...]]

...where NAME is one or more optional test names, e.g. 'image' or 'pod' or both. By default, test-apiv2 will invoke all *.at tests.

test-apiv2 connects to localhost only and via TCP. There is no support here for remote hosts or for UNIX sockets. This is a framework for testing the API, not all possible protocols.

test-apiv2 will start the service if it isn't already running.

Writing Tests

The main test function is t. It runs curl against the server, with POST parameters if present, and compares return status and (optionally) string results from the server:

t GET /_ping 200 OK
  ^^^ ^^^^^^ ^^^ ^^
  |   |      |   +--- expected string result
  |   |      +------- expected return code
  |   +-------------- endpoint to access
  +------------------ method (GET, POST, DELETE, HEAD)


t POST libpod/volumes/create name=foo 201 .ID~[0-9a-f]\\{12\\}
       ^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^ ^^^ ^^^^^^^^^^^^^^^^^^^^
       |                     |        |   JSON '.ID': expect 12-char hex
       |                     |        +-- expected code
       |                     +----------- POST params
       +--------------------------------- note the missing slash

Never, ever, ever, seriously EVER exit from a test. Just don't. That skips cleanup, and leaves the system in a broken state.

Notes:

  • If the endpoint has a leading slash (/_ping), t leaves it unchanged. If there's no leading slash, t prepends /v1.40. This is a simple convenience for simplicity of writing tests.

  • When method is POST, the argument(s) after the endpoint may be a series of POST parameters in the form 'key=value', separated by spaces: t POST myentrypoint 200 ! no params t POST myentrypoint id=$id 200 ! just one t POST myentrypoint id=$id filter='{"foo":"bar"}' 200 ! two, with json t POST myentrypoint name=$name badparam='["foo","bar"]' 500 ! etc... t will convert the param list to JSON form for passing to the server. A numeric status code terminates processing of POST parameters. ** As a special case, when one POST argument is a string ending in .tar, .yaml, or .json, t will invoke curl with --data-binary @PATH and set Content-type as appropriate. This is useful for build endpoints. (To override Content-type, simply pass along an extra string argument matching application/*): t POST myentrypoint /mytmpdir/myfile.tar application/foo 400 ** Like above, when using PUT, t does --upload-time instead of --data-binary

  • The final arguments are one or more expected string results. If an argument starts with a dot, t will invoke jq on the output to fetch that field, and will compare it to the right-hand side of the argument. If the separator is = (equals), t will require an exact match; if ~ (tilde), t will use expr to compare.

  • If your test expects curl to time out: APIV2_TEST_EXPECT_TIMEOUT=5 t POST /foo 999