-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSchedulerFacts.cs
322 lines (252 loc) · 9.99 KB
/
SchedulerFacts.cs
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
// Licensed under the Apache License, Version 2.0 (the "License").
// See the LICENSE file in the project root for more information.
using DevDecoder.Scheduling.Clocks;
using DevDecoder.Scheduling.Schedules;
using NodaTime;
using Xunit.Abstractions;
namespace DevDecoder.Scheduling.Test;
public class SchedulerFacts : TestBase
{
public SchedulerFacts(ITestOutputHelper output) : base(output) { }
[Fact]
public async Task LimitScheduleAccuratelyLimitsExecutionCount()
{
var tcs = new TaskCompletionSource();
var counter = 0;
void TestJob(IJobState state)
{
Output.WriteLine($"Execution {++counter}, due: {state.Due:ss.fffffff}");
if (counter >= 3)
{
tcs.TrySetResult();
}
}
using var scheduler = GetScheduler();
scheduler.Add(TestJob, new LimitSchedule(3, new GapSchedule(Duration.FromMilliseconds(5))));
await tcs.Task.WaitAsync(TimeSpan.FromSeconds(1));
Assert.Equal(3, counter);
}
[Fact]
public async Task ErrorsDisableExecution()
{
var tcs = new TaskCompletionSource();
var counter = 0;
void FailJob(IJobState state)
{
Output.WriteLine($"Execution {++counter}, due: {state.Due:ss.fffffff}");
tcs.TrySetResult();
throw new InvalidOperationException();
}
using var scheduler = GetScheduler();
var job = scheduler.Add(FailJob, new LimitSchedule(2, new GapSchedule(Duration.FromMilliseconds(5))));
Assert.NotNull(job);
Assert.True(job.IsEnabled);
await tcs.Task.WaitAsync(TimeSpan.FromSeconds(1));
// Leave some more time, in case the schedule is still running (it shouldn't be).
await Task.Delay(50);
Assert.Equal(1, counter);
Assert.False(job.IsEnabled, "Job should be disabled on error.");
}
[Fact]
public async Task ErrorsIgnored()
{
var tcs = new TaskCompletionSource();
var counter = 0;
void FailJob(IJobState state)
{
Output.WriteLine($"Execution {++counter}, due: {state.Due:ss.fffffff}");
if (counter >= 2)
{
tcs.TrySetResult();
}
throw new InvalidOperationException();
}
using var scheduler = GetScheduler();
var job = scheduler.Add(FailJob,
new LimitSchedule(2, new GapSchedule(Duration.FromMilliseconds(5), ScheduleOptions.IgnoreErrors)));
Assert.NotNull(job);
Assert.True(job.IsEnabled);
await tcs.Task.WaitAsync(TimeSpan.FromSeconds(1));
Assert.Equal(2, counter);
Assert.True(job.IsEnabled, "Job should not be disabled on error.");
}
[Fact]
public async Task JobStateValid()
{
var tcs = new TaskCompletionSource();
void TestJob(IJobState state)
{
Assert.True(state.IsEnabled);
Assert.True(state.IsExecuting);
Assert.False(state.IsManual);
tcs.TrySetResult();
}
// Use test-clock that will advance by one second each call.
using var scheduler = GetScheduler();
var job = scheduler.Add(TestJob, new OneOffSchedule(scheduler.GetCurrentZonedDateTime().PlusMilliseconds(10)));
await tcs.Task.WaitAsync(TimeSpan.FromSeconds(1));
Assert.True(job.IsEnabled);
// Yield to allow job continuation to set 'IsExecuting' back to false.
await Task.Delay(10);
Assert.False(job.IsExecuting);
}
[Fact]
public async Task JobStateNotesManualExecution()
{
var counter = 0;
async Task TestJob(IJobState state, CancellationToken cancellationToken)
{
Interlocked.Increment(ref counter);
Assert.True(state.IsEnabled);
Assert.True(state.IsExecuting);
Assert.True(state.IsManual);
await Task.Delay(TimeSpan.FromSeconds(1), cancellationToken);
Assert.True(cancellationToken.IsCancellationRequested);
}
// Use test-clock that will advance by one second each call.
using var scheduler = GetScheduler();
var cts = new CancellationTokenSource(10);
// Never run automatically
var job = scheduler.AddAsync(TestJob, OneOffSchedule.Never);
// Running job twice should de-bounce.
await Task.WhenAll(job.ExecuteAsync(cts.Token), job.ExecuteAsync(cts.Token));
// Yield to allow job continuations to complete.
await Task.Delay(10);
// Should only have run once.
Assert.Equal(1, counter);
Assert.True(job.IsEnabled);
Assert.False(job.IsExecuting);
}
[Fact]
public async Task SecondsAreAligned()
{
var tcs = new TaskCompletionSource();
// Create test times
var now = Instant.FromUtc(2023, 1, 1, 0, 0, 0).Plus(Duration.FromMilliseconds(500));
var nowZdt = now.InUtc();
ZonedDateTime? due = null;
void TestJob(IJobState state)
{
due = state.Due;
tcs.TrySetResult();
}
// Use test-clock that will advance by one second each call.
using var scheduler = GetScheduler(TestClock.From(now));
scheduler.DateTimeZone = DateTimeZone.Utc;
var job = scheduler.Add(TestJob,
new OneOffSchedule(nowZdt.PlusMilliseconds(10), ScheduleOptions.AlignSeconds));
Assert.Equal(nowZdt.PlusMilliseconds(500), job.Due);
await tcs.Task.WaitAsync(TimeSpan.FromSeconds(1));
Assert.NotNull(due);
// Check due time was aligned
Assert.Equal(0, due.Value.TickOfSecond);
Assert.Equal(nowZdt.PlusMilliseconds(500), due);
}
[Fact]
public async Task LongScheduleSupport()
{
// Create test times
var now = Instant.FromUtc(2023, 1, 1, 0, 0, 0).Plus(Duration.FromMilliseconds(500));
var nowZdt = now.InUtc();
void TestJob(IJobState state)
{
}
// Use test-clock that will advance by one second each call.
using var scheduler = GetScheduler(TestClock.From(now, Duration.FromDays(1)));
scheduler.DateTimeZone = DateTimeZone.Utc;
// Create schedule with delay of 100 days, which is much more than allowed timer delay.
var job = scheduler.Add(TestJob,
new OneOffSchedule(nowZdt.PlusHours(2400)));
Assert.Equal(nowZdt.PlusHours(2400), job.Due);
await Task.Delay(10);
Assert.True(job.IsEnabled);
}
[Fact]
public async Task DisablingJobPreventsExecution()
{
var counter = 0;
var tcs = new TaskCompletionSource();
void TestJob(IJobState state)
{
Output.WriteLine($"Execution {++counter}, due: {state.Due:ss.fffffff}");
tcs.TrySetResult();
}
// Create test times
var now = Instant.FromUtc(2023, 1, 1, 0, 0, 0);
// Test clock that we can control using the 'now' variable.
// ReSharper disable once AccessToModifiedClosure
using var scheduler = GetScheduler(new TestClock(_ => now));
// Create job to run every second.
var job = scheduler.Add(TestJob, new GapSchedule(Duration.FromSeconds(1)));
Assert.Equal(now.InZone(scheduler.DateTimeZone).PlusSeconds(1), job.Due);
job.IsEnabled = false;
// Move time
now = now.Plus(Duration.FromSeconds(3));
Assert.Equal(0, counter);
Assert.Null(job.Due);
job.IsEnabled = true;
Assert.NotNull(job.Due);
Assert.Equal(now.InZone(scheduler.DateTimeZone).PlusSeconds(1), job.Due);
// Move on time
now = now.Plus(Duration.FromSeconds(1));
await tcs.Task.WaitAsync(TimeSpan.FromSeconds(1.5));
Assert.Equal(1, counter);
}
[Fact]
public async Task DisablingSchedulerPreventsExecution()
{
var counter = 0;
var tcs = new TaskCompletionSource();
void TestJob(IJobState state)
{
Output.WriteLine($"Execution {++counter}, due: {state.Due:ss.fffffff}");
tcs.TrySetResult();
}
// Create test times
var now = Instant.FromUtc(2023, 1, 1, 0, 0, 0);
// Test clock that we can control using the 'now' variable.
// ReSharper disable once AccessToModifiedClosure
using var scheduler = GetScheduler(new TestClock(_ => now));
// Create job to run every second.
var job = scheduler.Add(TestJob, new GapSchedule(Duration.FromSeconds(1)));
Assert.Equal(now.InZone(scheduler.DateTimeZone).PlusSeconds(1), job.Due);
scheduler.IsEnabled = false;
// Move time
now = now.Plus(Duration.FromSeconds(3));
Assert.Equal(0, counter);
Assert.Null(job.Due);
scheduler.IsEnabled = true;
Assert.NotNull(job.Due);
Assert.Equal(now.InZone(scheduler.DateTimeZone).PlusSeconds(1), job.Due);
// Move on time
now = now.Plus(Duration.FromSeconds(1));
await tcs.Task.WaitAsync(TimeSpan.FromSeconds(1.5));
Assert.Equal(1, counter);
}
[Fact]
public void TryRemoveDisablesAndDetachesScheduler()
{
using var scheduler = GetScheduler();
var job = scheduler.Add(() => { } /* Do Nothing */, new GapSchedule(Duration.FromMilliseconds(100)));
Assert.True(job.IsEnabled);
Assert.Equal(scheduler, job.Scheduler);
Assert.NotNull(job.Due);
Assert.True(scheduler.TryRemove(job));
Assert.False(job.IsEnabled);
Assert.Null(job.Scheduler);
Assert.Null(job.Due);
// Even setting to enabled doesn't 'stick'.
job.IsEnabled = true;
Assert.False(job.IsEnabled);
}
[Fact]
public async Task DoubleDisposeOk()
{
using var scheduler = GetScheduler();
// Create rapid action to keep spinning.
scheduler.Add(() => { } /* Do Nothing */, new GapSchedule(Duration.FromMilliseconds(1)));
await Task.Delay(TimeSpan.FromSeconds(0.1));
// Let's dispose twice.
scheduler.Dispose();
}
}