-
Notifications
You must be signed in to change notification settings - Fork 17
/
future_test.go
50 lines (38 loc) · 1.02 KB
/
future_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
package proton_test
import (
"math/rand"
"testing"
"time"
"github.com/ProtonMail/gluon/async"
"github.com/ProtonMail/go-proton-api"
"github.com/stretchr/testify/require"
)
func TestFuture(t *testing.T) {
resCh := make(chan int)
proton.NewFuture(async.NoopPanicHandler{}, func() (int, error) {
return 42, nil
}).Then(func(res int, err error) {
resCh <- res
})
require.Equal(t, 42, <-resCh)
}
func TestGroup(t *testing.T) {
group := proton.NewGroup[int](async.NoopPanicHandler{})
for i := 0; i < 10; i++ {
i := i
group.Add(func() (int, error) {
// Sleep a random amount of time so that results are returned in a random order.
time.Sleep(time.Duration(rand.Int()%10) * time.Millisecond) //nolint:gosec
// Return the job index [0, 10].
return i, nil
})
}
resCh := make(chan int)
go func() {
require.Equal(t, group.ForEach(func(res int) error { resCh <- res; return nil }), nil)
}()
// Results should be returned in the original order.
for i := 0; i < 10; i++ {
require.Equal(t, i, <-resCh)
}
}