2018-02-05 22:00:29 +00:00
|
|
|
package up
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"sync"
|
|
|
|
|
"sync/atomic"
|
|
|
|
|
"testing"
|
|
|
|
|
"time"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestUp(t *testing.T) {
|
|
|
|
|
pr := New()
|
|
|
|
|
wg := sync.WaitGroup{}
|
|
|
|
|
hits := int32(0)
|
|
|
|
|
|
2018-02-15 10:21:57 +01:00
|
|
|
upfunc := func() error {
|
2018-02-05 22:00:29 +00:00
|
|
|
atomic.AddInt32(&hits, 1)
|
|
|
|
|
// Sleep tiny amount so that our other pr.Do() calls hit the lock.
|
|
|
|
|
time.Sleep(3 * time.Millisecond)
|
|
|
|
|
wg.Done()
|
2018-02-15 10:21:57 +01:00
|
|
|
return nil
|
2018-02-05 22:00:29 +00:00
|
|
|
}
|
|
|
|
|
|
2018-02-15 10:21:57 +01:00
|
|
|
pr.Start(5 * time.Millisecond)
|
2018-02-05 22:00:29 +00:00
|
|
|
defer pr.Stop()
|
|
|
|
|
|
|
|
|
|
// These functions AddInt32 to the same hits variable, but we only want to wait when
|
|
|
|
|
// upfunc finishes, as that only calls Done() on the waitgroup.
|
2018-02-15 10:21:57 +01:00
|
|
|
upfuncNoWg := func() error { atomic.AddInt32(&hits, 1); return nil }
|
2018-02-05 22:00:29 +00:00
|
|
|
wg.Add(1)
|
|
|
|
|
pr.Do(upfunc)
|
|
|
|
|
pr.Do(upfuncNoWg)
|
|
|
|
|
pr.Do(upfuncNoWg)
|
|
|
|
|
|
|
|
|
|
wg.Wait()
|
|
|
|
|
|
|
|
|
|
h := atomic.LoadInt32(&hits)
|
|
|
|
|
if h != 1 {
|
|
|
|
|
t.Errorf("Expected hits to be %d, got %d", 1, h)
|
|
|
|
|
}
|
|
|
|
|
}
|