summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEdward Shen <weshen@redhat.com>2020-08-24 10:34:44 -0400
committerEdward Shen <weshen@redhat.com>2020-09-01 04:00:39 -0400
commit43ad9be7d8f6fd095aa3dec462c5b6f8ce01fada (patch)
treed3c441d496f401f1e7030042c1fd33dd5a30c3e6 /test
parent138132e16357c1c6103e6ffa770398b663462736 (diff)
downloadpodman-43ad9be7d8f6fd095aa3dec462c5b6f8ce01fada.tar.gz
podman-43ad9be7d8f6fd095aa3dec462c5b6f8ce01fada.tar.bz2
podman-43ad9be7d8f6fd095aa3dec462c5b6f8ce01fada.zip
APIv2 test: add more tests for containers
Signed-off-by: Edward Shen <weshen@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/apiv2/25-containersMore.at55
1 files changed, 55 insertions, 0 deletions
diff --git a/test/apiv2/25-containersMore.at b/test/apiv2/25-containersMore.at
new file mode 100644
index 000000000..e0e6f7222
--- /dev/null
+++ b/test/apiv2/25-containersMore.at
@@ -0,0 +1,55 @@
+# -*- sh -*-
+#
+# test more container-related endpoints
+#
+
+podman pull $IMAGE &>/dev/null
+
+# Ensure clean slate
+podman rm -a -f &>/dev/null
+
+podman run -d --name foo $IMAGE top
+
+# Check exists for none such
+t GET libpod/containers/nonesuch/exists 404
+
+# Check container foo exists
+t GET libpod/containers/foo/exists 204
+
+# Pause the container
+t POST libpod/containers/foo/pause '' 204
+
+t GET libpod/containers/foo/json 200 \
+ .Id~[0-9a-f]\\{64\\} \
+ .State.Status=paused \
+ .ImageName=$IMAGE \
+ .Config.Cmd[0]=top \
+ .Name=foo
+
+# Unpause the container
+t POST libpod/containers/foo/unpause '' 204
+
+t GET libpod/containers/foo/json 200 \
+ .Id~[0-9a-f]\\{64\\} \
+ .State.Status=running \
+ .ImageName=$IMAGE \
+ .Config.Cmd[0]=top \
+ .Name=foo
+
+# List processes of the container
+t GET libpod/containers/foo/top 200 \
+ length=2
+
+# List processes of none such
+t GET libpod/containers/nonesuch/top 404
+
+# Mount the container to host filesystem
+t POST libpod/containers/foo/mount '' 200
+like "$output" ".*merged" "Check container mount"
+
+# Unmount the container
+t POST libpod/containers/foo/unmount '' 204
+
+t DELETE libpod/containers/foo?force=true 204
+
+# vim: filetype=sh