mirror of
https://github.com/containers/podman.git
synced 2025-06-17 15:08:08 +08:00
Enable rootless integration tests
Signed-off-by: baude <bbaude@redhat.com>
This commit is contained in:
@ -69,9 +69,9 @@ env:
|
||||
####
|
||||
#### Default to NOT running in rootless-testing mode
|
||||
####
|
||||
ROOTLESS_USER:
|
||||
ROOTLESS_UID:
|
||||
ROOTLESS_GID:
|
||||
ROOTLESS_USER: ""
|
||||
ROOTLESS_UID: ""
|
||||
ROOTLESS_GID: ""
|
||||
|
||||
####
|
||||
#### Credentials and other secret-sauces, decrypted at runtime when authorized.
|
||||
|
@ -170,30 +170,36 @@ record_timestamp() {
|
||||
setup_rootless() {
|
||||
req_env_var "
|
||||
ROOTLESS_USER $ROOTLESS_USER
|
||||
ROOTLESS_UID $ROOTLESS_UID
|
||||
ROOTLESS_GID $ROOTLESS_GID
|
||||
#ROOTLESS_UID $ROOTLESS_UID
|
||||
#ROOTLESS_GID $ROOTLESS_GID
|
||||
GOSRC $GOSRC
|
||||
ENVLIB $ENVLIB
|
||||
"
|
||||
echo "creating $ROOTLESS_UID:$ROOTLESS_GID $ROOTLESS_USER user"
|
||||
groupadd -g $ROOTLESS_GID $ROOTLESS_USER
|
||||
useradd -g $ROOTLESS_GID -u $ROOTLESS_UID --no-user-group --create-home $ROOTLESS_USER
|
||||
chown -R $ROOTLESS_UID:$ROOTLESS_GID "$GOSRC"
|
||||
#groupadd -g $ROOTLESS_GID $ROOTLESS_USER
|
||||
#useradd -g $ROOTLESS_GID -u $ROOTLESS_UID --no-user-group --create-home $ROOTLESS_USER
|
||||
useradd --create-home $ROOTLESS_USER
|
||||
chown -R $ROOTLESS_USER:$ROOTLESS_USER "$GOSRC"
|
||||
|
||||
echo "creating ssh keypair for $USER"
|
||||
ssh-keygen -P "" -f $HOME/.ssh/id_rsa
|
||||
|
||||
echo "Allowing ssh key for $ROOTLESS_USER"
|
||||
(umask 077 && mkdir "/home/$ROOTLESS_USER/.ssh")
|
||||
chown -R $ROOTLESS_UID:$ROOTLESS_GID "/home/$ROOTLESS_USER/.ssh"
|
||||
install -o $ROOTLESS_UID -g $ROOTLESS_GID -m 0600 \
|
||||
chown -R $ROOTLESS_USER:$ROOTLESS_USER "/home/$ROOTLESS_USER/.ssh"
|
||||
install -o $ROOTLESS_USER -g $ROOTLESS_USER -m 0600 \
|
||||
"$HOME/.ssh/id_rsa.pub" "/home/$ROOTLESS_USER/.ssh/authorized_keys"
|
||||
# Makes debugging easier
|
||||
cat /root/.ssh/authorized_keys >> "/home/$ROOTLESS_USER/.ssh/authorized_keys"
|
||||
|
||||
echo "Configuring subuid and subgid"
|
||||
echo "${ROOTLESS_USER}:$[ROOTLESS_UID * 100]:65536" | tee -a /etc/subuid >> /etc/subgid
|
||||
|
||||
echo "Setting permissions on automation files"
|
||||
chmod 666 "$TIMESTAMPS_FILEPATH"
|
||||
|
||||
echo "Copying $HOME/$ENVLIB"
|
||||
install -o $ROOTLESS_UID -g $ROOTLESS_GID -m 0700 \
|
||||
install -o $ROOTLESS_USER -g $ROOTLESS_USER -m 0700 \
|
||||
"$HOME/$ENVLIB" "/home/$ROOTLESS_USER/$ENVLIB"
|
||||
|
||||
echo "Configuring user's go environment variables"
|
||||
|
@ -29,6 +29,9 @@ case "${OS_RELEASE_ID}-${OS_RELEASE_VER}" in
|
||||
fedora-29) ;&
|
||||
fedora-28)
|
||||
make
|
||||
make varlink_generate
|
||||
make test-binaries
|
||||
make ginkgo
|
||||
;;
|
||||
*) bad_os_id_ver ;;
|
||||
esac
|
||||
|
@ -79,6 +79,10 @@ then
|
||||
if run_rootless
|
||||
then
|
||||
setup_rootless
|
||||
make install.catatonit
|
||||
go get github.com/onsi/ginkgo/ginkgo
|
||||
go get github.com/onsi/gomega/...
|
||||
dnf -y update runc
|
||||
else
|
||||
# Includes some $HOME relative details
|
||||
go env | while read envline
|
||||
|
@ -104,6 +104,10 @@ parse_args(){
|
||||
then
|
||||
DEPS="PACKAGE_DEPS=false SOURCE_DEPS=true"
|
||||
IMAGE_NAME="$2"
|
||||
elif [[ "$1" == "-r" ]]
|
||||
then
|
||||
DEPS="ROOTLESS_USER=madcowdog ROOTLESS_UID=3210 ROOTLESS_GID=3210"
|
||||
IMAGE_NAME="$2"
|
||||
else # no -s or -p
|
||||
DEPS="$(get_env_vars)"
|
||||
IMAGE_NAME="$1"
|
||||
|
@ -3,6 +3,7 @@ package integration
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"github.com/containers/libpod/pkg/rootless"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"os/exec"
|
||||
@ -213,7 +214,11 @@ func PodmanTestCreateUtil(tempDir string, remote bool) *PodmanTestIntegration {
|
||||
if os.Getenv("STORAGE_OPTIONS") != "" {
|
||||
storageOptions = os.Getenv("STORAGE_OPTIONS")
|
||||
}
|
||||
|
||||
cgroupManager := CGROUP_MANAGER
|
||||
if rootless.IsRootless() {
|
||||
cgroupManager = "cgroupfs"
|
||||
}
|
||||
if os.Getenv("CGROUP_MANAGER") != "" {
|
||||
cgroupManager = os.Getenv("CGROUP_MANAGER")
|
||||
}
|
||||
|
@ -18,6 +18,7 @@ var _ = Describe("Podman create with --ip flag", func() {
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
SkipIfRootless()
|
||||
tempdir, err = CreateTempDirInTempDir()
|
||||
if err != nil {
|
||||
os.Exit(1)
|
||||
|
@ -1,11 +1,11 @@
|
||||
mode: atomic
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:14.46,21.20 2 1
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:31.2,31.19 1 1
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:38.2,38.53 1 1
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:65.2,65.52 1 1
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:21.20,23.17 2 2
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:26.3,28.36 3 2
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:14.46,21.20 2 3
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:32.2,32.19 1 3
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:39.2,39.53 1 3
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:66.2,66.52 1 3
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:21.20,23.17 2 6
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:26.3,29.36 4 6
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:23.17,25.4 1 0
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:31.19,36.3 4 2
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:38.53,63.3 20 1
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:65.52,90.3 20 1
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:32.19,37.3 3 6
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:39.53,64.3 20 3
|
||||
github.com/containers/libpod/test/e2e/pod_pod_namespaces.go:66.52,91.3 20 3
|
@ -48,6 +48,7 @@ var _ = Describe("Podman generate kube", func() {
|
||||
})
|
||||
|
||||
It("podman generate kube on container", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.RunTopContainer("top")
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -61,6 +62,7 @@ var _ = Describe("Podman generate kube", func() {
|
||||
})
|
||||
|
||||
It("podman generate service kube on container", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.RunTopContainer("top")
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -74,6 +76,7 @@ var _ = Describe("Podman generate kube", func() {
|
||||
})
|
||||
|
||||
It("podman generate kube on pod", func() {
|
||||
SkipIfRootless()
|
||||
_, rc, _ := podmanTest.CreatePod("toppod")
|
||||
Expect(rc).To(Equal(0))
|
||||
|
||||
@ -90,6 +93,7 @@ var _ = Describe("Podman generate kube", func() {
|
||||
})
|
||||
|
||||
It("podman generate service kube on pod", func() {
|
||||
SkipIfRootless()
|
||||
_, rc, _ := podmanTest.CreatePod("toppod")
|
||||
Expect(rc).To(Equal(0))
|
||||
|
||||
|
@ -42,6 +42,7 @@ var _ = Describe("Podman healthcheck run", func() {
|
||||
})
|
||||
|
||||
It("podman healthcheck on valid container", func() {
|
||||
SkipIfRootless()
|
||||
podmanTest.RestoreArtifact(healthcheck)
|
||||
session := podmanTest.Podman([]string{"run", "-dt", "--name", "hc", healthcheck})
|
||||
session.WaitWithDefaultTimeout()
|
||||
|
@ -18,6 +18,8 @@ func SkipIfRemote() {
|
||||
ginkgo.Skip("This function is not enabled for remote podman")
|
||||
}
|
||||
|
||||
func SkipIfRootless() {}
|
||||
|
||||
// Cleanup cleans up the temporary store
|
||||
func (p *PodmanTestIntegration) Cleanup() {
|
||||
p.StopVarlink()
|
||||
|
@ -14,6 +14,7 @@ import (
|
||||
"github.com/containers/libpod/libpod"
|
||||
"github.com/containers/libpod/pkg/inspect"
|
||||
. "github.com/containers/libpod/test/utils"
|
||||
"github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
"github.com/onsi/gomega/gexec"
|
||||
@ -21,6 +22,10 @@ import (
|
||||
|
||||
func SkipIfRemote() {}
|
||||
|
||||
func SkipIfRootless() {
|
||||
ginkgo.Skip("This function is not enabled for rootless podman")
|
||||
}
|
||||
|
||||
// Podman is the exec call to podman on the filesystem
|
||||
func (p *PodmanTestIntegration) Podman(args []string) *PodmanSessionIntegration {
|
||||
podmanSession := p.PodmanBase(args)
|
||||
|
@ -22,6 +22,7 @@ var _ = Describe("Podman pause", func() {
|
||||
createdState := "Created"
|
||||
|
||||
BeforeEach(func() {
|
||||
SkipIfRootless()
|
||||
tempdir, err = CreateTempDirInTempDir()
|
||||
if err != nil {
|
||||
os.Exit(1)
|
||||
|
@ -99,6 +99,7 @@ var _ = Describe("Podman pod create", func() {
|
||||
})
|
||||
|
||||
It("podman create pod with network portbindings", func() {
|
||||
SkipIfRootless()
|
||||
name := "test"
|
||||
session := podmanTest.Podman([]string{"pod", "create", "--name", name, "-p", "80:80"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
|
@ -227,6 +227,7 @@ var _ = Describe("Podman pod create", func() {
|
||||
})
|
||||
|
||||
It("podman pod container can override pod pid NS", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"pod", "create", "--share", "pid"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -252,6 +253,7 @@ var _ = Describe("Podman pod create", func() {
|
||||
})
|
||||
|
||||
It("podman pod container can override pod not sharing pid", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"pod", "create", "--share", "net"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -277,6 +279,7 @@ var _ = Describe("Podman pod create", func() {
|
||||
})
|
||||
|
||||
It("podman pod container can override pod ipc NS", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"pod", "create", "--share", "ipc"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
|
@ -42,6 +42,7 @@ var _ = Describe("Podman pod kill", func() {
|
||||
})
|
||||
|
||||
It("podman pod kill a pod by id", func() {
|
||||
SkipIfRootless()
|
||||
_, ec, podid := podmanTest.CreatePod("")
|
||||
Expect(ec).To(Equal(0))
|
||||
|
||||
@ -60,6 +61,7 @@ var _ = Describe("Podman pod kill", func() {
|
||||
})
|
||||
|
||||
It("podman pod kill a pod by id with TERM", func() {
|
||||
SkipIfRootless()
|
||||
_, ec, podid := podmanTest.CreatePod("")
|
||||
Expect(ec).To(Equal(0))
|
||||
|
||||
@ -74,6 +76,7 @@ var _ = Describe("Podman pod kill", func() {
|
||||
})
|
||||
|
||||
It("podman pod kill a pod by name", func() {
|
||||
SkipIfRootless()
|
||||
_, ec, podid := podmanTest.CreatePod("test1")
|
||||
Expect(ec).To(Equal(0))
|
||||
|
||||
@ -102,6 +105,7 @@ var _ = Describe("Podman pod kill", func() {
|
||||
})
|
||||
|
||||
It("podman pod kill latest pod", func() {
|
||||
SkipIfRootless()
|
||||
_, ec, podid := podmanTest.CreatePod("")
|
||||
Expect(ec).To(Equal(0))
|
||||
|
||||
@ -127,6 +131,7 @@ var _ = Describe("Podman pod kill", func() {
|
||||
})
|
||||
|
||||
It("podman pod kill all", func() {
|
||||
SkipIfRootless()
|
||||
_, ec, podid := podmanTest.CreatePod("")
|
||||
Expect(ec).To(Equal(0))
|
||||
|
||||
|
@ -20,6 +20,7 @@ var _ = Describe("Podman pod pause", func() {
|
||||
pausedState := "Paused"
|
||||
|
||||
BeforeEach(func() {
|
||||
SkipIfRootless()
|
||||
tempdir, err = CreateTempDirInTempDir()
|
||||
if err != nil {
|
||||
os.Exit(1)
|
||||
|
@ -64,6 +64,7 @@ var _ = Describe("Podman pod create", func() {
|
||||
})
|
||||
|
||||
It("podman pod container dontshare PIDNS", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"pod", "create"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
|
@ -18,6 +18,7 @@ var _ = Describe("Podman pod stats", func() {
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
SkipIfRootless()
|
||||
tempdir, err = CreateTempDirInTempDir()
|
||||
if err != nil {
|
||||
os.Exit(1)
|
||||
|
@ -305,6 +305,7 @@ var _ = Describe("Podman ps", func() {
|
||||
})
|
||||
|
||||
It("podman ps test with port range", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.RunTopContainer("")
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
|
@ -80,6 +80,7 @@ var _ = Describe("Podman push", func() {
|
||||
})
|
||||
|
||||
It("podman push to local registry with authorization", func() {
|
||||
SkipIfRootless()
|
||||
if podmanTest.Host.Arch == "ppc64le" {
|
||||
Skip("No registry image for ppc64le")
|
||||
}
|
||||
|
@ -156,6 +156,7 @@ var _ = Describe("Podman restart", func() {
|
||||
})
|
||||
|
||||
It("Podman restart --all", func() {
|
||||
SkipIfRootless()
|
||||
_, exitCode, _ := podmanTest.RunLsContainer("test1")
|
||||
Expect(exitCode).To(Equal(0))
|
||||
|
||||
@ -176,6 +177,7 @@ var _ = Describe("Podman restart", func() {
|
||||
})
|
||||
|
||||
It("Podman restart --all --running", func() {
|
||||
SkipIfRootless()
|
||||
_, exitCode, _ := podmanTest.RunLsContainer("test1")
|
||||
Expect(exitCode).To(Equal(0))
|
||||
|
||||
|
@ -141,6 +141,7 @@ var _ = Describe("Podman rm", func() {
|
||||
})
|
||||
|
||||
It("podman rm bogus container", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"rm", "bogus"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(1))
|
||||
|
@ -38,6 +38,7 @@ var _ = Describe("Podman rootless", func() {
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
SkipIfRootless()
|
||||
tempdir, err = CreateTempDirInTempDir()
|
||||
if err != nil {
|
||||
os.Exit(1)
|
||||
|
@ -18,6 +18,7 @@ var _ = Describe("Podman run with --cgroup-parent", func() {
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
SkipIfRootless()
|
||||
tempdir, err = CreateTempDirInTempDir()
|
||||
if err != nil {
|
||||
os.Exit(1)
|
||||
|
@ -35,6 +35,7 @@ var _ = Describe("Podman run cpu", func() {
|
||||
})
|
||||
|
||||
It("podman run cpu-period", func() {
|
||||
SkipIfRootless()
|
||||
result := podmanTest.Podman([]string{"run", "--rm", "--cpu-period=5000", ALPINE, "cat", "/sys/fs/cgroup/cpu/cpu.cfs_period_us"})
|
||||
result.WaitWithDefaultTimeout()
|
||||
Expect(result.ExitCode()).To(Equal(0))
|
||||
@ -42,6 +43,7 @@ var _ = Describe("Podman run cpu", func() {
|
||||
})
|
||||
|
||||
It("podman run cpu-quota", func() {
|
||||
SkipIfRootless()
|
||||
result := podmanTest.Podman([]string{"run", "--rm", "--cpu-quota=5000", ALPINE, "cat", "/sys/fs/cgroup/cpu/cpu.cfs_quota_us"})
|
||||
result.WaitWithDefaultTimeout()
|
||||
Expect(result.ExitCode()).To(Equal(0))
|
||||
@ -49,6 +51,7 @@ var _ = Describe("Podman run cpu", func() {
|
||||
})
|
||||
|
||||
It("podman run cpus", func() {
|
||||
SkipIfRootless()
|
||||
result := podmanTest.Podman([]string{"run", "--rm", "--cpus=0.5", ALPINE, "cat", "/sys/fs/cgroup/cpu/cpu.cfs_period_us"})
|
||||
result.WaitWithDefaultTimeout()
|
||||
Expect(result.ExitCode()).To(Equal(0))
|
||||
@ -61,6 +64,7 @@ var _ = Describe("Podman run cpu", func() {
|
||||
})
|
||||
|
||||
It("podman run cpu-shares", func() {
|
||||
SkipIfRootless()
|
||||
result := podmanTest.Podman([]string{"run", "--rm", "--cpu-shares=2", ALPINE, "cat", "/sys/fs/cgroup/cpu/cpu.shares"})
|
||||
result.WaitWithDefaultTimeout()
|
||||
Expect(result.ExitCode()).To(Equal(0))
|
||||
@ -68,6 +72,7 @@ var _ = Describe("Podman run cpu", func() {
|
||||
})
|
||||
|
||||
It("podman run cpuset-cpus", func() {
|
||||
SkipIfRootless()
|
||||
result := podmanTest.Podman([]string{"run", "--rm", "--cpuset-cpus=0", ALPINE, "cat", "/sys/fs/cgroup/cpuset/cpuset.cpus"})
|
||||
result.WaitWithDefaultTimeout()
|
||||
Expect(result.ExitCode()).To(Equal(0))
|
||||
@ -75,6 +80,7 @@ var _ = Describe("Podman run cpu", func() {
|
||||
})
|
||||
|
||||
It("podman run cpuset-mems", func() {
|
||||
SkipIfRootless()
|
||||
result := podmanTest.Podman([]string{"run", "--rm", "--cpuset-mems=0", ALPINE, "cat", "/sys/fs/cgroup/cpuset/cpuset.mems"})
|
||||
result.WaitWithDefaultTimeout()
|
||||
Expect(result.ExitCode()).To(Equal(0))
|
||||
|
@ -41,6 +41,7 @@ var _ = Describe("Podman run device", func() {
|
||||
})
|
||||
|
||||
It("podman run device test", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"run", "-q", "--device", "/dev/kmsg", ALPINE, "ls", "--color=never", "/dev/kmsg"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -48,6 +49,7 @@ var _ = Describe("Podman run device", func() {
|
||||
})
|
||||
|
||||
It("podman run device rename test", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"run", "-q", "--device", "/dev/kmsg:/dev/kmsg1", ALPINE, "ls", "--color=never", "/dev/kmsg1"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -55,6 +57,7 @@ var _ = Describe("Podman run device", func() {
|
||||
})
|
||||
|
||||
It("podman run device permission test", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"run", "-q", "--device", "/dev/kmsg:r", ALPINE, "ls", "--color=never", "/dev/kmsg"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -62,6 +65,7 @@ var _ = Describe("Podman run device", func() {
|
||||
})
|
||||
|
||||
It("podman run device rename and permission test", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"run", "-q", "--device", "/dev/kmsg:/dev/kmsg1:r", ALPINE, "ls", "--color=never", "/dev/kmsg1"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -74,6 +78,7 @@ var _ = Describe("Podman run device", func() {
|
||||
})
|
||||
|
||||
It("podman run device host device and container device parameter are directories", func() {
|
||||
SkipIfRootless()
|
||||
SystemExec("mkdir", []string{"/dev/foodevdir"})
|
||||
SystemExec("mknod", []string{"/dev/foodevdir/null", "c", "1", "3"})
|
||||
session := podmanTest.Podman([]string{"run", "-q", "--device", "/dev/foodevdir:/dev/bar", ALPINE, "ls", "/dev/bar/null"})
|
||||
|
@ -88,6 +88,7 @@ var _ = Describe("Podman run dns", func() {
|
||||
})
|
||||
|
||||
It("podman run add hostname sets /etc/hosts", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"run", "-t", "-i", "--hostname=foobar", ALPINE, "cat", "/etc/hosts"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
|
@ -18,6 +18,7 @@ var _ = Describe("Podman run memory", func() {
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
SkipIfRootless()
|
||||
tempdir, err = CreateTempDirInTempDir()
|
||||
if err != nil {
|
||||
os.Exit(1)
|
||||
|
@ -54,6 +54,7 @@ var _ = Describe("Podman run networking", func() {
|
||||
})
|
||||
|
||||
It("podman run network expose port 222", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"run", "-dt", "--expose", "222-223", "-P", ALPINE, "/bin/sh"})
|
||||
session.Wait(30)
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -64,6 +65,7 @@ var _ = Describe("Podman run networking", func() {
|
||||
})
|
||||
|
||||
It("podman run network expose host port 80 to container port 8000", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"run", "-dt", "-p", "80:8000", ALPINE, "/bin/sh"})
|
||||
session.Wait(30)
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -146,6 +148,7 @@ var _ = Describe("Podman run networking", func() {
|
||||
})
|
||||
|
||||
It("podman run --net container: copies hosts and resolv", func() {
|
||||
SkipIfRootless()
|
||||
ctrName := "ctr1"
|
||||
ctr1 := podmanTest.RunTopContainer(ctrName)
|
||||
ctr1.WaitWithDefaultTimeout()
|
||||
@ -177,6 +180,7 @@ var _ = Describe("Podman run networking", func() {
|
||||
})
|
||||
|
||||
It("podman run network in user created network namespace", func() {
|
||||
SkipIfRootless()
|
||||
if Containerized() {
|
||||
Skip("Can not be run within a container.")
|
||||
}
|
||||
@ -193,6 +197,7 @@ var _ = Describe("Podman run networking", func() {
|
||||
})
|
||||
|
||||
It("podman run n user created network namespace with resolv.conf", func() {
|
||||
SkipIfRootless()
|
||||
if Containerized() {
|
||||
Skip("Can not be run within a container.")
|
||||
}
|
||||
|
@ -63,6 +63,7 @@ var _ = Describe("Podman run ns", func() {
|
||||
})
|
||||
|
||||
It("podman run ipcns ipcmk host test", func() {
|
||||
SkipIfRootless()
|
||||
setup := SystemExec("ipcmk", []string{"-M", "1024"})
|
||||
Expect(setup.ExitCode()).To(Equal(0))
|
||||
output := strings.Split(setup.OutputToString(), " ")
|
||||
@ -76,6 +77,7 @@ var _ = Describe("Podman run ns", func() {
|
||||
})
|
||||
|
||||
It("podman run ipcns ipcmk container test", func() {
|
||||
SkipIfRootless()
|
||||
setup := podmanTest.Podman([]string{"run", "-d", "--name", "test1", fedoraMinimal, "sleep", "999"})
|
||||
setup.WaitWithDefaultTimeout()
|
||||
Expect(setup.ExitCode()).To(Equal(0))
|
||||
|
@ -45,6 +45,7 @@ var _ = Describe("Podman privileged container tests", func() {
|
||||
})
|
||||
|
||||
It("podman privileged CapEff", func() {
|
||||
SkipIfRootless()
|
||||
cap := SystemExec("grep", []string{"CapEff", "/proc/self/status"})
|
||||
Expect(cap.ExitCode()).To(Equal(0))
|
||||
|
||||
@ -55,6 +56,7 @@ var _ = Describe("Podman privileged container tests", func() {
|
||||
})
|
||||
|
||||
It("podman cap-add CapEff", func() {
|
||||
SkipIfRootless()
|
||||
cap := SystemExec("grep", []string{"CapEff", "/proc/self/status"})
|
||||
Expect(cap.ExitCode()).To(Equal(0))
|
||||
|
||||
@ -80,6 +82,7 @@ var _ = Describe("Podman privileged container tests", func() {
|
||||
})
|
||||
|
||||
It("podman privileged should inherit host devices", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"run", "--privileged", ALPINE, "ls", "-l", "/dev"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
|
@ -112,6 +112,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
It("podman test selinux label /run/secrets", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"run", fedoraMinimal, "ls", "-dZ", "/run/secrets"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -144,6 +145,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
It("podman test selinux --privileged label /run/secrets", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"run", "--privileged", fedoraMinimal, "ls", "-dZ", "/run/secrets"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
|
@ -18,6 +18,7 @@ var _ = Describe("Podman run with --ip flag", func() {
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
SkipIfRootless()
|
||||
tempdir, err = CreateTempDirInTempDir()
|
||||
if err != nil {
|
||||
os.Exit(1)
|
||||
|
@ -47,6 +47,7 @@ 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/")
|
||||
podmanTest.RestoreArtifact(nginx)
|
||||
session := podmanTest.Podman([]string{"run", imageName, "ls"})
|
||||
@ -185,6 +186,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
It("podman run limits test", func() {
|
||||
SkipIfRootless()
|
||||
podmanTest.RestoreArtifact(fedoraMinimal)
|
||||
session := podmanTest.Podman([]string{"run", "--rm", "--ulimit", "rtprio=99", "--cap-add=sys_nice", fedoraMinimal, "cat", "/proc/self/sched"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
@ -211,6 +213,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
It("podman run with volume flag", func() {
|
||||
SkipIfRootless()
|
||||
Skip("Skip until we diagnose the regression of volume mounts")
|
||||
mountPath := filepath.Join(podmanTest.TempDir, "secrets")
|
||||
os.Mkdir(mountPath, 0755)
|
||||
@ -275,6 +278,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
It("podman run sysctl test", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"run", "--rm", "--sysctl", "net.core.somaxconn=65535", ALPINE, "sysctl", "net.core.somaxconn"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -282,6 +286,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
It("podman run blkio-weight test", func() {
|
||||
SkipIfRootless()
|
||||
if _, err := os.Stat("/sys/fs/cgroup/blkio/blkio.weight"); os.IsNotExist(err) {
|
||||
Skip("Kernel does not support blkio.weight")
|
||||
}
|
||||
@ -292,6 +297,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
It("podman run device-read-bps test", func() {
|
||||
SkipIfRootless()
|
||||
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))
|
||||
@ -299,6 +305,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
It("podman run device-write-bps test", func() {
|
||||
SkipIfRootless()
|
||||
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))
|
||||
@ -306,6 +313,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
It("podman run device-read-iops test", func() {
|
||||
SkipIfRootless()
|
||||
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))
|
||||
@ -313,6 +321,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
It("podman run device-write-iops test", func() {
|
||||
SkipIfRootless()
|
||||
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))
|
||||
@ -416,6 +425,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
It("podman run with FIPS mode secrets", func() {
|
||||
SkipIfRootless()
|
||||
fipsFile := "/etc/system-fips"
|
||||
err = ioutil.WriteFile(fipsFile, []byte{}, 0755)
|
||||
Expect(err).To(BeNil())
|
||||
@ -430,6 +440,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
It("podman run without group-add", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"run", "--rm", ALPINE, "id"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -437,6 +448,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
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))
|
||||
@ -444,6 +456,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
It("podman run with user (default)", func() {
|
||||
SkipIfRootless()
|
||||
session := podmanTest.Podman([]string{"run", "--rm", ALPINE, "id"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session.ExitCode()).To(Equal(0))
|
||||
@ -458,6 +471,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
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))
|
||||
@ -465,6 +479,7 @@ var _ = Describe("Podman run", func() {
|
||||
})
|
||||
|
||||
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))
|
||||
|
@ -18,6 +18,7 @@ var _ = Describe("Podman UserNS support", func() {
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
SkipIfRootless()
|
||||
tempdir, err = CreateTempDirInTempDir()
|
||||
if err != nil {
|
||||
os.Exit(1)
|
||||
|
@ -19,6 +19,7 @@ var _ = Describe("Podman stats", func() {
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
SkipIfRootless()
|
||||
tempdir, err = CreateTempDirInTempDir()
|
||||
if err != nil {
|
||||
os.Exit(1)
|
||||
|
@ -20,6 +20,7 @@ var _ = Describe("Podman systemd", func() {
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
SkipIfRootless()
|
||||
tempdir, err = CreateTempDirInTempDir()
|
||||
if err != nil {
|
||||
os.Exit(1)
|
||||
|
Reference in New Issue
Block a user