-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhile_test.go
119 lines (105 loc) · 2.31 KB
/
while_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
package async_test
import (
"context"
"errors"
"fmt"
"testing"
"time"
"github.com/ghosind/go-assert"
"github.com/ghosind/go-async"
)
func TestWhile(t *testing.T) {
a := assert.New(t)
count := 0
out, err := async.While(func() bool {
return count < 5
}, func() int {
count++
return count
})
a.NilNow(err)
a.EqualNow(out, []any{5})
}
func TestWhileInvalidParameters(t *testing.T) {
a := assert.New(t)
a.PanicOfNow(func() {
async.While(nil, func() {})
}, async.ErrNotFunction)
a.PanicOfNow(func() {
async.While(func() {}, nil)
}, async.ErrNotFunction)
a.PanicOfNow(func() {
async.While(1, "hello")
}, async.ErrNotFunction)
a.PanicOfNow(func() {
async.While(func() {}, func() {})
}, async.ErrInvalidTestFunc)
a.NotPanicNow(func() {
async.While(func() bool { return false }, func() {})
})
a.NotPanicNow(func() {
async.While(func(ctx context.Context) bool { return false }, func() {})
})
a.PanicOfNow(func() {
async.While(func(ctx context.Context, i int) bool { return false }, func() {})
}, async.ErrInvalidTestFunc)
}
func TestWhileWithTestFunctionError(t *testing.T) {
a := assert.New(t)
expectedErr := errors.New("expected error")
out, err := async.While(func() bool {
panic(expectedErr)
}, func() int {
return 0
})
a.NotNilNow(err)
a.IsErrorNow(err, expectedErr)
a.EqualNow(out, []any{})
}
func TestWhileWithFunctionError(t *testing.T) {
a := assert.New(t)
expectedErr := errors.New("expected error")
out, err := async.While(func() bool {
return true
}, func() (int, error) {
return 0, expectedErr
})
a.NotNilNow(err)
a.IsErrorNow(err, expectedErr)
a.EqualNow(out, []any{0, expectedErr})
}
func TestWhileWithContext(t *testing.T) {
a := assert.New(t)
start := time.Now()
ctx, canFunc := context.WithTimeout(context.Background(), 100*time.Millisecond)
defer canFunc()
out, err := async.WhileWithContext(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 ExampleWhile() {
i := 0
out, err := async.While(func() bool {
return i < 3
}, func() {
i++
})
fmt.Println(i)
fmt.Println(out)
fmt.Println(err)
// Output:
// 3
// []
// <nil>
}