-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwheel_test.go
126 lines (123 loc) · 2.56 KB
/
wheel_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
package wtime
import (
//"container/list"
//"sync"
//"fmt"
//"runtime"
"testing"
"time"
)
//func NewWheelTest(tick time.Duration, in <-chan time.Time) *Wheel {
// w := &Wheel{
// add: make(chan *timer),
// tick: tick,
// ticker: time.NewTicker(10 * time.Minute),
// tran: make(chan time.Time),
// in: in,
//
// overflow: make(chan time.Time, 1),
//
// quit: make(chan struct{}),
// }
//
// w.wheelers[0] = &wheeler{
// i: t_bits[0],
// mask: (1 << t_bits[0]) - 1,
// in: w.tran,
// out: w.overflow,
// add: make(chan *timer),
// w: w,
// tv: make([]*list.List, 1<<t_bits[0]),
// }
// for i := range w.wheelers[0].tv {
// w.wheelers[0].tv[i] = list.New()
// }
// w.wg.Add(1)
// go w.wheelers[0].wheel()
//
// w.wg.Add(1)
// go w.loop()
//
// return w
//}
//
//func TestWheel(t *testing.T) {
// in := make(chan time.Time)
// //var tt time.Time
// w := NewWheelTest(1*time.Millisecond, in)
//
// test_arr := []struct {
// d time.Duration
// cnt int
// res int
// }{
// {0x10, 1, 1},
// {0x100, 2, 1},
// {0x4000, 3, 1},
// {0x43450, 3, 1},
// }
//
// for _, test := range test_arr {
// test_t := time.Now()
// test_data := &testType{
// t: t,
// tm: test_t,
// }
// test_data.wg.Add(1)
// tm := w.newTimer(test.d*time.Millisecond, 0, testFunc, test_data)
// fmt.Printf("for begin %08x\n", int64(test.d))
// w.addTimer(tm)
// //test_data.wg.Wait()
// //for i := 0; i < test.cnt; i++ {
// // test_data.wg.Add(1)
// //}
// i := 0
// for {
// if i < int(test.d) {
// in <- test_t
// } else {
// break
// }
// if i%256 == 0 {
// runtime.Gosched()
// //time.Sleep(400 * time.Millisecond)
// }
// i++
// }
// fmt.Println("for end")
// test_data.wg.Wait()
// if test_data.count != test.res {
// t.Fatalf("count %d", test_data.count)
// }
// }
// w.Stop()
//}
func TestSleep(t *testing.T) {
test_data := []struct {
d time.Duration
sub time.Duration
}{
{200, 200},
{300, 400},
{299, 200},
}
w := NewWheel(200 * time.Millisecond)
for _, data := range test_data {
start := time.Now()
//t.Logf("%s", start)
w.Sleep(data.d * time.Millisecond)
end := time.Now()
t.Logf("sub:%s", end.Sub(start)-data.sub*time.Millisecond)
if end.Sub(start)-data.sub*time.Millisecond > time.Millisecond {
t.Fatalf("sleep fatal. %s %s", start, end)
}
}
start := time.Now()
time.Sleep(200 * time.Millisecond)
end := time.Now()
t.Logf("go timer sub:%s", end.Sub(start)-200*time.Millisecond)
if end.Sub(start)-200*time.Millisecond > time.Millisecond {
t.Fatalf("sleep fatal. %s %s", start, end)
}
w.Stop()
}