summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorcdoern <cbdoer23@g.holycross.edu>2022-05-13 16:04:13 -0400
committercdoern <cdoern@redhat.com>2022-06-01 12:45:00 -0400
commitf728b7b5a7585cef7f8d612ccf54481c3c6eb556 (patch)
treec505ebb3863b09be256075b0b0c03d4a2d8e8427 /test
parentd069ad108246a15b57481afd12ef7ffd5667e1d2 (diff)
downloadpodman-f728b7b5a7585cef7f8d612ccf54481c3c6eb556.tar.gz
podman-f728b7b5a7585cef7f8d612ccf54481c3c6eb556.tar.bz2
podman-f728b7b5a7585cef7f8d612ccf54481c3c6eb556.zip
podman pod create --uidmap patch
podmans remote API does not marshal infra's spec due to the fact that if it did, all of those options would be available to the users on the command line. This means we need to manually map "backwards" some container spec items -> pod spec items before calling PodCreate, this was one of them that was forgotten resolves #14233 Signed-off-by: cdoern <cbdoer23@g.holycross.edu> Signed-off-by: cdoern <cdoern@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/system/170-run-userns.bats4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/system/170-run-userns.bats b/test/system/170-run-userns.bats
index b80351902..46cb37b9d 100644
--- a/test/system/170-run-userns.bats
+++ b/test/system/170-run-userns.bats
@@ -38,10 +38,12 @@ function _require_crun() {
@test "rootful pod with custom ID mapping" {
skip_if_rootless "does not work rootless - rootful feature"
- skip_if_remote "remote --uidmap is broken (see #14233)"
random_pod_name=$(random_string 30)
run_podman pod create --uidmap 0:200000:5000 --name=$random_pod_name
run_podman pod start $random_pod_name
+ run_podman pod inspect --format '{{.InfraContainerID}}' $random_pod_name
+ run podman inspect --format '{{.HostConfig.IDMappings.UIDMap}}' $output
+ is "$output" ".*0:200000:5000" "UID Map Successful"
# Remove the pod and the pause image
run_podman pod rm $random_pod_name