-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuntil_test.go
130 lines (116 loc) · 2.75 KB
/
until_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
package async_test
import (
"context"
"errors"
"fmt"
"testing"
"time"
"github.com/ghosind/go-assert"
"github.com/ghosind/go-async"
)
func TestUntil(t *testing.T) {
a := assert.New(t)
count := 0
out, err := async.Until(func(c int) bool {
return c < 5
}, func() int {
count++
return count
})
a.NilNow(err)
a.EqualNow(out, []any{5})
}
func TestUntilInvalidParameters(t *testing.T) {
a := assert.New(t)
a.PanicOfNow(func() {
async.Until(nil, func() {})
}, async.ErrNotFunction)
a.PanicOfNow(func() {
async.Until(func() {}, nil)
}, async.ErrNotFunction)
a.PanicOfNow(func() {
async.Until(1, "hello")
}, async.ErrNotFunction)
a.PanicOfNow(func() {
async.Until(func() {}, func() {})
}, async.ErrInvalidTestFunc)
a.NotPanicNow(func() {
async.Until(func() bool { return false }, func() {})
})
a.NotPanicNow(func() {
async.Until(func(err error) bool { return false }, func() error { return nil })
})
a.NotPanicNow(func() {
async.Until(func(ctx context.Context, err error) bool { return false }, func() error { return nil })
})
a.NotPanicNow(func() {
async.Until(func(ctx context.Context) bool { return false }, func() error { return nil })
})
a.PanicOfNow(func() {
async.Until(func(ctx context.Context, i int) bool { return false }, func() error { return nil })
}, async.ErrInvalidTestFunc)
a.PanicOfNow(func() {
async.Until(func(ctx context.Context, i int) bool { return false }, func() {})
}, async.ErrInvalidTestFunc)
}
func TestUntilWithFunctionError(t *testing.T) {
a := assert.New(t)
count := 0
unexpectedErr := errors.New("unexpected error")
out, err := async.Until(func(c int, err error) bool {
return c < 5
}, func() (int, error) {
count++
return count, unexpectedErr
})
a.NilNow(err)
a.EqualNow(out, []any{5, unexpectedErr})
}
func TestUntilWithTestFunctionError(t *testing.T) {
a := assert.New(t)
expectedErr := errors.New("expected error")
out, err := async.Until(func(n int) bool {
panic(expectedErr)
}, func() int {
return 0
})
a.NotNilNow(err)
a.IsErrorNow(err, expectedErr)
a.EqualNow(out, []any{0})
}
func TestUntilWithContext(t *testing.T) {
a := assert.New(t)
start := time.Now()
ctx, canFunc := context.WithTimeout(context.Background(), 100*time.Millisecond)
defer canFunc()
out, err := async.UntilWithContext(ctx, func(ctx context.Context) bool {
select {
case <-ctx.Done():
return false
default:
return true
}
}, func() {
})
a.NilNow(err)
a.EqualNow(out, []any{})
dur := time.Since(start)
a.GteNow(dur, 100*time.Millisecond)
a.LteNow(dur, 150*time.Millisecond)
}
func ExampleUntil() {
i := 0
out, err := async.Until(func(n int) bool {
return n < 3
}, func() int {
i++
return i
})
fmt.Println(i)
fmt.Println(out)
fmt.Println(err)
// Output:
// 3
// [3]
// <nil>
}