-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassert_eventually.go
More file actions
262 lines (220 loc) · 6.27 KB
/
assert_eventually.go
File metadata and controls
262 lines (220 loc) · 6.27 KB
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
package testastic
import (
"testing"
"time"
)
// Default configuration values for Eventually.
const (
defaultEventuallyInterval = 100 * time.Millisecond
)
type eventuallyConfig struct {
Interval time.Duration
Message string
}
// EventuallyOption configures Eventually behavior using functional options
// (see [WithInterval] and [WithMessage]).
type EventuallyOption func(*eventuallyConfig)
// WithInterval sets the polling interval between condition checks.
// Default is 100ms.
func WithInterval(d time.Duration) EventuallyOption {
return func(c *eventuallyConfig) {
c.Interval = d
}
}
// WithMessage adds context to the timeout failure message, helping identify
// which Eventually assertion failed when a test has multiple.
func WithMessage(msg string) EventuallyOption {
return func(c *eventuallyConfig) {
c.Message = msg
}
}
func newEventuallyConfig(opts ...EventuallyOption) *eventuallyConfig {
cfg := &eventuallyConfig{
Interval: defaultEventuallyInterval,
}
for _, opt := range opts {
opt(cfg)
}
if cfg.Interval <= 0 {
cfg.Interval = defaultEventuallyInterval
}
return cfg
}
// eventually is the core retry logic shared by all Eventually variants.
func eventually(
tb testing.TB, name string, condition func() bool, timeout time.Duration, cfg *eventuallyConfig,
) {
tb.Helper()
eventuallyWithValue(tb, name, condition, func(v bool) bool { return v }, func(bool) string { return "" }, timeout, cfg)
}
// eventuallyWithValue is a generic retry helper that captures the last value for error formatting.
func eventuallyWithValue[T any](
tb testing.TB,
name string,
getValue func() T,
condition func(T) bool,
formatFailure func(lastValue T) string,
timeout time.Duration,
cfg *eventuallyConfig,
) {
tb.Helper()
var lastValue T
check := func() bool {
lastValue = getValue()
return condition(lastValue)
}
// Check immediately first.
if check() {
return
}
ticker := time.NewTicker(cfg.Interval)
timer := time.NewTimer(timeout)
defer ticker.Stop()
defer timer.Stop()
for {
select {
case <-ticker.C:
if check() {
return
}
case <-timer.C:
msg := ""
if cfg.Message != "" {
msg = "\n message: " + cfg.Message
}
tb.Errorf(
"testastic: assertion failed\n\n %s%s\n timed out after %v%s",
name, formatFailure(lastValue), timeout, msg,
)
return
}
}
}
// Eventually retries a condition function until it returns true or timeout is reached.
// The condition is checked immediately, then at regular intervals (default 100ms).
//
// Example:
//
// testastic.Eventually(t, func() bool {
// return server.IsReady()
// }, 5*time.Second)
//
// testastic.Eventually(t, func() bool {
// return len(queue) > 0
// }, 2*time.Second, testastic.WithInterval(50*time.Millisecond))
func Eventually(tb testing.TB, condition func() bool, timeout time.Duration, opts ...EventuallyOption) {
tb.Helper()
cfg := newEventuallyConfig(opts...)
eventually(tb, "Eventually", condition, timeout, cfg)
}
// EventuallyTrue is an alias for Eventually for readability.
//
// Example:
//
// testastic.EventuallyTrue(t, func() bool {
// return isReady
// }, 3*time.Second)
func EventuallyTrue(tb testing.TB, condition func() bool, timeout time.Duration, opts ...EventuallyOption) {
tb.Helper()
cfg := newEventuallyConfig(opts...)
eventually(tb, "EventuallyTrue", condition, timeout, cfg)
}
// EventuallyFalse retries until condition returns false.
//
// Example:
//
// testastic.EventuallyFalse(t, func() bool {
// return server.IsProcessing()
// }, 5*time.Second)
func EventuallyFalse(tb testing.TB, condition func() bool, timeout time.Duration, opts ...EventuallyOption) {
tb.Helper()
cfg := newEventuallyConfig(opts...)
eventually(tb, "EventuallyFalse", func() bool { return !condition() }, timeout, cfg)
}
// EventuallyEqual retries until expected equals the result of getValue.
//
// Example:
//
// testastic.EventuallyEqual(t, "ready", func() string {
// return service.Status()
// }, 3*time.Second)
func EventuallyEqual[T comparable](
tb testing.TB, expected T, getValue func() T, timeout time.Duration, opts ...EventuallyOption,
) {
tb.Helper()
cfg := newEventuallyConfig(opts...)
eventuallyWithValue(
tb,
"EventuallyEqual",
getValue,
func(v T) bool { return v == expected },
func(lastValue T) string {
return "\n expected: " + red(formatVal(expected)) + "\n actual: " + green(formatVal(lastValue))
},
timeout,
cfg,
)
}
// EventuallyNil retries until getValue returns nil.
//
// Example:
//
// testastic.EventuallyNil(t, func() any {
// return cache.Get("key")
// }, 2*time.Second)
func EventuallyNil(tb testing.TB, getValue func() any, timeout time.Duration, opts ...EventuallyOption) {
tb.Helper()
cfg := newEventuallyConfig(opts...)
eventually(tb, "EventuallyNil", func() bool { return isNil(getValue()) }, timeout, cfg)
}
// EventuallyNotNil retries until getValue returns a non-nil value.
//
// Example:
//
// testastic.EventuallyNotNil(t, func() any {
// return cache.Get("key")
// }, 2*time.Second)
func EventuallyNotNil(tb testing.TB, getValue func() any, timeout time.Duration, opts ...EventuallyOption) {
tb.Helper()
cfg := newEventuallyConfig(opts...)
eventually(tb, "EventuallyNotNil", func() bool { return !isNil(getValue()) }, timeout, cfg)
}
// EventuallyNoError retries until getErr returns nil.
//
// Example:
//
// testastic.EventuallyNoError(t, func() error {
// _, err := client.Ping()
// return err
// }, 5*time.Second)
func EventuallyNoError(tb testing.TB, getErr func() error, timeout time.Duration, opts ...EventuallyOption) {
tb.Helper()
cfg := newEventuallyConfig(opts...)
eventuallyWithValue(
tb,
"EventuallyNoError",
getErr,
func(err error) bool { return err == nil },
func(lastErr error) string {
errStr := "nil"
if lastErr != nil {
errStr = lastErr.Error()
}
return "\n last error: " + red(errStr)
},
timeout,
cfg,
)
}
// EventuallyError retries until getErr returns a non-nil error.
//
// Example:
//
// testastic.EventuallyError(t, func() error {
// return service.HealthCheck()
// }, 3*time.Second)
func EventuallyError(tb testing.TB, getErr func() error, timeout time.Duration, opts ...EventuallyOption) {
tb.Helper()
cfg := newEventuallyConfig(opts...)
eventually(tb, "EventuallyError", func() bool { return getErr() != nil }, timeout, cfg)
}