mirror of
https://github.com/containers/podman.git
synced 2025-05-20 08:36:23 +08:00

Ongoing steps toward RUN-1907: replace Exit(0) with ExitCleanly() A handful of test files with trivial command-line replacement, and no manual muckery (aside from includes). Signed-off-by: Ed Santiago <santiago@redhat.com>
37 lines
1.2 KiB
Go
37 lines
1.2 KiB
Go
package integration
|
|
|
|
import (
|
|
. "github.com/containers/podman/v4/test/utils"
|
|
"github.com/containers/storage/pkg/stringid"
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
. "github.com/onsi/gomega/gexec"
|
|
)
|
|
|
|
var _ = Describe("Podman run with --mac-address flag", func() {
|
|
|
|
It("Podman run --mac-address", func() {
|
|
result := podmanTest.Podman([]string{"run", "--mac-address", "92:d0:c6:0a:29:34", ALPINE, "ip", "addr"})
|
|
result.WaitWithDefaultTimeout()
|
|
if isRootless() {
|
|
Expect(result).Should(Exit(125))
|
|
} else {
|
|
Expect(result).Should(ExitCleanly())
|
|
Expect(result.OutputToString()).To(ContainSubstring("92:d0:c6:0a:29:34"))
|
|
}
|
|
})
|
|
|
|
It("Podman run --mac-address with custom network", func() {
|
|
net := "n1" + stringid.GenerateRandomID()
|
|
session := podmanTest.Podman([]string{"network", "create", net})
|
|
session.WaitWithDefaultTimeout()
|
|
defer podmanTest.removeNetwork(net)
|
|
Expect(session).Should(ExitCleanly())
|
|
|
|
result := podmanTest.Podman([]string{"run", "--network", net, "--mac-address", "92:d0:c6:00:29:34", ALPINE, "ip", "addr"})
|
|
result.WaitWithDefaultTimeout()
|
|
Expect(result).Should(ExitCleanly())
|
|
Expect(result.OutputToString()).To(ContainSubstring("92:d0:c6:00:29:34"))
|
|
})
|
|
})
|