summaryrefslogtreecommitdiff
path: root/test/system
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2022-04-22 08:45:11 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2022-04-22 09:02:05 -0400
commit454468e0343197570df5e93647bfdc45024bc024 (patch)
treea69a5d873ac6146a49126e032ba12521272f23c4 /test/system
parentad3da638ce17439a7adbf2aa7e1b4017d583f660 (diff)
downloadpodman-454468e0343197570df5e93647bfdc45024bc024.tar.gz
podman-454468e0343197570df5e93647bfdc45024bc024.tar.bz2
podman-454468e0343197570df5e93647bfdc45024bc024.zip
Update test to run network check in both rootless and rootfull mode
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/system')
-rw-r--r--test/system/500-networking.bats7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/system/500-networking.bats b/test/system/500-networking.bats
index 0c3062a7e..958aa4493 100644
--- a/test/system/500-networking.bats
+++ b/test/system/500-networking.bats
@@ -83,8 +83,7 @@ load helpers
}
# Issue #5466 - port-forwarding doesn't work with this option and -d
-@test "podman networking: port with --userns=keep-id" {
- skip_if_not_rootless "--userns=keep-id only works in rootless mode"
+@test "podman networking: port with --userns=keep-id for rootless or --uidmap=* for rootfull" {
for cidr in "" "$(random_rfc1918_subnet).0/24"; do
myport=$(random_free_port 52000-52999)
if [[ -z $cidr ]]; then
@@ -106,7 +105,9 @@ load helpers
# remote IP is not 127.0.0.1 (podman PR #9052).
# We could get more parseable output by using $NCAT_REMOTE_ADDR,
# but busybox nc doesn't support that.
- run_podman run -d --userns=keep-id $network_arg -p 127.0.0.1:$myport:$myport \
+ userns="--userns=keep-id"
+ is_rootless || userns="--uidmap=0:1111111:65536 --gidmap=0:1111111:65536"
+ run_podman run -d ${userns} $network_arg -p 127.0.0.1:$myport:$myport \
$IMAGE nc -l -n -v -p $myport
cid="$output"