-
Notifications
You must be signed in to change notification settings - Fork 0
/
redis_scheduler_test.go
130 lines (103 loc) · 3 KB
/
redis_scheduler_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
129
130
package goscheds
import (
"context"
"testing"
"time"
"github.com/go-redis/redis/v9"
"github.com/google/uuid"
"github.com/stretchr/testify/assert"
)
func initRedis() *redis.Client {
return redis.NewClient(&redis.Options{
Addr: "localhost:6379",
Password: "",
DB: 9,
})
}
func TestRedisScheduler(t *testing.T) {
client := initRedis()
scheduler := NewRedisScheduler("test", client)
ctx := context.Background()
client.FlushDB(ctx)
t.Run("isJobReadyToExecute", func(t *testing.T) {
j := Job{
ExecuteAt: time.Now(),
}
assert.True(t, j.isReadyToExecute())
j = Job{
ExecuteAt: time.Now().Add(200 * time.Hour),
}
assert.False(t, j.isReadyToExecute())
})
t.Run("success push job for next day", func(t *testing.T) {
job := &Job{
JobName: "test_func",
ExecuteAt: time.Now().Add(2 * 24 * time.Hour), // two days from now
Args: map[string]interface{}{"test": uuid.NewString()},
}
assert.NoError(t, scheduler.PushScheduled(ctx, job))
res, err := scheduler.getTopList(ctx)
assert.NoError(t, err)
assert.False(t, res.isReadyToExecute())
client.FlushDB(ctx)
})
t.Run("success push job for today", func(t *testing.T) {
job := &Job{
JobName: "test_func",
ExecuteAt: time.Now(),
Args: map[string]interface{}{"test": uuid.NewString()},
}
assert.NoError(t, scheduler.PushScheduled(ctx, job))
res, err := scheduler.getTopList(ctx)
assert.NoError(t, err)
// list should be empty, because the job is pushed to the work queue right away
assert.Nil(t, res)
client.FlushDB(ctx)
})
t.Run("get top of the list item exists", func(t *testing.T) {
job := &Job{
JobName: "test_func",
ExecuteAt: time.Now().Add(1 * time.Hour),
Args: map[string]interface{}{"test": 123},
}
job2 := &Job{
JobName: "test_func",
ExecuteAt: time.Now().Add(2 * time.Hour), // the score for this member should be higher than prev job
Args: map[string]interface{}{"test": 123},
}
assert.NoError(t, scheduler.PushScheduled(ctx, job))
assert.NoError(t, scheduler.PushScheduled(ctx, job2))
res, err := scheduler.getTopList(ctx)
assert.NoError(t, err)
assert.NotNil(t, res)
assert.Equal(t, job.Id, res.Id)
client.FlushDB(ctx)
})
t.Run("get top of the list, no item ", func(t *testing.T) {
res, err := scheduler.getTopList(ctx)
assert.NoError(t, err)
assert.Nil(t, res)
})
t.Run("remove item from list", func(t *testing.T) {
job := &Job{
JobName: "test_func",
ExecuteAt: time.Now(),
Args: map[string]interface{}{"test": 123},
}
assert.NoError(t, scheduler.PushScheduled(ctx, job))
assert.NoError(t, scheduler.deleteFromList(ctx, job))
res, err := scheduler.getTopList(ctx)
assert.NoError(t, err)
assert.Nil(t, res)
client.FlushDB(ctx)
})
t.Run("add item to work queue", func(t *testing.T) {
job := &Job{
JobName: "test_func",
ExecuteAt: time.Now(),
Args: map[string]interface{}{"test": 123},
}
assert.NoError(t, scheduler.addItemToWorkQueue(ctx, job))
client.FlushDB(ctx)
})
}