summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-11-24 18:48:32 +0100
committerGitHub <noreply@github.com>2020-11-24 18:48:32 +0100
commit850bdd236ad3047695a479e1fa174267eb6f1825 (patch)
treec7107aa13094207ff73eef3abd5a428141641014 /test
parent4ebd9d9191606319f618d6e7e552256c07fff2c4 (diff)
parent9602e290de75bdd7fb5b42f6d36069dd19271735 (diff)
downloadpodman-850bdd236ad3047695a479e1fa174267eb6f1825.tar.gz
podman-850bdd236ad3047695a479e1fa174267eb6f1825.tar.bz2
podman-850bdd236ad3047695a479e1fa174267eb6f1825.zip
Merge pull request #8467 from Luap99/fix-mac-custom-net
Fix custom mac address with a custom cni network
Diffstat (limited to 'test')
-rw-r--r--test/e2e/create_staticmac_test.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/e2e/create_staticmac_test.go b/test/e2e/create_staticmac_test.go
index adffdc1ca..1ac431da2 100644
--- a/test/e2e/create_staticmac_test.go
+++ b/test/e2e/create_staticmac_test.go
@@ -5,6 +5,7 @@ import (
"github.com/containers/podman/v2/pkg/rootless"
. "github.com/containers/podman/v2/test/utils"
+ "github.com/containers/storage/pkg/stringid"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
@@ -45,4 +46,21 @@ var _ = Describe("Podman run with --mac-address flag", func() {
Expect(result.OutputToString()).To(ContainSubstring("92:d0:c6:0a:29:34"))
}
})
+
+ It("Podman run --mac-address with custom network", func() {
+ net := "n1" + stringid.GenerateNonCryptoID()
+ session := podmanTest.Podman([]string{"network", "create", net})
+ session.WaitWithDefaultTimeout()
+ defer podmanTest.removeCNINetwork(net)
+ Expect(session.ExitCode()).To(BeZero())
+
+ result := podmanTest.Podman([]string{"run", "--network", net, "--mac-address", "92:d0:c6:00:29:34", ALPINE, "ip", "addr"})
+ result.WaitWithDefaultTimeout()
+ if rootless.IsRootless() {
+ Expect(result.ExitCode()).To(Equal(125))
+ } else {
+ Expect(result.ExitCode()).To(Equal(0))
+ Expect(result.OutputToString()).To(ContainSubstring("92:d0:c6:00:29:34"))
+ }
+ })
})