Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit 38ba99c

Browse files
committed
Refine function assertions
1 parent 08abbfe commit 38ba99c

10 files changed

+177
-280
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ The main additions are the new assertions for
1919
### Added
2020

2121
- Add `True`, `False`, `NoError` assertion functions.
22+
- Add `Panics`, `NoPanic` assertion functions.
23+
- Add `Eventually`, `EventuallyChan` assertion functions.
2224
- Add `Ordered` function which provides following assertions,
2325
in addition to `Comparable`, via `FluentOrdered` type:
2426
- `Lesser`

README.md

+6-9
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ $ go test
122122
TODO
123123
```
124124

125-
### Asynchronous (periodic polling)
125+
### Periodic polling
126126

127127
```go
128128
package test
@@ -135,26 +135,23 @@ import (
135135
"github.com/fluentassert/verify"
136136
)
137137

138-
func TestAsync(t *testing.T) {
139-
verify.Periodic(10*time.Second, time.Second, func() verify.FailureMessage {
138+
func TestPeriodic(t *testing.T) {
139+
verify.Eventually(10*time.Second, time.Second, func() verify.FailureMessage {
140140
client := http.Client{Timeout: time.Second}
141141
resp, err := client.Get("http://not-existing:1234")
142142
if err != nil {
143143
return verify.NoError(err)
144144
}
145145
return verify.Number(resp.StatusCode).Lesser(300)
146-
}).Eventually().Assert(t)
146+
}).Assert(t)
147147
}
148148
```
149149

150150
```sh
151151
$ go test
152-
--- FAIL: TestAsync (10.00s)
152+
--- FAIL: TestPeriodic (10.00s)
153153
async_test.go:19:
154-
timeout
155-
function always failed
156-
last failure message:
157-
non-nil error:
154+
function never passed, last failure message:
158155
Get "http://not-existing:1234": context deadline exceeded (Client.Timeout exceeded while awaiting headers)
159156
```
160157

async.go

-111
This file was deleted.

async_test.go

-115
This file was deleted.

eventually.go

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
package verify
2+
3+
import (
4+
"time"
5+
)
6+
7+
// Eventually executes the test function until it returns an empty FailureMessage
8+
// or timeout elapses.
9+
func Eventually(timeout, interval time.Duration, fn func() FailureMessage) FailureMessage {
10+
timer := time.NewTimer(timeout)
11+
defer timer.Stop()
12+
ticker := time.NewTicker(interval)
13+
defer ticker.Stop()
14+
return EventuallyChan(timer.C, ticker.C, fn)
15+
}
16+
17+
// EventuallyChan executes the test function until it returns an empty FailureMessage or timeout elapses.
18+
func EventuallyChan[TTimerPayload, TTickPayload any](timeout <-chan (TTimerPayload), ticker <-chan (TTickPayload), fn func() FailureMessage) FailureMessage {
19+
var err string
20+
failMsg := func(cause string) FailureMessage {
21+
return FailureMessage("function never passed, last failure message:\n" + err)
22+
}
23+
24+
for {
25+
select {
26+
case <-timeout:
27+
return failMsg("timeout")
28+
default:
29+
}
30+
31+
err = string(fn())
32+
33+
select {
34+
case <-timeout:
35+
return failMsg("timeout")
36+
default:
37+
}
38+
39+
if err == "" {
40+
return ""
41+
}
42+
43+
select {
44+
case <-timeout:
45+
return failMsg("timeout")
46+
case <-ticker:
47+
}
48+
}
49+
}

0 commit comments

Comments
 (0)