This repository has been archived by the owner on Dec 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
coop_test.go
160 lines (147 loc) · 3.78 KB
/
coop_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
// Copyright 2014 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package coop
import (
"testing"
"time"
)
func TestAt_Future(test *testing.T) {
start := time.Now()
done := At(start.Add(100*time.Millisecond), func() {
diff := time.Now().Sub(start)
if diff > 105*time.Millisecond {
test.Errorf("Expected to run in 100 ms, it did in %v", diff)
}
})
<-done
}
func TestAt_Past(test *testing.T) {
start := time.Now()
done := At(start.Add(-100*time.Millisecond), func() {})
<-done
diff := time.Now().Sub(start)
if diff > time.Millisecond {
test.Errorf("Expected to return immediately, but it took %v", diff)
}
}
func TestAfter_Future(test *testing.T) {
start := time.Now()
done := After(100*time.Millisecond, func() {
diff := time.Now().Sub(start)
if diff > 105*time.Millisecond {
test.Errorf("Expected to run in 100 ms, it did in %v", diff)
}
})
<-done
}
func TestEvery(test *testing.T) {
dur := 10 * time.Millisecond
count := 0
Every(dur, func() {
count++
})
<-time.After(100 * time.Millisecond)
count++
if count < 9 {
test.Errorf("Expected to run in at least 9 times, it did %v times", count)
}
}
func TestUntil_Future(test *testing.T) {
count := 0
done := Until(time.Now().Add(100*time.Millisecond), 10*time.Millisecond, func() {
count++
})
<-done
if count < 9 {
test.Errorf("Expected to run for at least for 9 times, but it ran for %v times", count)
}
}
func TestUntil_Past(test *testing.T) {
count := 0
done := Until(time.Now().Add(-100*time.Millisecond), 10*time.Millisecond, func() {
count++
})
<-done
if count != 0 {
test.Errorf("Expected to run for at least for 0 times, but it ran for %v times", count)
}
}
func TestTimeout_TimedOut(test *testing.T) {
done := Timeout(100*time.Millisecond, func() {
time.Sleep(time.Minute)
})
if <-done {
test.Errorf("Expected to get timed out, but it has been completed")
}
}
func TestTimeout_Completed(test *testing.T) {
done := Timeout(time.Minute, func() {
time.Sleep(100 * time.Millisecond)
})
if !<-done {
test.Errorf("Expected to get completed, but it has been timed out")
}
}
func TestAll(test *testing.T) {
start := time.Now()
var val1, val2, val3 bool
done := All(func() {
val1 = true
time.Sleep(100 * time.Millisecond)
}, func() {
val2 = true
time.Sleep(100 * time.Millisecond)
}, func() {
val3 = true
time.Sleep(100 * time.Millisecond)
})
<-done
diff := time.Now().Sub(start)
if diff > 105*time.Millisecond {
test.Errorf("All takes too long to complete")
}
if !(val1 && val2 && val3) {
test.Errorf("Expected all to run, but at least one didn't")
}
}
func TestAllWithThrottle(test *testing.T) {
start := time.Now()
fn := func() {
time.Sleep(100 * time.Millisecond)
}
done := AllWithThrottle(3, fn, fn, fn, fn, fn)
<-done
diff := time.Now().Sub(start)
if diff > 205*time.Millisecond {
test.Errorf("All with throttle takes too long to complete")
}
if diff < 105*time.Millisecond {
test.Errorf("All with throttle doesn't take long, throttling may not work")
}
}
func TestReplicate(test *testing.T) {
results := make(chan bool, 5)
done := Replicate(5, func() {
results <- true
})
<-done
close(results)
count := 0
for _ = range results {
count++
}
if count != 5 {
test.Errorf("Expected 5 to run, but %v worked", count)
}
}