summaryrefslogtreecommitdiff
path: root/test/e2e/common_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-07-29 21:31:13 +0200
committerGitHub <noreply@github.com>2019-07-29 21:31:13 +0200
commit5343d79e6c1a0a2c1b364d99fb4872c912897eb6 (patch)
tree90af4798847d8b8d7e88f7c3027529238d97c465 /test/e2e/common_test.go
parentc3c45f3ba5c2782be9658a33f8632467a06c6422 (diff)
parent90ffba92e9c931a8b972c2104ad1831b8721fdc7 (diff)
downloadpodman-5343d79e6c1a0a2c1b364d99fb4872c912897eb6.tar.gz
podman-5343d79e6c1a0a2c1b364d99fb4872c912897eb6.tar.bz2
podman-5343d79e6c1a0a2c1b364d99fb4872c912897eb6.zip
Merge pull request #3663 from adrianreber/random-test-ip
Move random IP code for tests from checkpoint to common
Diffstat (limited to 'test/e2e/common_test.go')
-rw-r--r--test/e2e/common_test.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/e2e/common_test.go b/test/e2e/common_test.go
index 7e14f9e06..22eb94972 100644
--- a/test/e2e/common_test.go
+++ b/test/e2e/common_test.go
@@ -4,10 +4,12 @@ import (
"encoding/json"
"fmt"
"io/ioutil"
+ "math/rand"
"os"
"os/exec"
"path/filepath"
"sort"
+ "strconv"
"strings"
"testing"
"time"
@@ -339,6 +341,18 @@ func GetPortLock(port string) storage.Locker {
return lock
}
+// GetRandomIPAddress returns a random IP address to avoid IP
+// collisions during parallel tests
+func GetRandomIPAddress() string {
+ // To avoid IP collisions of initialize random seed for random IP addresses
+ rand.Seed(time.Now().UnixNano())
+ // Add GinkgoParallelNode() on top of the IP address
+ // in case of the same random seed
+ ip3 := strconv.Itoa(rand.Intn(230) + GinkgoParallelNode())
+ ip4 := strconv.Itoa(rand.Intn(230) + GinkgoParallelNode())
+ return "10.88." + ip3 + "." + ip4
+}
+
// RunTopContainer runs a simple container in the background that
// runs top. If the name passed != "", it will have a name
func (p *PodmanTestIntegration) RunTopContainer(name string) *PodmanSessionIntegration {