-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuture_map_test.go
118 lines (104 loc) · 2.78 KB
/
future_map_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
package promise
import (
"context"
"fmt"
"github.com/stretchr/testify/assert"
"testing"
"time"
)
func TestFutureMap_Await(t *testing.T) {
t.Run("against 2 resolvable futures", func(t *testing.T) {
m := NewMap[any](
map[any]any{
"my_promise": New(func(ctx context.Context) (any, error) {
time.Sleep(300 * time.Millisecond)
return "OK", nil
}),
1: New(func(ctx context.Context) (any, error) {
time.Sleep(300 * time.Millisecond)
return true, nil
}),
},
).TimeOutLimit(400 * time.Millisecond)
actualResultMap := m.Await()
assert.Equal(
t,
map[interface{}]Output[any]{
"my_promise": newOutput[any]("OK", nil),
1: newOutput[any](true, nil),
},
*actualResultMap,
)
})
t.Run("against 2 rejectable futures", func(t *testing.T) {
m := NewMap[any](
map[any]any{
"my_promise": New(func(ctx context.Context) (any, error) {
time.Sleep(300 * time.Millisecond)
return "", fmt.Errorf("oops")
}),
1: New(func(ctx context.Context) (any, error) {
time.Sleep(300 * time.Millisecond)
return false, fmt.Errorf("oops")
}),
},
).TimeOutLimit(400 * time.Millisecond)
actualResultMap := m.Await()
assert.Equal(
t,
map[interface{}]Output[any]{
"my_promise": newOutput[any](nil, fmt.Errorf("oops")),
1: newOutput[any](nil, fmt.Errorf("oops")),
},
*actualResultMap,
)
})
t.Run("against 3 futures, one of them taking too long", func(t *testing.T) {
m := NewMap[any](
map[any]any{
"my_promise": New(func(ctx context.Context) (any, error) {
time.Sleep(100 * time.Millisecond)
return "OK", nil
}),
1: New(func(ctx context.Context) (any, error) {
time.Sleep(500 * time.Millisecond)
return 1, nil
}),
true: New(func(ctx context.Context) (any, error) {
time.Sleep(200 * time.Millisecond)
return true, nil
}),
},
).TimeOutLimit(300 * time.Millisecond)
actualResultMap := m.Await()
assert.Equal(
t,
map[interface{}]Output[any]{
1: newOutput[any](nil, context.DeadlineExceeded),
true: newOutput[any](true, nil),
"my_promise": newOutput[any]("OK", nil),
},
*actualResultMap,
)
})
}
func TestFutureMap_Race(t *testing.T) {
t.Run("against 2 resolvable futures", func(t *testing.T) {
m := NewMap[any](
map[any]any{
"my_promise": New(func(ctx context.Context) (any, error) {
time.Sleep(300 * time.Millisecond)
return "OK", nil
}),
1: New(func(ctx context.Context) (any, error) {
time.Sleep(200 * time.Millisecond)
return true, nil
}),
},
).TimeOutLimit(400 * time.Millisecond)
actualKey, actualPayload, actualError := m.Race()
assert.Equal(t, 1, actualKey)
assert.Equal(t, true, actualPayload)
assert.Equal(t, nil, actualError)
})
}