diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-23 12:16:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 12:16:15 +0200 |
commit | 3c51ff92caf9523e567c4bcea48d6a668220f25f (patch) | |
tree | 028381aef1fa23d17cfa606bcb284c0d5ce8fe17 /test | |
parent | 9e37fd43e47d32d5bfbc920c6d7aedfad5662ae0 (diff) | |
parent | 2abcd4f1de41a5e977ea7c48d5a9e9a51d410a18 (diff) | |
download | podman-3c51ff92caf9523e567c4bcea48d6a668220f25f.tar.gz podman-3c51ff92caf9523e567c4bcea48d6a668220f25f.tar.bz2 podman-3c51ff92caf9523e567c4bcea48d6a668220f25f.zip |
Merge pull request #6710 from vrothberg/fix-6413
libpod/containers/json: alias last -> limit
Diffstat (limited to 'test')
-rw-r--r-- | test/apiv2/20-containers.at | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/apiv2/20-containers.at b/test/apiv2/20-containers.at index 60f6d97aa..9efebfeb9 100644 --- a/test/apiv2/20-containers.at +++ b/test/apiv2/20-containers.at @@ -26,6 +26,27 @@ t GET libpod/containers/json?all=true 200 \ .[0].ExitCode=0 \ .[0].IsInfra=false +# Make sure `limit` works. +t GET libpod/containers/json?limit=1 200 \ + length=1 \ + .[0].Id~[0-9a-f]\\{64\\} \ + .[0].Image=$IMAGE \ + .[0].Command[0]="true" \ + .[0].State~\\\(exited\\\|stopped\\\) \ + .[0].ExitCode=0 \ + .[0].IsInfra=false + +# Make sure `last` works, which is an alias for `limit`. +# See https://github.com/containers/libpod/issues/6413. +t GET libpod/containers/json?last=1 200 \ + length=1 \ + .[0].Id~[0-9a-f]\\{64\\} \ + .[0].Image=$IMAGE \ + .[0].Command[0]="true" \ + .[0].State~\\\(exited\\\|stopped\\\) \ + .[0].ExitCode=0 \ + .[0].IsInfra=false + cid=$(jq -r '.[0].Id' <<<"$output") t DELETE libpod/containers/$cid 204 |