-
-
Notifications
You must be signed in to change notification settings - Fork 309
/
Copy pathWaitStrategy.cs
217 lines (186 loc) · 6.85 KB
/
WaitStrategy.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
namespace DotNet.Testcontainers.Configurations
{
using System;
using System.Threading;
using System.Threading.Tasks;
using DotNet.Testcontainers.Containers;
using JetBrains.Annotations;
/// <inheritdoc cref="IWaitStrategy" />
[PublicAPI]
public class WaitStrategy : IWaitStrategy
{
private IWaitWhile _waitWhile;
private IWaitUntil _waitUntil;
/// <summary>
/// Initializes a new instance of the <see cref="WaitStrategy" /> class.
/// </summary>
public WaitStrategy()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="WaitStrategy" /> class.
/// </summary>
/// <param name="waitWhile">The wait while condition to be used in the strategy.</param>
public WaitStrategy(IWaitWhile waitWhile)
{
_ = WithStrategy(waitWhile);
}
/// <summary>
/// Initializes a new instance of the <see cref="WaitStrategy" /> class.
/// </summary>
/// <param name="waitUntil">The wait until condition to be used in the strategy.</param>
public WaitStrategy(IWaitUntil waitUntil)
{
_ = WithStrategy(waitUntil);
}
/// <summary>
/// Gets the number of retries.
/// </summary>
public ushort Retries { get; private set; }
= 1;
/// <summary>
/// Gets the interval between retries.
/// </summary>
public TimeSpan Interval { get; private set; }
= TimeSpan.FromSeconds(1);
/// <summary>
/// Gets the timeout.
/// </summary>
public TimeSpan Timeout { get; private set; }
= TimeSpan.FromHours(1);
/// <inheritdoc />
public IWaitStrategy WithRetries(ushort retries)
{
Retries = retries;
return this;
}
/// <inheritdoc />
public IWaitStrategy WithInterval(TimeSpan interval)
{
Interval = interval;
return this;
}
/// <inheritdoc />
public IWaitStrategy WithTimeout(TimeSpan timeout)
{
Timeout = timeout;
return this;
}
/// <summary>
/// Executes the wait strategy while the container satisfies the condition.
/// </summary>
/// <param name="container">The container to check the condition for.</param>
/// <param name="ct">Cancellation token.</param>
/// <returns>A task representing the asynchronous operation, returning false if the container satisfies the condition; otherwise, true.</returns>
public virtual Task<bool> WhileAsync(IContainer container, CancellationToken ct = default)
{
return _waitWhile.WhileAsync(container);
}
/// <summary>
/// Executes the wait strategy until the container satisfies the condition.
/// </summary>
/// <param name="container">The container to check the condition for.</param>
/// <param name="ct">Cancellation token.</param>
/// <returns>A task representing the asynchronous operation, returning true if the container satisfies the condition; otherwise, false.</returns>
public virtual Task<bool> UntilAsync(IContainer container, CancellationToken ct = default)
{
return _waitUntil.UntilAsync(container);
}
/// <summary>
/// Waits asynchronously until the specified condition returns false or until a timeout occurs.
/// </summary>
/// <param name="wait">A function that represents the asynchronous condition to wait for.</param>
/// <param name="interval">The time interval between consecutive evaluations of the condition.</param>
/// <param name="timeout">The maximum duration to wait for the condition to become false.</param>
/// <param name="ct">The optional cancellation token to cancel the waiting operation.</param>
/// <exception cref="TimeoutException">Thrown as soon as the timeout expires.</exception>
/// <returns>A task that represents the asynchronous block operation.</returns>
[PublicAPI]
public static async Task WaitWhileAsync(Func<Task<bool>> wait, TimeSpan interval, TimeSpan timeout, CancellationToken ct = default)
{
async Task WhileAsync()
{
while (!ct.IsCancellationRequested)
{
var isSuccessful = await wait.Invoke()
.ConfigureAwait(false);
if (!isSuccessful)
{
break;
}
await Task.Delay(interval, ct)
.ConfigureAwait(false);
}
}
var waitTask = WhileAsync();
var timeoutTask = Task.Delay(timeout, ct);
var isTimeoutTask = timeoutTask == await Task.WhenAny(waitTask, timeoutTask)
.ConfigureAwait(false);
if (isTimeoutTask)
{
throw new TimeoutException();
}
// Rethrows exceptions.
await waitTask
.ConfigureAwait(false);
}
/// <summary>
/// Waits asynchronously until the specified condition returns true or until a timeout occurs.
/// </summary>
/// <param name="wait">A function that represents the asynchronous condition to wait for.</param>
/// <param name="interval">The time interval between consecutive evaluations of the condition.</param>
/// <param name="timeout">The maximum duration to wait for the condition to become true.</param>
/// <param name="ct">The optional cancellation token to cancel the waiting operation.</param>
/// <exception cref="TimeoutException">Thrown as soon as the timeout expires.</exception>
/// <returns>A task that represents the asynchronous block operation.</returns>
[PublicAPI]
public static async Task WaitUntilAsync(Func<Task<bool>> wait, TimeSpan interval, TimeSpan timeout, CancellationToken ct = default)
{
async Task UntilAsync()
{
while (!ct.IsCancellationRequested)
{
var isSuccessful = await wait.Invoke()
.ConfigureAwait(false);
if (isSuccessful)
{
break;
}
await Task.Delay(interval, ct)
.ConfigureAwait(false);
}
}
var waitTask = UntilAsync();
var timeoutTask = Task.Delay(timeout, ct);
var isTimeoutTask = timeoutTask == await Task.WhenAny(waitTask, timeoutTask)
.ConfigureAwait(false);
if (isTimeoutTask)
{
throw new TimeoutException();
}
// Rethrows exceptions.
await waitTask
.ConfigureAwait(false);
}
/// <summary>
/// Sets the wait while condition.
/// </summary>
/// <param name="waitWhile">The wait while condition to be used in the strategy.</param>
/// <returns>The updated instance of the wait strategy.</returns>
private WaitStrategy WithStrategy(IWaitWhile waitWhile)
{
_waitWhile = waitWhile;
return this;
}
/// <summary>
/// Sets the wait until condition.
/// </summary>
/// <param name="waitUntil">The wait until condition to be used in the strategy.</param>
/// <returns>The updated instance of the wait strategy.</returns>
private WaitStrategy WithStrategy(IWaitUntil waitUntil)
{
_waitUntil = waitUntil;
return this;
}
}
}