diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-05-04 15:33:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-04 15:33:16 +0200 |
commit | dea6189982b4d128aa1ae9ce379a1f94b4eb8a8f (patch) | |
tree | 18690ab38a50025b5606b9bd2b09fb19afbaccc1 /test | |
parent | 52048426e25449f8f62ab2495d0bb5e98ea35506 (diff) | |
parent | f185666da8cc3af053f4d794d249f2fedc6e67e4 (diff) | |
download | podman-dea6189982b4d128aa1ae9ce379a1f94b4eb8a8f.tar.gz podman-dea6189982b4d128aa1ae9ce379a1f94b4eb8a8f.tar.bz2 podman-dea6189982b4d128aa1ae9ce379a1f94b4eb8a8f.zip |
Merge pull request #10206 from Luap99/fix-9837
compat api: Networks must be empty instead of null
Diffstat (limited to 'test')
-rw-r--r-- | test/apiv2/20-containers.at | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/apiv2/20-containers.at b/test/apiv2/20-containers.at index 58b2dff0a..66ba099e3 100644 --- a/test/apiv2/20-containers.at +++ b/test/apiv2/20-containers.at @@ -205,10 +205,15 @@ t GET containers/$cid/json 200 \ t POST containers/create Image=$IMAGE Entrypoint='["top"]' 201 \ .Id~[0-9a-f]\\{64\\} cid_top=$(jq -r '.Id' <<<"$output") +network_expect="{}" +if root; then + network_expect='.podman.NetworkID=podman' +fi t GET containers/${cid_top}/json 200 \ .Config.Entrypoint[0]="top" \ .Config.Cmd='[]' \ .Path="top" + .NetworkSettings.Networks="$network_expect" t POST containers/${cid_top}/start 204 # make sure the container is running t GET containers/${cid_top}/json 200 \ |