diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2022-01-03 13:26:32 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2022-01-04 10:56:03 -0500 |
commit | 0c6ae3ab2681c06dbaba0bb5c002d7f2b339db61 (patch) | |
tree | 321319105616ba8d5f4441c8a4f870dc9f5ad0e8 /test | |
parent | aaf90c5596fb2232d915fcd75d4d707d180c1b17 (diff) | |
download | podman-0c6ae3ab2681c06dbaba0bb5c002d7f2b339db61.tar.gz podman-0c6ae3ab2681c06dbaba0bb5c002d7f2b339db61.tar.bz2 podman-0c6ae3ab2681c06dbaba0bb5c002d7f2b339db61.zip |
Fix Container List API call to return mount info
We are hard coding mounts to return nil in compat API,
since we have the data, we should return it.
Fixes: https://github.com/containers/podman/issues/12734
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/apiv2/20-containers.at | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/apiv2/20-containers.at b/test/apiv2/20-containers.at index 5a02ca3cb..554a905d4 100644 --- a/test/apiv2/20-containers.at +++ b/test/apiv2/20-containers.at @@ -18,7 +18,7 @@ podman rm -a -f &>/dev/null t GET "libpod/containers/json (at start: clean slate)" 200 length=0 -podman run $IMAGE true +podman run -v /tmp:/tmp $IMAGE true t GET libpod/containers/json 200 length=0 @@ -33,6 +33,7 @@ t GET libpod/containers/json?all=true 200 \ .[0].Command[0]="true" \ .[0].State~\\\(exited\\\|stopped\\\) \ .[0].ExitCode=0 \ + .[0].Mounts~.*/tmp \ .[0].IsInfra=false # Test compat API for Network Settings (.Network is N/A when rootless) @@ -44,6 +45,7 @@ t GET /containers/json?all=true 200 \ length=1 \ .[0].Id~[0-9a-f]\\{64\\} \ .[0].Image=$IMAGE \ + .[0].Mounts~.*/tmp \ $network_expect # compat API imageid with sha256: prefix |