-
Notifications
You must be signed in to change notification settings - Fork 7
/
schedule_test.go
208 lines (163 loc) · 5.71 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
package workflow_test
import (
"context"
"errors"
"sync"
"testing"
"time"
"github.com/stretchr/testify/require"
clock_testing "k8s.io/utils/clock/testing"
"github.com/luno/workflow"
"github.com/luno/workflow/adapters/memrecordstore"
"github.com/luno/workflow/adapters/memrolescheduler"
"github.com/luno/workflow/adapters/memstreamer"
)
func TestSchedule(t *testing.T) {
workflowName := "sync users"
b := workflow.NewBuilder[MyType, status](workflowName)
b.AddStep(StatusStart, func(ctx context.Context, t *workflow.Run[MyType, status]) (status, error) {
return StatusMiddle, nil
}, StatusMiddle)
b.AddStep(StatusMiddle, func(ctx context.Context, t *workflow.Run[MyType, status]) (status, error) {
return StatusEnd, nil
}, StatusEnd)
now := time.Date(2023, time.April, 9, 8, 30, 0, 0, time.UTC)
clock := clock_testing.NewFakeClock(now)
recordStore := memrecordstore.New()
wf := b.Build(
memstreamer.New(),
recordStore,
memrolescheduler.New(),
workflow.WithClock(clock),
workflow.WithDebugMode(),
)
ctx, cancel := context.WithCancel(context.Background())
t.Cleanup(func() {
cancel()
})
wf.Run(ctx)
t.Cleanup(wf.Stop)
go func() {
err := wf.Schedule("andrew", StatusStart, "@monthly")
require.Nil(t, err)
}()
// Allow scheduling to take place
time.Sleep(200 * time.Millisecond)
_, err := recordStore.Latest(ctx, workflowName, "andrew")
// Expect there to be no entries yet
require.True(t, errors.Is(err, workflow.ErrRecordNotFound))
// Grab the time from the clock for expectation as to the time we expect the entry to have
expectedTimestamp := time.Date(2023, time.May, 1, 0, 0, 0, 0, time.UTC)
clock.SetTime(expectedTimestamp)
// Allow scheduling to take place
time.Sleep(200 * time.Millisecond)
firstScheduled, err := recordStore.Latest(ctx, workflowName, "andrew")
require.Nil(t, err)
_, err = wf.Await(ctx, firstScheduled.ForeignID, firstScheduled.RunID, StatusEnd)
require.Nil(t, err)
expectedTimestamp = time.Date(2023, time.June, 1, 0, 0, 0, 0, time.UTC)
clock.SetTime(expectedTimestamp)
// Allow scheduling to take place
time.Sleep(200 * time.Millisecond)
secondScheduled, err := recordStore.Latest(ctx, workflowName, "andrew")
require.Nil(t, err)
require.NotEqual(t, firstScheduled.RunID, secondScheduled.RunID)
}
func TestWorkflow_ScheduleShutdown(t *testing.T) {
b := workflow.NewBuilder[MyType, status]("example")
b.AddStep(StatusStart, func(ctx context.Context, t *workflow.Run[MyType, status]) (status, error) {
return 0, nil
}, StatusEnd)
wf := b.Build(
memstreamer.New(),
memrecordstore.New(),
memrolescheduler.New(),
workflow.WithDebugMode(),
)
ctx, cancel := context.WithCancel(context.Background())
t.Cleanup(cancel)
wf.Run(ctx)
t.Cleanup(wf.Stop)
var wg sync.WaitGroup
wg.Add(1)
go func() {
wg.Done()
err := wf.Schedule("andrew", StatusStart, "@monthly")
require.Nil(t, err)
}()
wg.Wait()
time.Sleep(200 * time.Millisecond)
require.Equal(t, map[string]workflow.State{
"start-andrew-scheduler-@monthly": workflow.StateRunning,
"start-consumer-1-of-1": workflow.StateRunning,
"outbox-consumer-1-of-1": workflow.StateRunning,
"example-delete-consumer": workflow.StateRunning,
}, wf.States())
wf.Stop()
require.Equal(t, map[string]workflow.State{
"start-andrew-scheduler-@monthly": workflow.StateShutdown,
"start-consumer-1-of-1": workflow.StateShutdown,
"outbox-consumer-1-of-1": workflow.StateShutdown,
"example-delete-consumer": workflow.StateShutdown,
}, wf.States())
}
func TestWorkflow_ScheduleFilter(t *testing.T) {
workflowName := "sync users"
b := workflow.NewBuilder[MyType, status](workflowName)
b.AddStep(StatusStart, func(ctx context.Context, t *workflow.Run[MyType, status]) (status, error) {
return StatusMiddle, nil
}, StatusMiddle)
b.AddStep(StatusMiddle, func(ctx context.Context, t *workflow.Run[MyType, status]) (status, error) {
return StatusEnd, nil
}, StatusEnd)
now := time.Date(2023, time.April, 9, 8, 30, 0, 0, time.UTC)
clock := clock_testing.NewFakeClock(now)
recordStore := memrecordstore.New()
wf := b.Build(
memstreamer.New(),
recordStore,
memrolescheduler.New(),
workflow.WithClock(clock),
workflow.WithDebugMode(),
)
ctx, cancel := context.WithCancel(context.Background())
t.Cleanup(func() {
cancel()
})
wf.Run(ctx)
t.Cleanup(wf.Stop)
skipVal := false
shouldSkip := &skipVal
filter := func(ctx context.Context) (bool, error) {
return *shouldSkip, nil
}
opt := workflow.WithScheduleFilter[MyType, status](filter)
go func() {
err := wf.Schedule("andrew", StatusStart, "@monthly", opt)
require.Nil(t, err)
}()
// Allow scheduling to take place
time.Sleep(200 * time.Millisecond)
_, err := recordStore.Latest(ctx, workflowName, "andrew")
// Expect there to be no entries yet
require.True(t, errors.Is(err, workflow.ErrRecordNotFound))
// Grab the time from the clock for expectation as to the time we expect the entry to have
expectedTimestamp := time.Date(2023, time.May, 1, 0, 0, 0, 0, time.UTC)
clock.SetTime(expectedTimestamp)
// Allow scheduling to take place
time.Sleep(200 * time.Millisecond)
_, err = recordStore.Latest(ctx, workflowName, "andrew")
// Expect there to be no entries yet
require.True(t, errors.Is(err, workflow.ErrRecordNotFound))
// Disable the filter to enable scheduling
*shouldSkip = true
expectedTimestamp = time.Date(2023, time.June, 1, 0, 0, 0, 0, time.UTC)
clock.SetTime(expectedTimestamp)
// Allow scheduling to take place
time.Sleep(200 * time.Millisecond)
latest, err := recordStore.Latest(ctx, workflowName, "andrew")
require.Nil(t, err)
resp, err := wf.Await(ctx, latest.ForeignID, latest.RunID, StatusEnd)
require.Nil(t, err)
require.Equal(t, expectedTimestamp, resp.CreatedAt)
}