mirror of
https://github.com/hibiken/asynq.git
synced 2024-11-10 11:31:58 +08:00
Fix tests
This commit is contained in:
parent
ebd7a32c0f
commit
5490d2c625
@ -6,6 +6,7 @@ package context
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -61,8 +62,21 @@ func TestCreateContextWithBaseContext(t *testing.T) {
|
|||||||
|
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
baseCtx context.Context
|
baseCtx context.Context
|
||||||
|
validate func(ctx context.Context, t *testing.T) error
|
||||||
}{
|
}{
|
||||||
{context.WithValue(context.Background(), key, value)},
|
{
|
||||||
|
baseCtx: context.WithValue(context.Background(), key, value),
|
||||||
|
validate: func(ctx context.Context, t *testing.T) error {
|
||||||
|
got, ok := ctx.Value(key).(ctxValue)
|
||||||
|
if !ok {
|
||||||
|
return fmt.Errorf("ctx.Value().(ctxValue) returned false, expected to be true")
|
||||||
|
}
|
||||||
|
if want := value; got != want {
|
||||||
|
return fmt.Errorf("ctx.Value().(ctxValue) returned unknown value (%v), expected to be %s", got, value)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, tc := range tests {
|
for _, tc := range tests {
|
||||||
@ -76,18 +90,13 @@ func TestCreateContextWithBaseContext(t *testing.T) {
|
|||||||
defer cancel()
|
defer cancel()
|
||||||
|
|
||||||
select {
|
select {
|
||||||
case <-ctx.Done():
|
case x := <-ctx.Done():
|
||||||
|
t.Errorf("<-ctx.Done() == %v, want nothing (it should block)", x)
|
||||||
default:
|
default:
|
||||||
t.Errorf("ctx.Done() blocked, want it to be non-blocking")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
v, ok := ctx.Value(key).(ctxValue)
|
if err := tc.validate(ctx, t); err != nil {
|
||||||
original, _ := tc.baseCtx.Value(key).(ctxValue)
|
t.Errorf("%v", err)
|
||||||
if !ok {
|
|
||||||
t.Errorf("ctx.Value().(ctxValue) returned false, expected to be true")
|
|
||||||
}
|
|
||||||
if v != original {
|
|
||||||
t.Errorf("ctx.Value().(ctxValue) returned unknown value (%v), expected to be %s", v, value)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -61,6 +61,7 @@ func newProcessorForTest(t *testing.T, r *rdb.RDB, h Handler) *processor {
|
|||||||
p := newProcessor(processorParams{
|
p := newProcessor(processorParams{
|
||||||
logger: testLogger,
|
logger: testLogger,
|
||||||
broker: r,
|
broker: r,
|
||||||
|
baseCtxFn: context.Background,
|
||||||
retryDelayFunc: DefaultRetryDelayFunc,
|
retryDelayFunc: DefaultRetryDelayFunc,
|
||||||
isFailureFunc: defaultIsFailureFunc,
|
isFailureFunc: defaultIsFailureFunc,
|
||||||
syncCh: syncCh,
|
syncCh: syncCh,
|
||||||
@ -592,6 +593,7 @@ func TestProcessorWithStrictPriority(t *testing.T) {
|
|||||||
p := newProcessor(processorParams{
|
p := newProcessor(processorParams{
|
||||||
logger: testLogger,
|
logger: testLogger,
|
||||||
broker: rdbClient,
|
broker: rdbClient,
|
||||||
|
baseCtxFn: context.Background,
|
||||||
retryDelayFunc: DefaultRetryDelayFunc,
|
retryDelayFunc: DefaultRetryDelayFunc,
|
||||||
isFailureFunc: defaultIsFailureFunc,
|
isFailureFunc: defaultIsFailureFunc,
|
||||||
syncCh: syncCh,
|
syncCh: syncCh,
|
||||||
|
Loading…
Reference in New Issue
Block a user