diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-07-22 14:27:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-22 14:27:41 +0200 |
commit | 5e43fb15cc8165c855ab403dafb88daeb5dbdcd9 (patch) | |
tree | 9da018b2d39f35708fc963990f37fcf08c7f4a20 /test/apiv2 | |
parent | 99bf6f96cd93867813e72742c484ab0abf15cca4 (diff) | |
parent | afbfbe18a15092065ba712dd12f3af8f157d513f (diff) | |
download | podman-5e43fb15cc8165c855ab403dafb88daeb5dbdcd9.tar.gz podman-5e43fb15cc8165c855ab403dafb88daeb5dbdcd9.tar.bz2 podman-5e43fb15cc8165c855ab403dafb88daeb5dbdcd9.zip |
Merge pull request #15016 from Luap99/compat-netname
compat api: allow default bridge name for networks
Diffstat (limited to 'test/apiv2')
-rw-r--r-- | test/apiv2/35-networks.at | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/apiv2/35-networks.at b/test/apiv2/35-networks.at index fcff26521..07ba45efb 100644 --- a/test/apiv2/35-networks.at +++ b/test/apiv2/35-networks.at @@ -84,12 +84,24 @@ t GET networks?filters='{"dangling":["true","0"]}' 500 \ t GET networks?filters='{"name":["doesnotexists"]}' 200 \ "[]" +# check default name in list endpoint +t GET networks 200 \ + .[].Name~.*bridge.* + # network inspect docker t GET networks/$network1_id 200 \ .Name=network1 \ .Id=$network1_id \ .Scope=local +# inspect default bridge network +t GET networks/bridge 200 \ + .Name=bridge + +# inspect default bridge network with real podman name should return real name +t GET networks/podman 200 \ + .Name=podman + # network create docker t POST networks/create Name=net3\ IPAM='{"Config":[]}' 201 # network delete docker |