-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule_test.go
128 lines (85 loc) · 2.78 KB
/
schedule_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package boomerang
import (
"context"
"testing"
"time"
"github.com/redis/go-redis/v9"
"github.com/stretchr/testify/assert"
)
var testTask1 = NewTask(
"test",
"id",
[]byte("test data"),
)
func newSchedule(t *testing.T, ctx context.Context, db int) Schedule {
t.Helper()
redisCli := redis.NewClient(&redis.Options{
Addr: "localhost:6379",
DB: db,
})
redisCli.FlushDB(ctx)
return NewSchedule(redisCli)
}
func TestScheduleImpl_Add(t *testing.T) {
t.Parallel()
ctx := context.Background()
schedule := newSchedule(t, ctx, 1)
err := schedule.Add(ctx, testTask1, 10*time.Millisecond, time.Now())
assert.NoError(t, err)
err = schedule.Add(ctx, testTask1, 10*time.Millisecond, time.Now())
assert.ErrorIs(t, err, ErrTaskAlreadyExists)
}
func TestScheduleImpl_Remove(t *testing.T) {
t.Parallel()
ctx := context.Background()
schedule := newSchedule(t, ctx, 3)
err := schedule.Remove(ctx, testTask1.Kind, testTask1.ID)
assert.ErrorIs(t, err, ErrTaskDoesNotExist)
err = schedule.Add(ctx, testTask1, 10*time.Millisecond, time.Now())
assert.NoError(t, err)
err = schedule.Remove(ctx, testTask1.Kind, testTask1.ID)
assert.NoError(t, err)
}
func TestScheduleImpl_RunNow(t *testing.T) {
t.Parallel()
ctx := context.Background()
schedule := newSchedule(t, ctx, 4)
err := schedule.RunNow(ctx, testTask1.Kind, testTask1.ID)
assert.ErrorIs(t, err, ErrTaskDoesNotExist)
err = schedule.Add(ctx, testTask1, 10*time.Millisecond, time.Now())
assert.NoError(t, err)
err = schedule.RunNow(ctx, testTask1.Kind, testTask1.ID)
assert.NoError(t, err)
}
func TestScheduleImpl_On(t *testing.T) {
t.Parallel()
ctx := context.Background()
schedule := newSchedule(t, ctx, 5)
// Test receiving a task.
ctxA, cancelA := context.WithTimeout(ctx, 1*time.Second)
err := schedule.Add(ctx, testTask1, 10*time.Millisecond, time.Now())
assert.NoError(t, err)
err = schedule.On(ctxA, testTask1.Kind, func(ctx context.Context, task *Task) {
cancelA()
})
assert.ErrorIs(t, err, context.Canceled)
// Test never receiving a task because it is of the wrong kind.
ctxB, cancelB := context.WithTimeout(ctx, 100*time.Millisecond)
err = schedule.On(ctxB, "unknown", func(ctx context.Context, task *Task) {
cancelB()
})
assert.ErrorIs(t, err, context.DeadlineExceeded)
err = schedule.Remove(ctx, testTask1.Kind, testTask1.ID)
assert.NoError(t, err)
// Test data unmarshalling.
ctxC, cancelC := context.WithTimeout(ctx, 1*time.Second)
err = schedule.Add(ctx, testTask1, 10*time.Millisecond, time.Now())
assert.NoError(t, err)
err = schedule.On(ctxC, testTask1.Kind, func(ctx context.Context, task *Task) {
assert.Equal(t, testTask1.Kind, task.Kind)
assert.Equal(t, testTask1.ID, task.ID)
assert.Equal(t, testTask1.Data, task.Data)
cancelC()
})
assert.ErrorIs(t, err, context.Canceled)
}