Merge pull request #20620 from baude/codecleanup

Automatic code cleanups - JetBrains
This commit is contained in:
openshift-merge-bot[bot]
2023-11-08 22:14:36 +00:00
committed by GitHub
28 changed files with 63 additions and 63 deletions

View File

@ -39,11 +39,11 @@ func TestPodOptions(t *testing.T) {
areEqual = podField.Interface().([]string)[i] == w areEqual = podField.Interface().([]string)[i] == w
} }
case reflect.String: case reflect.String:
areEqual = (podField.String() == containerField.String()) areEqual = podField.String() == containerField.String()
case reflect.Bool: case reflect.Bool:
areEqual = (podField.Bool() == containerField.Bool()) areEqual = podField.Bool() == containerField.Bool()
case reflect.Ptr: case reflect.Ptr:
areEqual = (reflect.DeepEqual(podField.Elem().Interface(), containerField.Elem().Interface())) areEqual = reflect.DeepEqual(podField.Elem().Interface(), containerField.Elem().Interface())
} }
} }
assert.True(t, areEqual) assert.True(t, areEqual)

View File

@ -123,7 +123,7 @@ func restore(cmd *cobra.Command, args []string) error {
} }
} }
notImport := (!restoreOptions.CheckpointImage && restoreOptions.Import == "") notImport := !restoreOptions.CheckpointImage && restoreOptions.Import == ""
if notImport && restoreOptions.ImportPrevious != "" { if notImport && restoreOptions.ImportPrevious != "" {
return fmt.Errorf("--import-previous can only be used with image or --import") return fmt.Errorf("--import-previous can only be used with image or --import")

View File

@ -207,7 +207,7 @@ func (s *containerStats) AVGCPU() string {
} }
func (s *containerStats) Up() string { func (s *containerStats) Up() string {
return (s.UpTime.String()) return s.UpTime.String()
} }
func (s *containerStats) MemPerc() string { func (s *containerStats) MemPerc() string {

View File

@ -12,7 +12,7 @@ import (
"github.com/containers/podman/v4/libpod/driver" "github.com/containers/podman/v4/libpod/driver"
"github.com/containers/podman/v4/pkg/util" "github.com/containers/podman/v4/pkg/util"
"github.com/containers/storage/types" "github.com/containers/storage/types"
units "github.com/docker/go-units" "github.com/docker/go-units"
spec "github.com/opencontainers/runtime-spec/specs-go" spec "github.com/opencontainers/runtime-spec/specs-go"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
) )

View File

@ -120,7 +120,7 @@ func ListContainers(w http.ResponseWriter, r *http.Request) {
filterFuncs := make([]libpod.ContainerFilter, 0, len(*filterMap)) filterFuncs := make([]libpod.ContainerFilter, 0, len(*filterMap))
all := query.All || query.Limit > 0 all := query.All || query.Limit > 0
if len((*filterMap)) > 0 { if len(*filterMap) > 0 {
for k, v := range *filterMap { for k, v := range *filterMap {
generatedFunc, err := filters.GenerateContainerFilterFuncs(k, v, runtime) generatedFunc, err := filters.GenerateContainerFilterFuncs(k, v, runtime)
if err != nil { if err != nil {

View File

@ -112,7 +112,7 @@ var _ = Describe("Podman images", func() {
Expect(code).To(BeNumerically("==", http.StatusNotFound)) Expect(code).To(BeNumerically("==", http.StatusNotFound))
// Start a container with alpine image // Start a container with alpine image
var top string = "top" var top = "top"
_, err = bt.RunTopContainer(&top, nil) _, err = bt.RunTopContainer(&top, nil)
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
// we should now have a container called "top" running // we should now have a container called "top" running

View File

@ -76,7 +76,7 @@ var _ = Describe("Podman pods", func() {
Expect(podSummary[0].Containers).To(HaveLen(2)) Expect(podSummary[0].Containers).To(HaveLen(2))
// Add multiple pods and verify them by name and size. // Add multiple pods and verify them by name and size.
var newpod2 string = "newpod2" var newpod2 = "newpod2"
bt.Podcreate(&newpod2) bt.Podcreate(&newpod2)
podSummary, err = pods.List(bt.conn, nil) podSummary, err = pods.List(bt.conn, nil)
Expect(err).ToNot(HaveOccurred(), "Error from pods.List") Expect(err).ToNot(HaveOccurred(), "Error from pods.List")
@ -218,7 +218,7 @@ var _ = Describe("Podman pods", func() {
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
portPublish := fmt.Sprintf("%d:%d", randomport, randomport) portPublish := fmt.Sprintf("%d:%d", randomport, randomport)
var podwithport string = "newpodwithport" var podwithport = "newpodwithport"
bt.PodcreateAndExpose(&podwithport, &portPublish) bt.PodcreateAndExpose(&podwithport, &portPublish)
// Start pod and expose port 12345 // Start pod and expose port 12345
@ -226,7 +226,7 @@ var _ = Describe("Podman pods", func() {
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
// Start another pod and expose same port 12345 // Start another pod and expose same port 12345
var podwithport2 string = "newpodwithport2" var podwithport2 = "newpodwithport2"
bt.PodcreateAndExpose(&podwithport2, &portPublish) bt.PodcreateAndExpose(&podwithport2, &portPublish)
_, err = pods.Start(bt.conn, podwithport2, nil) _, err = pods.Start(bt.conn, podwithport2, nil)
@ -298,7 +298,7 @@ var _ = Describe("Podman pods", func() {
// Test to validate all the pods in the stopped/exited state are pruned successfully. // Test to validate all the pods in the stopped/exited state are pruned successfully.
It("prune pod", func() { It("prune pod", func() {
// Add a new pod // Add a new pod
var newpod2 string = "newpod2" var newpod2 = "newpod2"
bt.Podcreate(&newpod2) bt.Podcreate(&newpod2)
// No pods pruned since no pod in exited state // No pods pruned since no pod in exited state
pruneResponse, err := pods.Prune(bt.conn, nil) pruneResponse, err := pods.Prune(bt.conn, nil)
@ -376,7 +376,7 @@ var _ = Describe("Podman pods", func() {
// Test validates the pod top bindings // Test validates the pod top bindings
It("pod top", func() { It("pod top", func() {
var name string = "podA" var name = "podA"
bt.Podcreate(&name) bt.Podcreate(&name)
_, err := pods.Start(bt.conn, name, nil) _, err := pods.Start(bt.conn, name, nil)

View File

@ -40,7 +40,7 @@ func (ir *ImageEngine) fetchInfo(_ context.Context) (os, arch, variant string, n
os, arch, variant = lplatform.Normalize(os, arch, variant) os, arch, variant = lplatform.Normalize(os, arch, variant)
nativePlatform = os + "/" + arch nativePlatform = os + "/" + arch
if variant != "" { if variant != "" {
nativePlatform += ("/" + variant) nativePlatform += "/" + variant
} }
emulatedPlatforms = emulation.Registered() emulatedPlatforms = emulation.Registered()
return os, arch, variant, append([]string{}, nativePlatform), emulatedPlatforms, nil return os, arch, variant, append([]string{}, nativePlatform), emulatedPlatforms, nil

View File

@ -845,7 +845,7 @@ func transferRootful(source entities.ImageScpOptions, dest entities.ImageScpOpti
if err != nil { if err != nil {
return err return err
} }
out, err := execTransferPodman(uLoad, loadCommand, (len(dest.Tag) > 0)) out, err := execTransferPodman(uLoad, loadCommand, len(dest.Tag) > 0)
if err != nil { if err != nil {
return err return err
} }

View File

@ -7,7 +7,7 @@ import (
"github.com/containers/podman/v4/libpod" "github.com/containers/podman/v4/libpod"
"github.com/containers/podman/v4/libpod/define" "github.com/containers/podman/v4/libpod/define"
units "github.com/docker/go-units" "github.com/docker/go-units"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
) )

View File

@ -20,7 +20,7 @@ import (
"math/big" "math/big"
"strconv" "strconv"
inf "gopkg.in/inf.v0" "gopkg.in/inf.v0"
) )
// Scale is used for getting and setting the base-10 scaled value. // Scale is used for getting and setting the base-10 scaled value.

View File

@ -19,7 +19,7 @@ package resource
import ( import (
"math/big" "math/big"
inf "gopkg.in/inf.v0" "gopkg.in/inf.v0"
) )
const ( const (

View File

@ -25,7 +25,7 @@ import (
"strconv" "strconv"
"strings" "strings"
inf "gopkg.in/inf.v0" "gopkg.in/inf.v0"
) )
// Quantity is a fixed-point representation of a number. // Quantity is a fixed-point representation of a number.

View File

@ -22,7 +22,7 @@ import (
var originalHomeDir = os.Getenv("HOME") var originalHomeDir = os.Getenv("HOME")
const ( const (
defaultTimeout time.Duration = 90 * time.Second defaultTimeout = 90 * time.Second
) )
type machineCommand interface { type machineCommand interface {

View File

@ -25,7 +25,7 @@ func TestMain(m *testing.M) {
} }
const ( const (
defaultStream machine.FCOSStream = machine.Testing defaultStream = machine.Testing
) )
var ( var (

View File

@ -46,7 +46,7 @@ var _ = Describe("podman machine stop", func() {
// Stopping it again should not result in an error // Stopping it again should not result in an error
stopAgain, err := mb.setCmd(stop).run() stopAgain, err := mb.setCmd(stop).run()
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(stopAgain).To(Exit((0))) Expect(stopAgain).To(Exit(0))
Expect(stopAgain.outputToString()).To(ContainSubstring(fmt.Sprintf("Machine \"%s\" stopped successfully", name))) Expect(stopAgain.outputToString()).To(ContainSubstring(fmt.Sprintf("Machine \"%s\" stopped successfully", name)))
// Stopping a machine should update the last up time // Stopping a machine should update the last up time

View File

@ -18,7 +18,7 @@ import (
"github.com/coreos/stream-metadata-go/fedoracoreos" "github.com/coreos/stream-metadata-go/fedoracoreos"
"github.com/coreos/stream-metadata-go/release" "github.com/coreos/stream-metadata-go/release"
"github.com/coreos/stream-metadata-go/stream" "github.com/coreos/stream-metadata-go/stream"
digest "github.com/opencontainers/go-digest" "github.com/opencontainers/go-digest"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
) )

View File

@ -232,7 +232,7 @@ func MakeContainer(ctx context.Context, rt *libpod.Runtime, s *specgen.SpecGener
return nil, nil, nil, err return nil, nil, nil, err
} }
infraVol := (len(compatibleOptions.Mounts) > 0 || len(compatibleOptions.Volumes) > 0 || len(compatibleOptions.ImageVolumes) > 0 || len(compatibleOptions.OverlayVolumes) > 0) infraVol := len(compatibleOptions.Mounts) > 0 || len(compatibleOptions.Volumes) > 0 || len(compatibleOptions.ImageVolumes) > 0 || len(compatibleOptions.OverlayVolumes) > 0
opts, err := createContainerOptions(rt, s, pod, finalVolumes, finalOverlays, imageData, command, infraVol, *compatibleOptions) opts, err := createContainerOptions(rt, s, pod, finalVolumes, finalOverlays, imageData, command, infraVol, *compatibleOptions)
if err != nil { if err != nil {
return nil, nil, nil, err return nil, nil, nil, err

View File

@ -589,7 +589,7 @@ func ToSpecGen(ctx context.Context, opts *CtrSpecGenOptions) (*specgen.SpecGener
} }
if ro := opts.ReadOnly; ro != itypes.OptionalBoolUndefined { if ro := opts.ReadOnly; ro != itypes.OptionalBoolUndefined {
s.ReadOnlyFilesystem = (ro == itypes.OptionalBoolTrue) s.ReadOnlyFilesystem = ro == itypes.OptionalBoolTrue
} }
// This should default to true for kubernetes yaml // This should default to true for kubernetes yaml
s.ReadWriteTmpfs = true s.ReadWriteTmpfs = true
@ -785,7 +785,7 @@ func makeHealthCheck(inCmd string, interval int32, retries int32, timeout int32,
// kubernetes interval defaults to 10 sec and cannot be less than 1 // kubernetes interval defaults to 10 sec and cannot be less than 1
interval = 10 interval = 10
} }
hc.Interval = (time.Duration(interval) * time.Second) hc.Interval = time.Duration(interval) * time.Second
if retries < 1 { if retries < 1 {
// kubernetes retries defaults to 3 // kubernetes retries defaults to 3
retries = 3 retries = 3
@ -795,13 +795,13 @@ func makeHealthCheck(inCmd string, interval int32, retries int32, timeout int32,
// kubernetes timeout defaults to 1 // kubernetes timeout defaults to 1
timeout = 1 timeout = 1
} }
timeoutDuration := (time.Duration(timeout) * time.Second) timeoutDuration := time.Duration(timeout) * time.Second
if timeoutDuration < time.Duration(1) { if timeoutDuration < time.Duration(1) {
return nil, errors.New("healthcheck-timeout must be at least 1 second") return nil, errors.New("healthcheck-timeout must be at least 1 second")
} }
hc.Timeout = timeoutDuration hc.Timeout = timeoutDuration
startPeriodDuration := (time.Duration(startPeriod) * time.Second) startPeriodDuration := time.Duration(startPeriod) * time.Second
if startPeriodDuration < time.Duration(0) { if startPeriodDuration < time.Duration(0) {
return nil, errors.New("healthcheck-start-period must be 0 seconds or greater") return nil, errors.New("healthcheck-start-period must be 0 seconds or greater")
} }

View File

@ -292,7 +292,7 @@ var _ = Describe("Verify podman containers.conf usage", func() {
session = podmanTest.Podman([]string{"run", "--rm", "--net", "host", fedoraMinimal, "cat", "/proc/sys/net/ipv4/ping_group_range"}) session = podmanTest.Podman([]string{"run", "--rm", "--net", "host", fedoraMinimal, "cat", "/proc/sys/net/ipv4/ping_group_range"})
session.WaitWithDefaultTimeout() session.WaitWithDefaultTimeout()
Expect(session).Should(ExitCleanly()) Expect(session).Should(ExitCleanly())
Expect(session.OutputToString()).ToNot((ContainSubstring("1000"))) Expect(session.OutputToString()).ToNot(ContainSubstring("1000"))
}) })
It("search domain", func() { It("search domain", func() {

View File

@ -6,7 +6,7 @@ import (
"path/filepath" "path/filepath"
"time" "time"
define "github.com/containers/podman/v4/libpod/define" "github.com/containers/podman/v4/libpod/define"
. "github.com/containers/podman/v4/test/utils" . "github.com/containers/podman/v4/test/utils"
. "github.com/onsi/ginkgo/v2" . "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega" . "github.com/onsi/gomega"

View File

@ -81,7 +81,7 @@ LABEL marge=mom
cwd, err := os.Getwd() cwd, err := os.Getwd()
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(os.Chdir(yamlDir)).To(Succeed()) Expect(os.Chdir(yamlDir)).To(Succeed())
defer func() { (Expect(os.Chdir(cwd)).To(BeNil())) }() defer func() { Expect(os.Chdir(cwd)).To(Succeed()) }()
session := podmanTest.Podman([]string{"kube", "play", "top.yaml"}) session := podmanTest.Podman([]string{"kube", "play", "top.yaml"})
session.WaitWithDefaultTimeout() session.WaitWithDefaultTimeout()
@ -118,7 +118,7 @@ LABEL marge=mom
cwd, err := os.Getwd() cwd, err := os.Getwd()
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(os.Chdir(yamlDir)).To(Succeed()) Expect(os.Chdir(yamlDir)).To(Succeed())
defer func() { (Expect(os.Chdir(cwd)).To(BeNil())) }() defer func() { Expect(os.Chdir(cwd)).To(Succeed()) }()
session := podmanTest.Podman([]string{"kube", "play", "top.yaml"}) session := podmanTest.Podman([]string{"kube", "play", "top.yaml"})
session.WaitWithDefaultTimeout() session.WaitWithDefaultTimeout()
@ -163,7 +163,7 @@ LABEL marge=mom
cwd, err := os.Getwd() cwd, err := os.Getwd()
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(os.Chdir(yamlDir)).To(Succeed()) Expect(os.Chdir(yamlDir)).To(Succeed())
defer func() { (Expect(os.Chdir(cwd)).To(BeNil())) }() defer func() { Expect(os.Chdir(cwd)).To(Succeed()) }()
// Build the image into the local store // Build the image into the local store
build := podmanTest.Podman([]string{"build", "-t", "foobar", "-f", "Containerfile"}) build := podmanTest.Podman([]string{"build", "-t", "foobar", "-f", "Containerfile"})
@ -210,7 +210,7 @@ LABEL marge=mom
cwd, err := os.Getwd() cwd, err := os.Getwd()
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(os.Chdir(yamlDir)).To(Succeed()) Expect(os.Chdir(yamlDir)).To(Succeed())
defer func() { (Expect(os.Chdir(cwd)).To(BeNil())) }() defer func() { Expect(os.Chdir(cwd)).To(Succeed()) }()
// Build the image into the local store // Build the image into the local store
build := podmanTest.Podman([]string{"build", "-t", "foobar", "-f", "Containerfile"}) build := podmanTest.Podman([]string{"build", "-t", "foobar", "-f", "Containerfile"})
@ -257,7 +257,7 @@ LABEL marge=mom
cwd, err := os.Getwd() cwd, err := os.Getwd()
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(os.Chdir(yamlDir)).To(Succeed()) Expect(os.Chdir(yamlDir)).To(Succeed())
defer func() { (Expect(os.Chdir(cwd)).To(BeNil())) }() defer func() { Expect(os.Chdir(cwd)).To(Succeed()) }()
// Build the image into the local store // Build the image into the local store
build := podmanTest.Podman([]string{"build", "-t", "foobar", "-f", "Containerfile"}) build := podmanTest.Podman([]string{"build", "-t", "foobar", "-f", "Containerfile"})
@ -347,7 +347,7 @@ echo GOT-HERE
cwd, err := os.Getwd() cwd, err := os.Getwd()
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(os.Chdir(yamlDir)).To(Succeed()) Expect(os.Chdir(yamlDir)).To(Succeed())
defer func() { (Expect(os.Chdir(cwd)).To(BeNil())) }() defer func() { Expect(os.Chdir(cwd)).To(Succeed()) }()
session := podmanTest.Podman([]string{"kube", "play", "echo.yaml"}) session := podmanTest.Podman([]string{"kube", "play", "echo.yaml"})
session.WaitWithDefaultTimeout() session.WaitWithDefaultTimeout()

View File

@ -3820,11 +3820,11 @@ spec:
podmanTest.CgroupManager = "systemd" podmanTest.CgroupManager = "systemd"
var ( var (
numReplicas int32 = 3 numReplicas int32 = 3
expectedCPURequest string = "100m" expectedCPURequest = "100m"
expectedCPULimit string = "200m" expectedCPULimit = "200m"
expectedMemoryRequest string = "10000000" expectedMemoryRequest = "10000000"
expectedMemoryLimit string = "20000000" expectedMemoryLimit = "20000000"
) )
expectedCPUQuota := milliCPUToQuota(expectedCPULimit) expectedCPUQuota := milliCPUToQuota(expectedCPULimit)
@ -3869,7 +3869,7 @@ MemoryReservation: {{ .HostConfig.MemoryReservation }}`})
podmanTest.CgroupManager = "systemd" podmanTest.CgroupManager = "systemd"
var ( var (
expectedCPULimit string = "1" expectedCPULimit = "1"
) )
deployment := getDeployment( deployment := getDeployment(

View File

@ -424,7 +424,7 @@ var _ = Describe("Podman pod create", func() {
session = podmanTest.Podman([]string{"pod", "inspect", "--format", "{{.NumContainers}}", session.OutputToString()}) session = podmanTest.Podman([]string{"pod", "inspect", "--format", "{{.NumContainers}}", session.OutputToString()})
session.WaitWithDefaultTimeout() session.WaitWithDefaultTimeout()
Expect(session).Should(ExitCleanly()) Expect(session).Should(ExitCleanly())
Expect(session.OutputToString()).Should((Equal("0"))) Expect(session.OutputToString()).Should(Equal("0"))
}) })
} }

View File

@ -94,7 +94,7 @@ var _ = Describe("Podman run device", func() {
// verify --privileged is required // verify --privileged is required
session2 := podmanTest.Podman([]string{"run", ALPINE, "test", "-c", "/dev/kmsg"}) session2 := podmanTest.Podman([]string{"run", ALPINE, "test", "-c", "/dev/kmsg"})
session2.WaitWithDefaultTimeout() session2.WaitWithDefaultTimeout()
Expect(session2).Should((Exit(1))) Expect(session2).Should(Exit(1))
}) })
It("podman run CDI device test", func() { It("podman run CDI device test", func() {

View File

@ -116,7 +116,7 @@ USER 1000`, ALPINE)
run = podmanTest.Podman([]string{"run", "--passwd=false", "--user", "1234:1234", ALPINE, "cat", "/etc/passwd"}) run = podmanTest.Podman([]string{"run", "--passwd=false", "--user", "1234:1234", ALPINE, "cat", "/etc/passwd"})
run.WaitWithDefaultTimeout() run.WaitWithDefaultTimeout()
Expect(run).Should(ExitCleanly()) Expect(run).Should(ExitCleanly())
Expect(run.OutputToString()).NotTo((ContainSubstring("1234:1234"))) Expect(run.OutputToString()).NotTo(ContainSubstring("1234:1234"))
}) })
It("podman run --passwd-entry flag", func() { It("podman run --passwd-entry flag", func() {

View File

@ -1584,7 +1584,7 @@ VOLUME %s`, ALPINE, volPath, volPath)
curCgroupsBytes, err := os.ReadFile("/proc/self/cgroup") curCgroupsBytes, err := os.ReadFile("/proc/self/cgroup")
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
var curCgroups string = string(curCgroupsBytes) var curCgroups = string(curCgroupsBytes)
GinkgoWriter.Printf("Output:\n%s\n", curCgroups) GinkgoWriter.Printf("Output:\n%s\n", curCgroups)
Expect(curCgroups).To(Not(Equal(""))) Expect(curCgroups).To(Not(Equal("")))
@ -1601,7 +1601,7 @@ VOLUME %s`, ALPINE, volPath, volPath)
ctrCgroupsBytes, err := os.ReadFile(fmt.Sprintf("/proc/%d/cgroup", pid)) ctrCgroupsBytes, err := os.ReadFile(fmt.Sprintf("/proc/%d/cgroup", pid))
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
var ctrCgroups string = string(ctrCgroupsBytes) var ctrCgroups = string(ctrCgroupsBytes)
GinkgoWriter.Printf("Output\n:%s\n", ctrCgroups) GinkgoWriter.Printf("Output\n:%s\n", ctrCgroups)
Expect(curCgroups).To(Not(Equal(ctrCgroups))) Expect(curCgroups).To(Not(Equal(ctrCgroups)))
}) })

View File

@ -182,11 +182,11 @@ var _ = Describe("Toolbox-specific testing", func() {
SkipIfNotRootless("only meaningful when run rootless") SkipIfNotRootless("only meaningful when run rootless")
var session *PodmanSessionIntegration var session *PodmanSessionIntegration
var username string = "testuser" var username = "testuser"
var homeDir string = "/home/testuser" var homeDir = "/home/testuser"
var shell string = "/bin/sh" var shell = "/bin/sh"
var uid string = "1001" var uid = "1001"
var gid string = "1001" var gid = "1001"
useradd := fmt.Sprintf("useradd --home-dir %s --shell %s --uid %s %s", useradd := fmt.Sprintf("useradd --home-dir %s --shell %s --uid %s %s",
homeDir, shell, uid, username) homeDir, shell, uid, username)
@ -222,8 +222,8 @@ var _ = Describe("Toolbox-specific testing", func() {
SkipIfNotRootless("only meaningful when run rootless") SkipIfNotRootless("only meaningful when run rootless")
var session *PodmanSessionIntegration var session *PodmanSessionIntegration
var groupName string = "testgroup" var groupName = "testgroup"
var gid string = "1001" var gid = "1001"
groupadd := fmt.Sprintf("groupadd --gid %s %s", gid, groupName) groupadd := fmt.Sprintf("groupadd --gid %s %s", gid, groupName)
@ -252,15 +252,15 @@ var _ = Describe("Toolbox-specific testing", func() {
It("podman create --userns=keep-id - entrypoint - modifying existing user with usermod - add to new group, change home/shell/uid", func() { It("podman create --userns=keep-id - entrypoint - modifying existing user with usermod - add to new group, change home/shell/uid", func() {
SkipIfNotRootless("only meaningful when run rootless") SkipIfNotRootless("only meaningful when run rootless")
var session *PodmanSessionIntegration var session *PodmanSessionIntegration
var badHomeDir string = "/home/badtestuser" var badHomeDir = "/home/badtestuser"
var badShell string = "/bin/sh" var badShell = "/bin/sh"
var badUID string = "1001" var badUID = "1001"
var username string = "testuser" var username = "testuser"
var homeDir string = "/home/testuser" var homeDir = "/home/testuser"
var shell string = "/bin/bash" var shell = "/bin/bash"
var uid string = "1411" var uid = "1411"
var groupName string = "testgroup" var groupName = "testgroup"
var gid string = "1422" var gid = "1422"
// The use of bad* in the name of variables does not imply the invocation // The use of bad* in the name of variables does not imply the invocation
// of useradd should fail The user is supposed to be created successfully // of useradd should fail The user is supposed to be created successfully