summaryrefslogtreecommitdiff
path: root/test/apiv2/45-system.at
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-03-01 21:08:50 +0100
committerGitHub <noreply@github.com>2021-03-01 21:08:50 +0100
commit73044b28172fd0df23836052a9061dc41f51f39a (patch)
tree8fc40cef8828c25bd7a6621451f1d46e17958323 /test/apiv2/45-system.at
parent8daa014f38f7e7af2b46bef1b1a5870429de0d12 (diff)
parent9435e5b79b3dacca61118b159b06fa38cb1ac0d8 (diff)
downloadpodman-73044b28172fd0df23836052a9061dc41f51f39a.tar.gz
podman-73044b28172fd0df23836052a9061dc41f51f39a.tar.bz2
podman-73044b28172fd0df23836052a9061dc41f51f39a.zip
Merge pull request #9555 from edsantiago/apiv2_test_readability
APIv2 tests: make more maintainable
Diffstat (limited to 'test/apiv2/45-system.at')
-rw-r--r--test/apiv2/45-system.at8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/apiv2/45-system.at b/test/apiv2/45-system.at
index 985d86e56..ad4bdf4f7 100644
--- a/test/apiv2/45-system.at
+++ b/test/apiv2/45-system.at
@@ -49,18 +49,16 @@ t GET libpod/system/df 200 '.Volumes | length=3'
# Prune volumes
-# -G --data-urlencode 'volumes=true&filters={"label":["testlabel1=idontmatch"]}'
-t POST 'libpod/system/prune?volumes=true&filters=%7B%22label%22:%5B%22testlabel1=idontmatch%22%5D%7D' params='' 200
+t POST 'libpod/system/prune?volumes=true&filters={"label":["testlabel1=idontmatch"]}' params='' 200
# nothing should have been pruned
t GET system/df 200 '.Volumes | length=3'
t GET libpod/system/df 200 '.Volumes | length=3'
-# -G --data-urlencode 'volumes=true&filters={"label":["testlabel1=testonly"]}'
# only foo3 should be pruned because of filter
-t POST 'libpod/system/prune?volumes=true&filters=%7B%22label%22:%5B%22testlabel1=testonly%22%5D%7D' params='' 200 .VolumePruneReports[0].Id=foo3
+t POST 'libpod/system/prune?volumes=true&filters={"label":["testlabel1=testonly"]}' params='' 200 .VolumePruneReports[0].Id=foo3
# only foo2 should be pruned because of filter
-t POST 'libpod/system/prune?volumes=true&filters=%7B%22label%22:%5B%22testlabel1%22%5D%7D' params='' 200 .VolumePruneReports[0].Id=foo2
+t POST 'libpod/system/prune?volumes=true&filters={"label":["testlabel1"]}' params='' 200 .VolumePruneReports[0].Id=foo2
# foo1, the last remaining volume should be pruned without any filters applied
t POST 'libpod/system/prune?volumes=true' params='' 200 .VolumePruneReports[0].Id=foo1