-
Notifications
You must be signed in to change notification settings - Fork 436
/
Copy pathgoroutine_test.go
95 lines (79 loc) · 2.18 KB
/
goroutine_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
package sdk
import (
"bytes"
"context"
"testing"
"time"
"github.com/stretchr/testify/require"
)
func Test_GoroutineTools(t *testing.T) {
t.Run("GoroutineID()", func(t *testing.T) {
require.NotEqual(t, uint64(0), GoroutineID())
})
t.Run("GoRoutineStacks(...)", func(t *testing.T) {
var w = new(bytes.Buffer)
require.NoError(t, writeGoroutineStacks(w))
_, err := parseGoRoutineStacks(w, nil)
require.NoError(t, err)
})
t.Run("GoRoutineRun", func(t *testing.T) {
ctx, cancel := context.WithTimeout(context.TODO(), time.Second)
t.Cleanup(cancel)
m := NewGoRoutines(ctx)
ctxRoutine, routineCancel := context.WithCancel(context.TODO())
m.Run(context.TODO(), "test_goroutine_run", func(_ context.Context) {
<-ctxRoutine.Done()
})
s := m.GoRoutine("test_goroutine_run")
require.NotNil(t, s)
require.True(t, s.Active)
require.Len(t, m.GetStatus(), 1)
routineCancel()
// Wait for the routine status to change
ticker := time.NewTicker(1 * time.Millisecond)
t.Cleanup(ticker.Stop)
wait:
for {
select {
case <-ctx.Done():
break wait
case <-ticker.C:
s = m.GoRoutine("test_goroutine_run")
if s != nil && !s.Active {
break wait
}
}
}
s = m.GoRoutine("test_goroutine_run")
require.NotNil(t, s)
require.False(t, s.Active)
})
t.Run("GoRoutineRunCancel", func(t *testing.T) {
ctx, cancel := context.WithCancel(context.TODO())
t.Cleanup(cancel)
m := NewGoRoutines(ctx)
ctxToCancelled, cancelRoutine := context.WithTimeout(context.TODO(), 5*time.Second)
var cancelled bool
m.Run(context.TODO(), "test_goroutine_run_cancel", func(ctx context.Context) {
<-ctx.Done()
cancelled = true
cancelRoutine()
})
require.False(t, cancelled)
m.Stop("test_goroutine_run_cancel")
<-ctxToCancelled.Done()
require.True(t, cancelled)
})
t.Run("GoRoutineRunWithRestart", func(t *testing.T) {
ctx, cancel := context.WithTimeout(context.TODO(), 15*time.Second)
t.Cleanup(cancel)
m := NewGoRoutines(ctx)
var count int
m.RunWithRestart(context.TODO(), "test_goroutine_run_with_restart", func(ctx context.Context) {
count++
})
// the routine should have restart 1 time
<-ctx.Done()
require.Equal(t, 2, count)
})
}