podman/test/apiv2
Ygal Blum 68dbddd979 Add support for secret exists
Add the command along with the abi and tunnel support
Add e2e tests
Add man page
Add apiv2 test to ensure return codes

Signed-off-by: Ygal Blum <ygal.blum@gmail.com>
2023-04-03 15:33:50 +03:00
..
python fix APIv2 python attach test flake 2023-01-25 14:15:20 +01:00
00-TEMPLATE Tests for API v2 2020-01-17 09:59:22 -07:00
01-basic.at Bump Compat API maximum version to v1.41 2022-05-23 11:31:44 -04:00
10-images.at Fix typos. Improve language. 2023-02-09 21:56:27 +01:00
12-imagesMore.at APIv2 test cleanup, part 2 of 2 2022-08-25 11:07:11 -06:00
15-manifest.at Add support for podman-remote manifest annotate 2022-11-24 14:11:08 +09:00
20-containers.at stats compat API: return "id" lowercase 2023-03-22 14:36:35 +01:00
22-stop.at Add podman rm --depend 2022-01-11 14:33:54 -05:00
23-containersArchive.at APIv2 test cleanup, part 2 of 2 2022-08-25 11:07:11 -06:00
25-containersMore.at export: use io.Writer instead of file 2022-12-20 14:38:41 +01:00
26-containersWait.at APIv2 test cleanup, part 2 of 2 2022-08-25 11:07:11 -06:00
27-containersEvents.at Events for containers in pods now include the pod's ID 2022-09-22 14:18:56 -04:00
30-volumes.at Add until filter to volume ls filters list 2021-07-22 00:01:07 +02:00
35-networks.at compat API: network create return 409 for duplicate 2023-02-21 16:55:27 +01:00
40-pods.at APIv2 test cleanup, part 2 of 2 2022-08-25 11:07:11 -06:00
44-mounts.at System test cleanup 2021-03-15 15:27:06 -06:00
45-system.at Vendor c/image after https://github.com/containers/image/pull/1816 2023-02-08 22:37:38 +01:00
50-secrets.at Add support for secret exists 2023-04-03 15:33:50 +03:00
60-auth.at apiv2 tests: clean up 2022-06-08 19:33:07 -06:00
70-short-names.at Merge remote-tracking branch 'upstream/main' into api_compat_containers 2022-08-29 15:48:02 -04:00
80-kube.at fix tests for "podman kube play" 2022-07-14 15:47:27 +01:00
README.md APIv2 test cleanup, part 2 of 2 2022-08-25 11:07:11 -06: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
test-apiv2 Cleanup: fix problems reported by shell lint 2022-09-15 20:10:34 -06:00

README.md

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