2018-12-06 04:40:46 +00:00
|
|
|
package mrun
|
|
|
|
|
|
|
|
import (
|
2019-02-05 20:18:17 +00:00
|
|
|
"context"
|
2018-12-06 04:40:46 +00:00
|
|
|
"errors"
|
|
|
|
. "testing"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestThreadWait(t *T) {
|
|
|
|
testErr := errors.New("test error")
|
|
|
|
|
|
|
|
cancelCh := func(t time.Duration) <-chan struct{} {
|
2019-02-05 20:18:17 +00:00
|
|
|
tCtx, _ := context.WithTimeout(context.Background(), t*2)
|
2018-12-06 04:40:46 +00:00
|
|
|
return tCtx.Done()
|
|
|
|
}
|
|
|
|
|
2019-02-05 20:18:17 +00:00
|
|
|
wait := func(ctx context.Context, shouldTake time.Duration) error {
|
2018-12-06 04:40:46 +00:00
|
|
|
start := time.Now()
|
|
|
|
err := Wait(ctx, cancelCh(shouldTake*2))
|
|
|
|
if took := time.Since(start); took < shouldTake || took > shouldTake*4/3 {
|
|
|
|
t.Fatalf("wait took %v, should have taken %v", took, shouldTake)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-06-15 23:41:20 +00:00
|
|
|
t.Run("noBlock", func(t *T) {
|
|
|
|
t.Run("noErr", func(t *T) {
|
|
|
|
ctx := context.Background()
|
|
|
|
ctx = WithThreads(ctx, 1, func() error { return nil })
|
|
|
|
if err := Wait(ctx, nil); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2018-12-06 04:40:46 +00:00
|
|
|
})
|
|
|
|
|
2019-06-15 23:41:20 +00:00
|
|
|
t.Run("err", func(t *T) {
|
|
|
|
ctx := context.Background()
|
|
|
|
ctx = WithThreads(ctx, 1, func() error { return testErr })
|
|
|
|
if err := Wait(ctx, nil); err != testErr {
|
|
|
|
t.Fatalf("should have got test error, got: %v", err)
|
|
|
|
}
|
2018-12-06 04:40:46 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-06-15 23:41:20 +00:00
|
|
|
t.Run("block", func(t *T) {
|
|
|
|
t.Run("noErr", func(t *T) {
|
|
|
|
ctx := context.Background()
|
|
|
|
ctx = WithThreads(ctx, 1, func() error {
|
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
return nil
|
2018-12-06 04:40:46 +00:00
|
|
|
})
|
2019-06-15 23:41:20 +00:00
|
|
|
if err := wait(ctx, 1*time.Second); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2018-12-06 04:40:46 +00:00
|
|
|
})
|
|
|
|
|
2019-06-15 23:41:20 +00:00
|
|
|
t.Run("err", func(t *T) {
|
|
|
|
ctx := context.Background()
|
|
|
|
ctx = WithThreads(ctx, 1, func() error {
|
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
return testErr
|
2018-12-06 04:40:46 +00:00
|
|
|
})
|
2019-06-15 23:41:20 +00:00
|
|
|
if err := wait(ctx, 1*time.Second); err != testErr {
|
|
|
|
t.Fatalf("should have got test error, got: %v", err)
|
|
|
|
}
|
|
|
|
})
|
2018-12-06 04:40:46 +00:00
|
|
|
|
2019-06-15 23:41:20 +00:00
|
|
|
t.Run("canceled", func(t *T) {
|
|
|
|
ctx := context.Background()
|
|
|
|
ctx = WithThreads(ctx, 1, func() error {
|
|
|
|
time.Sleep(5 * time.Second)
|
|
|
|
return testErr
|
2018-12-06 04:40:46 +00:00
|
|
|
})
|
2019-06-15 23:41:20 +00:00
|
|
|
if err := Wait(ctx, cancelCh(500*time.Millisecond)); err != ErrDone {
|
|
|
|
t.Fatalf("should have got ErrDone, got: %v", err)
|
|
|
|
}
|
2018-12-06 04:40:46 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|