diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-11-11 15:52:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-11 15:52:42 +0100 |
commit | fd010adfdcb6f578623b77281f2ae012bcd1ac85 (patch) | |
tree | dfb7681ce86eed1dbef58f3d024650550d15c4a0 /test/system/500-networking.bats | |
parent | 8de9950038b5a0582bfecfbe3a11427e6cfbfcfe (diff) | |
parent | 9c94530bbe575544d3dceeb591bc3c836a367e22 (diff) | |
download | podman-fd010adfdcb6f578623b77281f2ae012bcd1ac85.tar.gz podman-fd010adfdcb6f578623b77281f2ae012bcd1ac85.tar.bz2 podman-fd010adfdcb6f578623b77281f2ae012bcd1ac85.zip |
Merge pull request #12269 from Luap99/backport3.4
[v3.4] backport networking fixes
Diffstat (limited to 'test/system/500-networking.bats')
-rw-r--r-- | test/system/500-networking.bats | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/system/500-networking.bats b/test/system/500-networking.bats index bdedfae19..fc1a7c9f0 100644 --- a/test/system/500-networking.bats +++ b/test/system/500-networking.bats @@ -391,6 +391,7 @@ load helpers mac="$output" run_podman network disconnect $netname $cid + is "$output" "" "Output should be empty (no errors)" # check that we cannot curl (timeout after 3 sec) run curl --max-time 3 -s $SERVER/index.txt @@ -399,6 +400,7 @@ load helpers fi run_podman network connect $netname $cid + is "$output" "" "Output should be empty (no errors)" # curl should work again run curl --max-time 3 -s $SERVER/index.txt @@ -415,8 +417,15 @@ load helpers die "MAC address did not change after podman network disconnect/connect" fi + # Disconnect/reconnect of a container *with no ports* should succeed quietly + run_podman network disconnect $netname $background_cid + is "$output" "" "disconnect of container with no open ports" + run_podman network connect $netname $background_cid + is "$output" "" "(re)connect of container with no open ports" + # connect a second network run_podman network connect $netname2 $cid + is "$output" "" "Output should be empty (no errors)" # curl should work run curl --max-time 3 -s $SERVER/index.txt |