diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-27 07:14:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-27 07:14:16 -0800 |
commit | 094baa5366a3f41df2511ff2d749a773f2eed03f (patch) | |
tree | a24c88ec5804eb42aa9e015a4ab2351cf1584040 /test/apiv2/20-containers.at | |
parent | 7794fafdadd1c416164d5bca0964ae13b1bb3cc2 (diff) | |
parent | c2f50499c9e344a4bff56719fe66fa846ae3064d (diff) | |
download | podman-094baa5366a3f41df2511ff2d749a773f2eed03f.tar.gz podman-094baa5366a3f41df2511ff2d749a773f2eed03f.tar.bz2 podman-094baa5366a3f41df2511ff2d749a773f2eed03f.zip |
Merge pull request #4894 from edsantiago/test_apiv2
Tests for API v2
Diffstat (limited to 'test/apiv2/20-containers.at')
-rw-r--r-- | test/apiv2/20-containers.at | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/test/apiv2/20-containers.at b/test/apiv2/20-containers.at new file mode 100644 index 000000000..5f0a145f0 --- /dev/null +++ b/test/apiv2/20-containers.at @@ -0,0 +1,29 @@ +# -*- sh -*- +# +# test container-related endpoints +# + +podman pull $IMAGE &>/dev/null + +# Unimplemented +#t POST libpod/containers/create '' 201 'sdf' + +# Ensure clean slate +podman rm -a -f &>/dev/null + +t GET libpod/containers/json 200 [] + +podman run $IMAGE true + +t GET libpod/containers/json 200 \ + .[0].ID~[0-9a-f]\\{12\\} \ + .[0].Image=$IMAGE \ + .[0].Command=true \ + .[0].State=4 \ + .[0].IsInfra=false + +cid=$(jq -r '.[0].ID' <<<"$output") + +t DELETE libpod/containers/$cid 204 + +# vim: filetype=sh |