diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-11-10 23:28:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-10 23:28:35 +0100 |
commit | 546ad0e6ab2af88563a41f3526f2ed5ba67904c4 (patch) | |
tree | 26bd1bcf394972914918db923359f25e273ba488 /test/system/500-networking.bats | |
parent | 9dddc47d283efc3589d1e5a3aafac41935c510a9 (diff) | |
parent | 3690532b3be186c03071d9c845295e7158a0f7f5 (diff) | |
download | podman-546ad0e6ab2af88563a41f3526f2ed5ba67904c4.tar.gz podman-546ad0e6ab2af88563a41f3526f2ed5ba67904c4.tar.bz2 podman-546ad0e6ab2af88563a41f3526f2ed5ba67904c4.zip |
Merge pull request #12242 from Luap99/port-reload
network reload without ports should not reload ports
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 7697195ce..21350ed36 100644 --- a/test/system/500-networking.bats +++ b/test/system/500-networking.bats @@ -430,6 +430,7 @@ load helpers is "$output" "[${cid:0:12}]" "short container id in network aliases" 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 @@ -438,6 +439,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 @@ -454,6 +456,12 @@ 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" + # FIXME FIXME FIXME: #11825: bodhi tests are failing, remote+rootless only, # with "dnsmasq: failed to create inotify". This error has never occurred # in CI, and Ed has been unable to reproduce it on 1minutetip. This next @@ -464,6 +472,7 @@ load helpers # connect a second network run_podman network connect $netname2 $cid + is "$output" "" "Output should be empty (no errors)" # check network2 alias for container short id run_podman inspect $cid --format "{{(index .NetworkSettings.Networks \"$netname2\").Aliases}}" |