mirror of
https://github.com/containers/podman.git
synced 2025-09-22 20:56:21 +08:00

e2e test failures are rife with messages like: Expected 1 to equal 0 These make me cry. They're anti-helpful, requiring the reader to dive into the source code to figure out what those numbers mean. Solution: Go tests have a '.Should(Exit(NNN))' mechanism. I don't know if it spits out a better diagnostic (I have no way to run e2e tests on my laptop), but I have to fantasize that it will, and given the state of our flakes I assume that at least one test will fail and give me the opportunity to see what the error message looks like. THIS IS NOT REVIEWABLE CODE. There is no way for a human to review it. Don't bother. Maybe look at a few random ones for sanity. If you want to really review, here is a reproducer of what I did: cd test/e2e ! positive assertions. The second is the same as the first, ! with the addition of (unnecessary) parentheses because ! some invocations were written that way. The third is BeZero(). perl -pi -e 's/Expect\((\S+)\.ExitCode\(\)\)\.To\(Equal\((\d+)\)\)/Expect($1).Should(Exit($2))/' *_test.go perl -pi -e 's/Expect\((\S+)\.ExitCode\(\)\)\.To\(\(Equal\((\d+)\)\)\)/Expect($1).Should(Exit($2))/' *_test.go perl -pi -e 's/Expect\((\S+)\.ExitCode\(\)\)\.To\(BeZero\(\)\)/Expect($1).Should(Exit(0))/' *_test.go ! Same as above, but handles three non-numeric exit codes ! in run_exit_test.go perl -pi -e 's/Expect\((\S+)\.ExitCode\(\)\)\.To\(Equal\((\S+)\)\)/Expect($1).Should(Exit($2))/' *_test.go ! negative assertions. Difference is the spelling of 'To(Not)', ! 'ToNot', and 'NotTo'. I assume those are all the same. perl -pi -e 's/Expect\((\S+)\.ExitCode\(\)\)\.To\(Not\(Equal\((0)\)\)\)/Expect($1).To(ExitWithError())/' *_test.go perl -pi -e 's/Expect\((\S+)\.ExitCode\(\)\)\.ToNot\(Equal\((0)\)\)/Expect($1).To(ExitWithError())/' *_test.go perl -pi -e 's/Expect\((\S+)\.ExitCode\(\)\)\.NotTo\(Equal\((0)\)\)/Expect($1).To(ExitWithError())/' *_test.go ! negative, old use of BeZero() perl -pi -e 's/Expect\((\S+)\.ExitCode\(\)\)\.ToNot\(BeZero\(\)\)/Expect($1).Should(ExitWithError())/' *_test.go Run those on a clean copy of main branch (at the same branch point as my PR, of course), then diff against a checked-out copy of my PR. There should be no differences. Then all you have to review is that my replacements above are sane. UPDATE: nope, that's not enough, you also need to add gomega/gexec to the files that don't have it: perl -pi -e '$_ .= "$1/gexec\"\n" if m!^(.*/onsi/gomega)"!' $(grep -L gomega/gexec $(git log -1 --stat | awk '$1 ~ /test\/e2e\// { print $1}')) UPDATE 2: hand-edit run_volume_test.go UPDATE 3: sigh, add WaitWithDefaultTimeout() to a couple of places UPDATE 4: skip a test due to bug #10935 (race condition) Signed-off-by: Ed Santiago <santiago@redhat.com>
345 lines
11 KiB
Go
345 lines
11 KiB
Go
package integration
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"strings"
|
|
|
|
. "github.com/containers/podman/v3/test/utils"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
. "github.com/onsi/gomega/gexec"
|
|
)
|
|
|
|
var _ = Describe("Podman stop", func() {
|
|
var (
|
|
tempdir string
|
|
err error
|
|
podmanTest *PodmanTestIntegration
|
|
)
|
|
|
|
BeforeEach(func() {
|
|
tempdir, err = CreateTempDirInTempDir()
|
|
if err != nil {
|
|
os.Exit(1)
|
|
}
|
|
podmanTest = PodmanTestCreate(tempdir)
|
|
podmanTest.Setup()
|
|
podmanTest.SeedImages()
|
|
})
|
|
|
|
AfterEach(func() {
|
|
podmanTest.Cleanup()
|
|
f := CurrentGinkgoTestDescription()
|
|
processTestResult(f)
|
|
|
|
})
|
|
|
|
It("podman stop bogus container", func() {
|
|
session := podmanTest.Podman([]string{"stop", "foobar"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(125))
|
|
})
|
|
|
|
It("podman stop --ignore bogus container", func() {
|
|
session := podmanTest.RunTopContainer("")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
cid := session.OutputToString()
|
|
|
|
session = podmanTest.Podman([]string{"stop", "--ignore", "foobar", cid})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
output := session.OutputToString()
|
|
Expect(output).To(ContainSubstring(cid))
|
|
})
|
|
|
|
It("podman stop container by id", func() {
|
|
session := podmanTest.RunTopContainer("")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
cid := session.OutputToString()
|
|
session = podmanTest.Podman([]string{"stop", cid})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
|
|
finalCtrs := podmanTest.Podman([]string{"ps", "-q"})
|
|
finalCtrs.WaitWithDefaultTimeout()
|
|
Expect(finalCtrs).Should(Exit(0))
|
|
Expect(strings.TrimSpace(finalCtrs.OutputToString())).To(Equal(""))
|
|
})
|
|
|
|
It("podman stop container by name", func() {
|
|
session := podmanTest.RunTopContainer("test1")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
session = podmanTest.Podman([]string{"stop", "test1"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
|
|
finalCtrs := podmanTest.Podman([]string{"ps", "-q"})
|
|
finalCtrs.WaitWithDefaultTimeout()
|
|
Expect(finalCtrs).Should(Exit(0))
|
|
Expect(strings.TrimSpace(finalCtrs.OutputToString())).To(Equal(""))
|
|
})
|
|
|
|
It("podman container stop by name", func() {
|
|
session := podmanTest.RunTopContainer("test1")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
session = podmanTest.Podman([]string{"container", "stop", "test1"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
|
|
finalCtrs := podmanTest.Podman([]string{"ps", "-q"})
|
|
finalCtrs.WaitWithDefaultTimeout()
|
|
Expect(finalCtrs).Should(Exit(0))
|
|
Expect(strings.TrimSpace(finalCtrs.OutputToString())).To(Equal(""))
|
|
})
|
|
|
|
It("podman stop stopped container", func() {
|
|
session := podmanTest.RunTopContainer("test1")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
|
|
session2 := podmanTest.Podman([]string{"stop", "test1"})
|
|
session2.WaitWithDefaultTimeout()
|
|
Expect(session2).Should(Exit(0))
|
|
|
|
session3 := podmanTest.Podman([]string{"stop", "test1"})
|
|
session3.WaitWithDefaultTimeout()
|
|
Expect(session3).Should(Exit(0))
|
|
|
|
finalCtrs := podmanTest.Podman([]string{"ps", "-q"})
|
|
finalCtrs.WaitWithDefaultTimeout()
|
|
Expect(finalCtrs).Should(Exit(0))
|
|
Expect(strings.TrimSpace(finalCtrs.OutputToString())).To(Equal(""))
|
|
})
|
|
|
|
It("podman stop all containers -t", func() {
|
|
session := podmanTest.RunTopContainer("test1")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
cid1 := session.OutputToString()
|
|
|
|
session = podmanTest.RunTopContainer("test2")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
cid2 := session.OutputToString()
|
|
|
|
session = podmanTest.RunTopContainer("test3")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
cid3 := session.OutputToString()
|
|
|
|
session = podmanTest.Podman([]string{"stop", "-a", "-t", "1"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
output := session.OutputToString()
|
|
Expect(output).To(ContainSubstring(cid1))
|
|
Expect(output).To(ContainSubstring(cid2))
|
|
Expect(output).To(ContainSubstring(cid3))
|
|
|
|
finalCtrs := podmanTest.Podman([]string{"ps", "-q"})
|
|
finalCtrs.WaitWithDefaultTimeout()
|
|
Expect(finalCtrs).Should(Exit(0))
|
|
Expect(strings.TrimSpace(finalCtrs.OutputToString())).To(Equal(""))
|
|
})
|
|
|
|
It("podman stop container --time", func() {
|
|
session := podmanTest.RunTopContainer("test4")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
|
|
session = podmanTest.Podman([]string{"stop", "--time", "0", "test4"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
output := session.OutputToString()
|
|
Expect(output).To(ContainSubstring("test4"))
|
|
|
|
finalCtrs := podmanTest.Podman([]string{"ps", "-q"})
|
|
finalCtrs.WaitWithDefaultTimeout()
|
|
Expect(finalCtrs).Should(Exit(0))
|
|
Expect(strings.TrimSpace(finalCtrs.OutputToString())).To(Equal(""))
|
|
})
|
|
|
|
It("podman stop container --timeout", func() {
|
|
session := podmanTest.Podman([]string{"run", "-d", "--name", "test5", ALPINE, "sleep", "100"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
session = podmanTest.Podman([]string{"stop", "--timeout", "0", "test5"})
|
|
// Without timeout container stops in 10 seconds
|
|
// If not stopped in 5 seconds, then --timeout did not work
|
|
session.Wait(5)
|
|
Expect(session).Should(Exit(0))
|
|
output := session.OutputToString()
|
|
Expect(output).To(ContainSubstring("test5"))
|
|
|
|
finalCtrs := podmanTest.Podman([]string{"ps", "-q"})
|
|
finalCtrs.WaitWithDefaultTimeout()
|
|
Expect(finalCtrs).Should(Exit(0))
|
|
Expect(strings.TrimSpace(finalCtrs.OutputToString())).To(Equal(""))
|
|
})
|
|
|
|
It("podman stop latest containers", func() {
|
|
SkipIfRemote("--latest flag n/a")
|
|
session := podmanTest.RunTopContainer("test1")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
session = podmanTest.Podman([]string{"stop", "-l", "-t", "1"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
finalCtrs := podmanTest.Podman([]string{"ps", "-q"})
|
|
finalCtrs.WaitWithDefaultTimeout()
|
|
Expect(finalCtrs).Should(Exit(0))
|
|
Expect(strings.TrimSpace(finalCtrs.OutputToString())).To(Equal(""))
|
|
})
|
|
|
|
It("podman stop all containers with one stopped", func() {
|
|
session := podmanTest.RunTopContainer("test1")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
session2 := podmanTest.RunTopContainer("test2")
|
|
session2.WaitWithDefaultTimeout()
|
|
Expect(session2).Should(Exit(0))
|
|
cid := "-l"
|
|
if IsRemote() {
|
|
cid = "test2"
|
|
}
|
|
session3 := podmanTest.Podman([]string{"stop", cid, "-t", "1"})
|
|
session3.WaitWithDefaultTimeout()
|
|
Expect(session3).Should(Exit(0))
|
|
session4 := podmanTest.Podman([]string{"stop", "-a", "-t", "1"})
|
|
session4.WaitWithDefaultTimeout()
|
|
Expect(session4).Should(Exit(0))
|
|
finalCtrs := podmanTest.Podman([]string{"ps", "-q"})
|
|
finalCtrs.WaitWithDefaultTimeout()
|
|
Expect(finalCtrs).Should(Exit(0))
|
|
Expect(strings.TrimSpace(finalCtrs.OutputToString())).To(Equal(""))
|
|
})
|
|
|
|
It("podman stop all containers with one created", func() {
|
|
session := podmanTest.RunTopContainer("test1")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
session2 := podmanTest.Podman([]string{"create", ALPINE, "/bin/sh"})
|
|
session2.WaitWithDefaultTimeout()
|
|
Expect(session2).Should(Exit(0))
|
|
session3 := podmanTest.Podman([]string{"stop", "-a", "-t", "1"})
|
|
session3.WaitWithDefaultTimeout()
|
|
Expect(session3).Should(Exit(0))
|
|
finalCtrs := podmanTest.Podman([]string{"ps", "-q"})
|
|
finalCtrs.WaitWithDefaultTimeout()
|
|
Expect(finalCtrs).Should(Exit(0))
|
|
Expect(strings.TrimSpace(finalCtrs.OutputToString())).To(Equal(""))
|
|
})
|
|
|
|
It("podman stop --cidfile", func() {
|
|
|
|
tmpDir, err := ioutil.TempDir("", "")
|
|
Expect(err).To(BeNil())
|
|
tmpFile := tmpDir + "cid"
|
|
|
|
defer os.RemoveAll(tmpDir)
|
|
|
|
session := podmanTest.Podman([]string{"create", "--cidfile", tmpFile, ALPINE, "top"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
cid := session.OutputToStringArray()[0]
|
|
|
|
session = podmanTest.Podman([]string{"start", cid})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
|
|
result := podmanTest.Podman([]string{"stop", "--cidfile", tmpFile})
|
|
result.WaitWithDefaultTimeout()
|
|
Expect(result).Should(Exit(0))
|
|
output := result.OutputToString()
|
|
Expect(output).To(ContainSubstring(cid))
|
|
})
|
|
|
|
It("podman stop multiple --cidfile", func() {
|
|
|
|
tmpDir, err := ioutil.TempDir("", "")
|
|
Expect(err).To(BeNil())
|
|
tmpFile1 := tmpDir + "cid-1"
|
|
tmpFile2 := tmpDir + "cid-2"
|
|
|
|
defer os.RemoveAll(tmpDir)
|
|
|
|
session := podmanTest.Podman([]string{"run", "--cidfile", tmpFile1, "-d", ALPINE, "top"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
cid1 := session.OutputToStringArray()[0]
|
|
Expect(podmanTest.NumberOfContainers()).To(Equal(1))
|
|
|
|
session = podmanTest.Podman([]string{"run", "--cidfile", tmpFile2, "-d", ALPINE, "top"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
cid2 := session.OutputToStringArray()[0]
|
|
Expect(podmanTest.NumberOfContainers()).To(Equal(2))
|
|
|
|
result := podmanTest.Podman([]string{"stop", "--cidfile", tmpFile1, "--cidfile", tmpFile2})
|
|
result.WaitWithDefaultTimeout()
|
|
Expect(result).Should(Exit(0))
|
|
output := result.OutputToString()
|
|
Expect(output).To(ContainSubstring(cid1))
|
|
Expect(output).To(ContainSubstring(cid2))
|
|
Expect(podmanTest.NumberOfContainers()).To(Equal(2))
|
|
})
|
|
|
|
It("podman stop invalid --latest and --cidfile and --all", func() {
|
|
SkipIfRemote("--latest flag n/a")
|
|
|
|
result := podmanTest.Podman([]string{"stop", "--cidfile", "foobar", "--latest"})
|
|
result.WaitWithDefaultTimeout()
|
|
Expect(result).Should(Exit(125))
|
|
|
|
result = podmanTest.Podman([]string{"stop", "--cidfile", "foobar", "--all"})
|
|
result.WaitWithDefaultTimeout()
|
|
Expect(result).Should(Exit(125))
|
|
|
|
result = podmanTest.Podman([]string{"stop", "--cidfile", "foobar", "--all", "--latest"})
|
|
result.WaitWithDefaultTimeout()
|
|
Expect(result).Should(Exit(125))
|
|
|
|
result = podmanTest.Podman([]string{"stop", "--latest", "--all"})
|
|
result.WaitWithDefaultTimeout()
|
|
Expect(result).Should(Exit(125))
|
|
})
|
|
|
|
It("podman stop --all", func() {
|
|
session := podmanTest.RunTopContainer("")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
Expect(podmanTest.NumberOfContainersRunning()).To(Equal(1))
|
|
|
|
session = podmanTest.RunTopContainer("")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
Expect(podmanTest.NumberOfContainersRunning()).To(Equal(2))
|
|
|
|
session = podmanTest.Podman([]string{"stop", "--all"})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
Expect(podmanTest.NumberOfContainersRunning()).To(Equal(0))
|
|
})
|
|
|
|
It("podman stop --ignore", func() {
|
|
session := podmanTest.RunTopContainer("")
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
cid := session.OutputToString()
|
|
Expect(podmanTest.NumberOfContainersRunning()).To(Equal(1))
|
|
|
|
session = podmanTest.Podman([]string{"stop", "bogus", cid})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(125))
|
|
|
|
session = podmanTest.Podman([]string{"stop", "--ignore", "bogus", cid})
|
|
session.WaitWithDefaultTimeout()
|
|
Expect(session).Should(Exit(0))
|
|
Expect(podmanTest.NumberOfContainersRunning()).To(Equal(0))
|
|
})
|
|
})
|