Cleanup math/rand package usage

Kubernetes-commit: 4ce1fb7d40beb9010e56d60792c4da25e8d86ed0
This commit is contained in:
Mikhail Mazurskiy 2018-11-17 16:45:36 +11:00 committed by Kubernetes Publisher
parent e1c806028d
commit c90a87409a
6 changed files with 67 additions and 18 deletions

View File

@ -242,16 +242,15 @@ func TestHammerController(t *testing.T) {
currentNames := sets.String{} currentNames := sets.String{}
rs := rand.NewSource(rand.Int63()) rs := rand.NewSource(rand.Int63())
f := fuzz.New().NilChance(.5).NumElements(0, 2).RandSource(rs) f := fuzz.New().NilChance(.5).NumElements(0, 2).RandSource(rs)
r := rand.New(rs) // Mustn't use r and f concurrently!
for i := 0; i < 100; i++ { for i := 0; i < 100; i++ {
var name string var name string
var isNew bool var isNew bool
if currentNames.Len() == 0 || r.Intn(3) == 1 { if currentNames.Len() == 0 || rand.Intn(3) == 1 {
f.Fuzz(&name) f.Fuzz(&name)
isNew = true isNew = true
} else { } else {
l := currentNames.List() l := currentNames.List()
name = l[r.Intn(len(l))] name = l[rand.Intn(len(l))]
} }
pod := &v1.Pod{} pod := &v1.Pod{}
@ -266,7 +265,7 @@ func TestHammerController(t *testing.T) {
source.Add(pod) source.Add(pod)
continue continue
} }
switch r.Intn(2) { switch rand.Intn(2) {
case 0: case 0:
currentNames.Insert(name) currentNames.Insert(name)
source.Modify(pod) source.Modify(pod)

View File

@ -162,17 +162,14 @@ type eventBroadcasterImpl struct {
// The return value can be ignored or used to stop recording, if desired. // The return value can be ignored or used to stop recording, if desired.
// TODO: make me an object with parameterizable queue length and retry interval // TODO: make me an object with parameterizable queue length and retry interval
func (eventBroadcaster *eventBroadcasterImpl) StartRecordingToSink(sink EventSink) watch.Interface { func (eventBroadcaster *eventBroadcasterImpl) StartRecordingToSink(sink EventSink) watch.Interface {
// The default math/rand package functions aren't thread safe, so create a
// new Rand object for each StartRecording call.
randGen := rand.New(rand.NewSource(time.Now().UnixNano()))
eventCorrelator := NewEventCorrelatorWithOptions(eventBroadcaster.options) eventCorrelator := NewEventCorrelatorWithOptions(eventBroadcaster.options)
return eventBroadcaster.StartEventWatcher( return eventBroadcaster.StartEventWatcher(
func(event *v1.Event) { func(event *v1.Event) {
recordToSink(sink, event, eventCorrelator, randGen, eventBroadcaster.sleepDuration) recordToSink(sink, event, eventCorrelator, eventBroadcaster.sleepDuration)
}) })
} }
func recordToSink(sink EventSink, event *v1.Event, eventCorrelator *EventCorrelator, randGen *rand.Rand, sleepDuration time.Duration) { func recordToSink(sink EventSink, event *v1.Event, eventCorrelator *EventCorrelator, sleepDuration time.Duration) {
// Make a copy before modification, because there could be multiple listeners. // Make a copy before modification, because there could be multiple listeners.
// Events are safe to copy like this. // Events are safe to copy like this.
eventCopy := *event eventCopy := *event
@ -197,7 +194,7 @@ func recordToSink(sink EventSink, event *v1.Event, eventCorrelator *EventCorrela
// Randomize the first sleep so that various clients won't all be // Randomize the first sleep so that various clients won't all be
// synced up if the master goes down. // synced up if the master goes down.
if tries == 1 { if tries == 1 {
time.Sleep(time.Duration(float64(sleepDuration) * randGen.Float64())) time.Sleep(time.Duration(float64(sleepDuration) * rand.Float64()))
} else { } else {
time.Sleep(sleepDuration) time.Sleep(sleepDuration)
} }

View File

@ -19,7 +19,6 @@ package record
import ( import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"math/rand"
"net/http" "net/http"
"strconv" "strconv"
"testing" "testing"
@ -417,7 +416,6 @@ func TestWriteEventError(t *testing.T) {
clock := clock.IntervalClock{Time: time.Now(), Duration: time.Second} clock := clock.IntervalClock{Time: time.Now(), Duration: time.Second}
eventCorrelator := NewEventCorrelator(&clock) eventCorrelator := NewEventCorrelator(&clock)
randGen := rand.New(rand.NewSource(time.Now().UnixNano()))
for caseName, ent := range table { for caseName, ent := range table {
attempts := 0 attempts := 0
@ -431,7 +429,7 @@ func TestWriteEventError(t *testing.T) {
}, },
} }
ev := &v1.Event{} ev := &v1.Event{}
recordToSink(sink, ev, eventCorrelator, randGen, 0) recordToSink(sink, ev, eventCorrelator, 0)
if attempts != ent.attemptsWanted { if attempts != ent.attemptsWanted {
t.Errorf("case %v: wanted %d, got %d attempts", caseName, ent.attemptsWanted, attempts) t.Errorf("case %v: wanted %d, got %d attempts", caseName, ent.attemptsWanted, attempts)
} }
@ -441,7 +439,6 @@ func TestWriteEventError(t *testing.T) {
func TestUpdateExpiredEvent(t *testing.T) { func TestUpdateExpiredEvent(t *testing.T) {
clock := clock.IntervalClock{Time: time.Now(), Duration: time.Second} clock := clock.IntervalClock{Time: time.Now(), Duration: time.Second}
eventCorrelator := NewEventCorrelator(&clock) eventCorrelator := NewEventCorrelator(&clock)
randGen := rand.New(rand.NewSource(time.Now().UnixNano()))
var createdEvent *v1.Event var createdEvent *v1.Event
@ -462,7 +459,7 @@ func TestUpdateExpiredEvent(t *testing.T) {
ev := &v1.Event{} ev := &v1.Event{}
ev.ResourceVersion = "updated-resource-version" ev.ResourceVersion = "updated-resource-version"
ev.Count = 2 ev.Count = 2
recordToSink(sink, ev, eventCorrelator, randGen, 0) recordToSink(sink, ev, eventCorrelator, 0)
if createdEvent == nil { if createdEvent == nil {
t.Error("Event did not get created after patch failed") t.Error("Event did not get created after patch failed")

29
tools/record/main_test.go Normal file
View File

@ -0,0 +1,29 @@
/*
Copyright 2018 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package record
import (
"math/rand"
"os"
"testing"
"time"
)
func TestMain(m *testing.M) {
rand.Seed(time.Now().UnixNano())
os.Exit(m.Run())
}

View File

@ -216,15 +216,13 @@ func TestCopyShifting(t *testing.T) {
} }
func BenchmarkDelayingQueue_AddAfter(b *testing.B) { func BenchmarkDelayingQueue_AddAfter(b *testing.B) {
r := rand.New(rand.NewSource(time.Now().Unix()))
fakeClock := clock.NewFakeClock(time.Now()) fakeClock := clock.NewFakeClock(time.Now())
q := newDelayingQueue(fakeClock, "") q := newDelayingQueue(fakeClock, "")
// Add items // Add items
for n := 0; n < b.N; n++ { for n := 0; n < b.N; n++ {
data := fmt.Sprintf("%d", n) data := fmt.Sprintf("%d", n)
q.AddAfter(data, time.Duration(r.Int63n(int64(10*time.Minute)))) q.AddAfter(data, time.Duration(rand.Int63n(int64(10*time.Minute))))
} }
// Exercise item removal as well // Exercise item removal as well

View File

@ -0,0 +1,29 @@
/*
Copyright 2018 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package workqueue
import (
"math/rand"
"os"
"testing"
"time"
)
func TestMain(m *testing.M) {
rand.Seed(time.Now().UnixNano())
os.Exit(m.Run())
}