Skip to content

Commit 705e69b

Browse files
committed
Make deployment test reproducible when randomness is involved
1 parent 086cc82 commit 705e69b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

test/extended/deployments/deployments.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,13 @@ var _ = g.Describe("[Feature:DeploymentConfig] deploymentconfigs", func() {
5959
_, err := oc.Run("create").Args("-f", simpleDeploymentFixture).Output()
6060
o.Expect(err).NotTo(o.HaveOccurred())
6161

62+
r := rand.New(rand.NewSource(g.GinkgoRandomSeed()))
6263
iterations := 15
6364
for i := 0; i < iterations; i++ {
64-
if rand.Float32() < 0.2 {
65-
time.Sleep(time.Duration(rand.Float32() * rand.Float32() * float32(time.Second)))
65+
if r.Float32() < 0.2 {
66+
time.Sleep(time.Duration(r.Float32() * r.Float32() * float32(time.Second)))
6667
}
67-
switch n := rand.Float32(); {
68+
switch n := r.Float32(); {
6869

6970
case n < 0.4:
7071
// trigger a new deployment
@@ -111,7 +112,7 @@ var _ = g.Describe("[Feature:DeploymentConfig] deploymentconfigs", func() {
111112
for _, pod := range pods {
112113
e2e.Logf("%02d: deleting deployer pod %s", i, pod.Name)
113114
options := metav1.NewDeleteOptions(0)
114-
if rand.Float32() < 0.5 {
115+
if r.Float32() < 0.5 {
115116
options = nil
116117
}
117118
if err := oc.KubeClient().CoreV1().Pods(oc.Namespace()).Delete(pod.Name, options); err != nil {

0 commit comments

Comments
 (0)