-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpromise_test.go
196 lines (140 loc) · 3.43 KB
/
promise_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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
package promise
import (
"testing"
"time"
)
func TestBasicPromise(t *testing.T) {
x, err := Create(func() (interface{}, interface{}) {
return 42, nil
}).Wait()
if err != nil {
t.Error("Expected err to be nil got", err)
}
if x != 42 {
t.Error("Expected x to be 42 got", x)
}
}
func TestSleep(t *testing.T) {
x, err := Create(func() (interface{}, interface{}) {
time.Sleep(100 * time.Millisecond)
return 42, nil
}).Wait()
if err != nil {
t.Error("Expected err to be nil got", err)
}
if x != 42 {
t.Error("Expected x to be 42 got", x)
}
}
func TestThen(t *testing.T) {
x, err := Create(func() (interface{}, interface{}) {
return 42, nil
}).Then(func(ret interface{}) (interface{}, interface{}) {
x := ret.(int)
return x * 2, nil
}).Wait()
if err != nil {
t.Error("Expected err to be nil got", err)
}
if x != 84 {
t.Error("Expected x to be 84 got", x)
}
}
func TestNestedCreate(t *testing.T) {
x, err := Create(func() (interface{}, interface{}) {
return Create(func() (interface{}, interface{}) { return 42, nil }), nil
}).Then(func(ret interface{}) (interface{}, interface{}) {
x := ret.(int)
return x * 2, nil
}).Wait()
if err != nil {
t.Error("Expected err to be nil got", err)
}
if x != 84 {
t.Error("Expected x to be 84 got", x)
}
}
func TestNestedThen(t *testing.T) {
x, err := Create(func() (interface{}, interface{}) {
return 42, nil
}).Then(func(ret interface{}) (interface{}, interface{}) {
x := ret.(int)
return Create(func() (interface{}, interface{}) { return x * 2, nil }), nil
}).Wait()
if err != nil {
t.Error("Expected err to be nil got", err)
}
if x != 84 {
t.Error("Expected x to be 84 got", x)
}
}
func TestDelayedThen(t *testing.T) {
var p *SPromise
p = Create(func() (interface{}, interface{}) {
return 42, nil
})
time.Sleep(100 * time.Millisecond)
p.Then(func(ret interface{}) (interface{}, interface{}) {
x := ret.(int)
return x * 2, nil
})
x, err := p.Wait()
if err != nil {
t.Error("Expected err to be nil got", err)
}
if x != 84 {
t.Error("Expected x to be 84 got", x)
}
}
func TestError(t *testing.T) {
x, err := Create(func() (interface{}, interface{}) {
return true, nil
}).Then(func(ret interface{}) (interface{}, interface{}) {
return true, true
}).Then(func(ret interface{}) (interface{}, interface{}) {
t.Error("Then should not execute on error")
return true, nil
}).Wait()
if err != true {
t.Error("Expected err to be true got", err)
}
if x != nil {
t.Error("Expected x to be nil got", x)
}
}
func TestDelayedWait(t *testing.T) {
p := Create(func() (interface{}, interface{}) {
return 42, nil
})
time.Sleep(100 * time.Millisecond)
x, err := p.Wait()
if err != nil {
t.Error("Expected err to be nil got", err)
}
if x != 42 {
t.Error("Expected x to be 42 got", x)
}
}
func TestAll(t *testing.T) {
x, err := Create(func() (interface{}, interface{}) {
return [...]*SPromise{
Create(func() (interface{}, interface{}) { return 1, nil }),
Create(func() (interface{}, interface{}) { return 2, nil }),
Create(func() (interface{}, interface{}) { return 3, nil }),
}, nil
}).All().Wait()
if err != nil {
t.Error("Expected err to be nil got", err)
}
xi := x.([]interface{})
if len(xi) != 3 {
t.Error("Expected length of 3 got", len(xi))
}
var sum int
for i := 0; i < len(xi); i++ {
sum = sum + xi[i].(int)
}
if sum != 6 {
t.Error("Expected sum to be 6 got", sum)
}
}