Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eliminate flakiness for sync2.Batcher's unit test #4605

Merged
merged 1 commit into from
Feb 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion go/sync2/batcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ type Batcher struct {
queue chan int
waiters AtomicInt32
nextID AtomicInt32
after func(time.Duration) <-chan time.Time
}

// NewBatcher returns a new Batcher
Expand All @@ -41,6 +42,19 @@ func NewBatcher(interval time.Duration) *Batcher {
queue: make(chan int),
waiters: NewAtomicInt32(0),
nextID: NewAtomicInt32(0),
after: time.After,
}
}

// newBatcherForTest returns a Batcher for testing where time.After can
// be replaced by a fake alternative.
func newBatcherForTest(interval time.Duration, after func(time.Duration) <-chan time.Time) *Batcher {
return &Batcher{
interval: interval,
queue: make(chan int),
waiters: NewAtomicInt32(0),
nextID: NewAtomicInt32(0),
after: after,
}
}

Expand All @@ -56,7 +70,7 @@ func (b *Batcher) Wait() int {
// newBatch starts a new batch
func (b *Batcher) newBatch() {
go func() {
time.Sleep(b.interval)
<-b.after(b.interval)

id := b.nextID.Add(1)

Expand Down
69 changes: 0 additions & 69 deletions go/sync2/batcher_flaky_test.go

This file was deleted.

101 changes: 101 additions & 0 deletions go/sync2/batcher_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
/*
Copyright 2017 Google Inc.
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 agreedto 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 sync2

import (
"testing"
"time"
)

// makeAfterFnWithLatch returns a fake alternative to time.After that blocks until
// the release function is called. The fake doesn't support having multiple concurrent
// calls to the After function, which is ok because Batcher should never do that.
func makeAfterFnWithLatch(t *testing.T) (func(time.Duration) <-chan time.Time, func()) {
latch := make(chan time.Time, 1)
afterFn := func(d time.Duration) <-chan time.Time {
return latch
}

releaseFn := func() {
select {
case latch <- time.Now():
default:
t.Errorf("Previous batch still hasn't been released")
}
}
return afterFn, releaseFn
}

func TestBatcher(t *testing.T) {
interval := time.Duration(50 * time.Millisecond)

afterFn, releaseBatch := makeAfterFnWithLatch(t)
b := newBatcherForTest(interval, afterFn)

waitersFinished := NewAtomicInt32(0)

startWaiter := func(testcase string, want int) {
go func() {
id := b.Wait()
if id != want {
t.Errorf("%s: got %d, want %d", testcase, id, want)
}
waitersFinished.Add(1)
}()
}

awaitVal := func(name string, val *AtomicInt32, expected int32) {
for count := 0; val.Get() != expected; count++ {
time.Sleep(50 * time.Millisecond)
if count > 5 {
t.Errorf("Timed out waiting for %s to be %v", name, expected)
return
}
}
}

awaitBatch := func(name string, n int32) {
// Wait for all the waiters to register
awaitVal("Batcher.waiters for "+name, &b.waiters, n)
// Release the batch and wait for the batcher to catch up.
if waitersFinished.Get() != 0 {
t.Errorf("Waiters finished before being released")
}
releaseBatch()
awaitVal("Batcher.waiters for "+name, &b.waiters, 0)
// Make sure the waiters actually run so they can verify their batch number.
awaitVal("waitersFinshed for "+name, &waitersFinished, n)
waitersFinished.Set(0)
}

// test single waiter
startWaiter("single waiter", 1)
awaitBatch("single waiter", 1)

// multiple waiters all at once
startWaiter("concurrent waiter", 2)
startWaiter("concurrent waiter", 2)
startWaiter("concurrent waiter", 2)
awaitBatch("concurrent waiter", 3)

startWaiter("more waiters", 3)
startWaiter("more waiters", 3)
startWaiter("more waiters", 3)
startWaiter("more waiters", 3)
startWaiter("more waiters", 3)
awaitBatch("more waiters", 5)
}