-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunner_test.go
178 lines (132 loc) · 3.3 KB
/
runner_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
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 gorun_test
import (
"sync/atomic"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/vogo/gorun"
)
const goroutineScheduleInterval = time.Millisecond * 10
func TestRunnerStop(t *testing.T) {
t.Parallel()
s1 := gorun.New()
s1.Defer(func() {
t.Log("s1 stopped 2")
})
s1.Defer(func() {
t.Log("s1 stopped 1")
})
// run loop task until s1 closed.
s1.Loop(func() {
t.Log("s1 run loop task")
time.Sleep(time.Millisecond * 3)
})
// run interval task until s1 closed.
s1.Interval(func() {
t.Log("s1 run interval task")
}, time.Millisecond)
go func() {
ticker := time.NewTicker(time.Millisecond * 2)
for {
select {
case <-s1.C:
return
case <-ticker.C:
t.Log("run ticker task until s1 stopped")
}
}
}()
s2 := s1.NewChild()
s2.Defer(func() {
t.Log("s2 stopped")
})
s3 := s2.NewChild()
s3.Defer(func() {
t.Log("s3 stopped")
})
time.Sleep(goroutineScheduleInterval)
s1.Stop()
s1.Interval(func() {
t.Fatal("should not run interval task after s1 stopped")
}, time.Millisecond)
time.Sleep(goroutineScheduleInterval)
}
func TestRunner(t *testing.T) {
t.Parallel()
s := gorun.New()
var (
status1 int64
status2 int64
)
s.Defer(func() {
atomic.StoreInt64(&status1, 1)
})
s.Defer(func() {
atomic.StoreInt64(&status2, 2)
})
s.StopWith(func() {
t.Log("s stopped")
})
assert.Equal(t, int64(1), atomic.LoadInt64(&status1))
assert.Equal(t, int64(2), atomic.LoadInt64(&status2))
// stop again wont panic
s.Stop()
}
func TestNewChild(t *testing.T) {
t.Parallel()
s := gorun.New()
doTestParentChildRunner(t, s, s.NewChild())
}
func TestNewParent(t *testing.T) {
t.Parallel()
s := gorun.New()
doTestParentChildRunner(t, s.NewParent(), s)
}
func doTestParentChildRunner(t *testing.T, parent, child *gorun.Runner) {
t.Helper()
var (
status1 int64
status2 int64
)
child.Defer(func() {
atomic.StoreInt64(&status1, 1)
})
parent.Defer(func() {
atomic.StoreInt64(&status2, 2)
})
parent.Stop()
time.Sleep(goroutineScheduleInterval)
assert.Equal(t, int64(1), atomic.LoadInt64(&status1))
assert.Equal(t, int64(2), atomic.LoadInt64(&status2))
}
func TestNewChildFromChan(t *testing.T) {
t.Parallel()
c := make(chan struct{})
s := gorun.NewChild(c)
var status1 int64
s.Defer(func() {
atomic.AddInt64(&status1, 1)
})
time.Sleep(goroutineScheduleInterval)
close(c)
time.Sleep(goroutineScheduleInterval)
assert.Equal(t, int64(1), atomic.LoadInt64(&status1))
s.Stop()
assert.Equal(t, int64(1), atomic.LoadInt64(&status1))
}