-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove some SkipIfRootless flags from tests #7760
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,6 @@ import ( | |
"syscall" | ||
"time" | ||
|
||
"github.com/containers/podman/v2/pkg/cgroups" | ||
. "github.com/containers/podman/v2/test/utils" | ||
"github.com/containers/storage/pkg/stringid" | ||
"github.com/mrunalp/fileutils" | ||
|
@@ -50,7 +49,6 @@ var _ = Describe("Podman run", func() { | |
}) | ||
|
||
It("podman run a container based on a complex local image name", func() { | ||
SkipIfRootless() | ||
imageName := strings.TrimPrefix(nginx, "quay.io/") | ||
session := podmanTest.Podman([]string{"run", imageName, "ls"}) | ||
session.WaitWithDefaultTimeout() | ||
|
@@ -311,12 +309,15 @@ USER bin` | |
}) | ||
|
||
It("podman run limits test", func() { | ||
SkipIfRootless() | ||
session := podmanTest.Podman([]string{"run", "--rm", "--ulimit", "rtprio=99", "--cap-add=sys_nice", fedoraMinimal, "cat", "/proc/self/sched"}) | ||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
SkipIfRootlessCgroupsV1() | ||
|
||
if !isRootless() { | ||
session := podmanTest.Podman([]string{"run", "--rm", "--ulimit", "rtprio=99", "--cap-add=sys_nice", fedoraMinimal, "cat", "/proc/self/sched"}) | ||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
} | ||
|
||
session = podmanTest.Podman([]string{"run", "--rm", "--ulimit", "nofile=2048:2048", fedoraMinimal, "ulimit", "-n"}) | ||
session := podmanTest.Podman([]string{"run", "--rm", "--ulimit", "nofile=2048:2048", fedoraMinimal, "ulimit", "-n"}) | ||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
Expect(session.OutputToString()).To(ContainSubstring("2048")) | ||
|
@@ -326,10 +327,7 @@ USER bin` | |
Expect(session.ExitCode()).To(Equal(0)) | ||
Expect(session.OutputToString()).To(ContainSubstring("1024")) | ||
|
||
cgroupsv2, err := cgroups.IsCgroup2UnifiedMode() | ||
Expect(err).To(BeNil()) | ||
|
||
if !cgroupsv2 { | ||
if !CGROUPSV2 { | ||
// --oom-kill-disable not supported on cgroups v2. | ||
session = podmanTest.Podman([]string{"run", "--rm", "--oom-kill-disable=true", fedoraMinimal, "echo", "memory-hog"}) | ||
session.WaitWithDefaultTimeout() | ||
|
@@ -370,25 +368,23 @@ USER bin` | |
}) | ||
|
||
It("podman run sysctl test", func() { | ||
SkipIfRootless() | ||
SkipIfRootless() // Network sysclts are not avalable root rootless | ||
session := podmanTest.Podman([]string{"run", "--rm", "--sysctl", "net.core.somaxconn=65535", ALPINE, "sysctl", "net.core.somaxconn"}) | ||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
Expect(session.OutputToString()).To(ContainSubstring("net.core.somaxconn = 65535")) | ||
}) | ||
|
||
It("podman run blkio-weight test", func() { | ||
SkipIfRootless() | ||
cgroupsv2, err := cgroups.IsCgroup2UnifiedMode() | ||
Expect(err).To(BeNil()) | ||
|
||
if !cgroupsv2 { | ||
SkipIfRootless() // FIXME: This is blowing up because of no /sys/fs/cgroup/user.slice/user-14467.slice/[email protected]/cgroup.subtree_control file | ||
// SkipIfRootlessCgroupsV1() | ||
if !CGROUPSV2 { | ||
if _, err := os.Stat("/sys/fs/cgroup/blkio/blkio.weight"); os.IsNotExist(err) { | ||
Skip("Kernel does not support blkio.weight") | ||
} | ||
} | ||
|
||
if cgroupsv2 { | ||
if CGROUPSV2 { | ||
// convert linearly from [10-1000] to [1-10000] | ||
session := podmanTest.Podman([]string{"run", "--rm", "--blkio-weight=15", ALPINE, "sh", "-c", "cat /sys/fs/cgroup/$(sed -e 's|0::||' < /proc/self/cgroup)/io.bfq.weight"}) | ||
session.WaitWithDefaultTimeout() | ||
|
@@ -403,84 +399,72 @@ USER bin` | |
}) | ||
|
||
It("podman run device-read-bps test", func() { | ||
SkipIfRootless() | ||
|
||
cgroupsv2, err := cgroups.IsCgroup2UnifiedMode() | ||
Expect(err).To(BeNil()) | ||
|
||
SkipIfRootless() // FIXME: Missing /sys/fs/cgroup/user.slice/user-14467.slice/[email protected]/cgroup.subtree_control | ||
SkipIfRootlessCgroupsV1() | ||
var session *PodmanSessionIntegration | ||
|
||
if cgroupsv2 { | ||
if CGROUPSV2 { | ||
session = podmanTest.Podman([]string{"run", "--rm", "--device-read-bps=/dev/zero:1mb", ALPINE, "sh", "-c", "cat /sys/fs/cgroup/$(sed -e 's|0::||' < /proc/self/cgroup)/io.max"}) | ||
} else { | ||
session = podmanTest.Podman([]string{"run", "--rm", "--device-read-bps=/dev/zero:1mb", ALPINE, "cat", "/sys/fs/cgroup/blkio/blkio.throttle.read_bps_device"}) | ||
} | ||
|
||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
if !cgroupsv2 { // TODO: Test Simplification. For now, we only care about exit(0) w/ cgroupsv2 | ||
if !CGROUPSV2 { // TODO: Test Simplification. For now, we only care about exit(0) w/ cgroupsv2 | ||
Expect(session.OutputToString()).To(ContainSubstring("1048576")) | ||
} | ||
}) | ||
|
||
It("podman run device-write-bps test", func() { | ||
SkipIfRootless() | ||
|
||
cgroupsv2, err := cgroups.IsCgroup2UnifiedMode() | ||
Expect(err).To(BeNil()) | ||
|
||
SkipIfRootless() // FIXME /sys/fs/cgroup/user.slice/user-14467.slice/[email protected]/cgroup.subtree_control does not exist | ||
SkipIfRootlessCgroupsV1() | ||
var session *PodmanSessionIntegration | ||
|
||
if cgroupsv2 { | ||
if CGROUPSV2 { | ||
session = podmanTest.Podman([]string{"run", "--rm", "--device-write-bps=/dev/zero:1mb", ALPINE, "sh", "-c", "cat /sys/fs/cgroup/$(sed -e 's|0::||' < /proc/self/cgroup)/io.max"}) | ||
} else { | ||
session = podmanTest.Podman([]string{"run", "--rm", "--device-write-bps=/dev/zero:1mb", ALPINE, "cat", "/sys/fs/cgroup/blkio/blkio.throttle.write_bps_device"}) | ||
} | ||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
if !cgroupsv2 { // TODO: Test Simplification. For now, we only care about exit(0) w/ cgroupsv2 | ||
if !CGROUPSV2 { // TODO: Test Simplification. For now, we only care about exit(0) w/ cgroupsv2 | ||
Expect(session.OutputToString()).To(ContainSubstring("1048576")) | ||
} | ||
}) | ||
|
||
It("podman run device-read-iops test", func() { | ||
SkipIfRootless() | ||
|
||
cgroupsv2, err := cgroups.IsCgroup2UnifiedMode() | ||
Expect(err).To(BeNil()) | ||
|
||
SkipIfRootless() // FIXME /sys/fs/cgroup/user.slice/user-14467.slice/[email protected]/cgroup.subtree_control does not exist | ||
SkipIfRootlessCgroupsV1() | ||
var session *PodmanSessionIntegration | ||
|
||
if cgroupsv2 { | ||
if CGROUPSV2 { | ||
session = podmanTest.Podman([]string{"run", "--rm", "--device-read-iops=/dev/zero:100", ALPINE, "sh", "-c", "cat /sys/fs/cgroup/$(sed -e 's|0::||' < /proc/self/cgroup)/io.max"}) | ||
} else { | ||
session = podmanTest.Podman([]string{"run", "--rm", "--device-read-iops=/dev/zero:100", ALPINE, "cat", "/sys/fs/cgroup/blkio/blkio.throttle.read_iops_device"}) | ||
} | ||
|
||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
if !cgroupsv2 { // TODO: Test Simplification. For now, we only care about exit(0) w/ cgroupsv2 | ||
if !CGROUPSV2 { // TODO: Test Simplification. For now, we only care about exit(0) w/ cgroupsv2 | ||
Expect(session.OutputToString()).To(ContainSubstring("100")) | ||
} | ||
}) | ||
|
||
It("podman run device-write-iops test", func() { | ||
SkipIfRootless() | ||
|
||
cgroupsv2, err := cgroups.IsCgroup2UnifiedMode() | ||
Expect(err).To(BeNil()) | ||
|
||
SkipIfRootless() // FIXME /sys/fs/cgroup/user.slice/user-14467.slice/[email protected]/cgroup.subtree_control does not exist | ||
SkipIfRootlessCgroupsV1() | ||
var session *PodmanSessionIntegration | ||
|
||
if cgroupsv2 { | ||
if CGROUPSV2 { | ||
session = podmanTest.Podman([]string{"run", "--rm", "--device-write-iops=/dev/zero:100", ALPINE, "sh", "-c", "cat /sys/fs/cgroup/$(sed -e 's|0::||' < /proc/self/cgroup)/io.max"}) | ||
} else { | ||
session = podmanTest.Podman([]string{"run", "--rm", "--device-write-iops=/dev/zero:100", ALPINE, "cat", "/sys/fs/cgroup/blkio/blkio.throttle.write_iops_device"}) | ||
} | ||
|
||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
if !cgroupsv2 { // TODO: Test Simplification. For now, we only care about exit(0) w/ cgroupsv2 | ||
if !CGROUPSV2 { // TODO: Test Simplification. For now, we only care about exit(0) w/ cgroupsv2 | ||
Expect(session.OutputToString()).To(ContainSubstring("100")) | ||
} | ||
}) | ||
|
@@ -586,7 +570,7 @@ USER bin` | |
}) | ||
|
||
It("podman run with FIPS mode secrets", func() { | ||
SkipIfRootless() | ||
SkipIfRootless() // rootless can not manipulate system-fips file | ||
fipsFile := "/etc/system-fips" | ||
err = ioutil.WriteFile(fipsFile, []byte{}, 0755) | ||
Expect(err).To(BeNil()) | ||
|
@@ -601,27 +585,24 @@ USER bin` | |
}) | ||
|
||
It("podman run without group-add", func() { | ||
SkipIfRootless() | ||
session := podmanTest.Podman([]string{"run", "--rm", ALPINE, "id"}) | ||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
Expect(session.OutputToString()).To(Equal("uid=0(root) gid=0(root) groups=0(root),1(bin),2(daemon),3(sys),4(adm),6(disk),10(wheel),11(floppy),20(dialout),26(tape),27(video)")) | ||
Expect(session.LineInOutputContains("27(video),777,65533(nogroup)")).To(BeFalse()) | ||
}) | ||
|
||
It("podman run with group-add", func() { | ||
SkipIfRootless() | ||
session := podmanTest.Podman([]string{"run", "--rm", "--group-add=audio", "--group-add=nogroup", "--group-add=777", ALPINE, "id"}) | ||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
Expect(session.OutputToString()).To(Equal("uid=0(root) gid=0(root) groups=0(root),1(bin),2(daemon),3(sys),4(adm),6(disk),10(wheel),11(floppy),18(audio),20(dialout),26(tape),27(video),777,65533(nogroup)")) | ||
Expect(session.LineInOutputContains("777,65533(nogroup)")).To(BeTrue()) | ||
}) | ||
|
||
It("podman run with user (default)", func() { | ||
SkipIfRootless() | ||
session := podmanTest.Podman([]string{"run", "--rm", ALPINE, "id"}) | ||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
Expect(session.OutputToString()).To(Equal("uid=0(root) gid=0(root) groups=0(root),1(bin),2(daemon),3(sys),4(adm),6(disk),10(wheel),11(floppy),20(dialout),26(tape),27(video)")) | ||
Expect(session.LineInOutputContains("uid=0(root) gid=0(root)")).To(BeTrue()) | ||
}) | ||
|
||
It("podman run with user (integer, not in /etc/passwd)", func() { | ||
|
@@ -632,19 +613,17 @@ USER bin` | |
}) | ||
|
||
It("podman run with user (integer, in /etc/passwd)", func() { | ||
SkipIfRootless() | ||
session := podmanTest.Podman([]string{"run", "--rm", "--user=8", ALPINE, "id"}) | ||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
Expect(session.OutputToString()).To(Equal("uid=8(mail) gid=12(mail) groups=12(mail)")) | ||
Expect(session.LineInOutputContains("uid=8(mail) gid=12(mail)")).To(BeTrue()) | ||
}) | ||
|
||
It("podman run with user (username)", func() { | ||
SkipIfRootless() | ||
session := podmanTest.Podman([]string{"run", "--rm", "--user=mail", ALPINE, "id"}) | ||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
Expect(session.OutputToString()).To(Equal("uid=8(mail) gid=12(mail) groups=12(mail)")) | ||
Expect(session.LineInOutputContains("uid=8(mail) gid=12(mail)")).To(BeTrue()) | ||
}) | ||
|
||
It("podman run with user:group (username:integer)", func() { | ||
|
@@ -910,15 +889,14 @@ USER mail` | |
}) | ||
|
||
It("podman run --mount type=bind,bind-nonrecursive", func() { | ||
SkipIfRootless() | ||
SkipIfRootless() // rootless users are not allowed to mount bind-nonrecursive (Could this be a Kernel bug? | ||
session := podmanTest.Podman([]string{"run", "--mount", "type=bind,bind-nonrecursive,slave,src=/,target=/host", fedoraMinimal, "findmnt", "-nR", "/host"}) | ||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
Expect(len(session.OutputToStringArray())).To(Equal(1)) | ||
}) | ||
|
||
It("podman run --mount type=devpts,target=/foo/bar", func() { | ||
SkipIfRootless() | ||
session := podmanTest.Podman([]string{"run", "--mount", "type=devpts,target=/foo/bar", fedoraMinimal, "stat", "-f", "-c%T", "/foo/bar"}) | ||
session.WaitWithDefaultTimeout() | ||
Expect(session.ExitCode()).To(Equal(0)) | ||
|
@@ -1071,7 +1049,8 @@ USER mail` | |
}) | ||
|
||
It("podman run with cgroups=disabled runs without cgroups", func() { | ||
SkipIfRootless() | ||
SkipIfRootless() // FIXME: I believe this should work but need to fix this test | ||
SkipIfRootlessCgroupsV1() | ||
// Only works on crun | ||
if !strings.Contains(podmanTest.OCIRuntime, "crun") { | ||
Skip("Test only works on crun") | ||
|
@@ -1103,7 +1082,7 @@ USER mail` | |
}) | ||
|
||
It("podman run with cgroups=enabled makes cgroups", func() { | ||
SkipIfRootless() | ||
SkipIfRootlessCgroupsV1() | ||
// Only works on crun | ||
if !strings.Contains(podmanTest.OCIRuntime, "crun") { | ||
Skip("Test only works on crun") | ||
|
@@ -1146,7 +1125,7 @@ USER mail` | |
}) | ||
|
||
It("podman run --device-cgroup-rule", func() { | ||
SkipIfRootless() | ||
SkipIfRootless() // rootless users are not allowed to mknod | ||
deviceCgroupRule := "c 42:* rwm" | ||
session := podmanTest.Podman([]string{"run", "--name", "test", "-d", "--device-cgroup-rule", deviceCgroupRule, ALPINE, "top"}) | ||
session.WaitWithDefaultTimeout() | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems a lot less specific
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, they are very different in rootless versus rootful, but I do not know why. But the current test is fragile since the ALPINE image can change in the future. We just want to make sure that the container is running as root.
But you could very well be pointing out a rootless bug.
I still think we should get this in, and I will open an issue above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am establishing what I hope is a robust convention in which
quay.io/libpod/testimage:YYYYMMDD
is an alpine-based image, entirely under our control, to avoid precisely this sort of problem. See https://github.com/containers/podman/blob/master/test/system/build-testimageThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Opened an issue on this one, I believe we should merge this for and fix this specific issue later.
#7782