-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuffer_test.go
157 lines (134 loc) · 2.56 KB
/
buffer_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
package buff
import (
"log"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
type collectedItems[T any] struct {
pushes *[][]T
when *[]time.Time
fn func(items []T)
}
func (c *collectedItems[T]) Equals(t *testing.T, items [][]T) {
assert.Equal(t, items, *c.pushes)
}
func getFn[T any]() *collectedItems[T] {
pushes := make([][]T, 0)
when := make([]time.Time, 0)
return &collectedItems[T]{
pushes: &pushes,
when: &when,
fn: func(items []T) {
t := time.Now()
log.Println("Flush", items)
pushes = append(pushes, items)
when = append(when, t)
},
}
}
func TestBuffer_Init(t *testing.T) {
fn := func(items []string) {
log.Println("Flush", items)
}
b := NewBuffer(fn, 5, time.Millisecond*100)
b.Start()
defer b.Close()
}
func TestBuffer_FewItems1(t *testing.T) {
str := getFn[string]()
b := NewBuffer(str.fn, 5, time.Millisecond*100)
b.Start()
b.Push("1")
b.Push("2")
b.Push("3")
b.Push("4")
time.Sleep(time.Millisecond * 150)
b.Push("5")
time.Sleep(time.Millisecond * 150)
b.Push("6")
b.Close()
var expected = [][]string{
{"1", "2", "3", "4"},
{"5"},
{"6"},
}
str.Equals(t, expected)
}
func TestBuffer_FewItems2(t *testing.T) {
str := getFn[string]()
b := NewBuffer(str.fn, 2, time.Millisecond*100)
b.Start()
b.Push("1")
b.Push("2")
b.Push("3")
b.Push("4")
time.Sleep(time.Millisecond * 150)
b.Push("5")
time.Sleep(time.Millisecond * 100)
b.Push("6")
b.Close()
var expected = [][]string{
{"1", "2"},
{"3", "4"},
{"5"},
{"6"},
}
str.Equals(t, expected)
}
func TestBuffer_FewItems3(t *testing.T) {
str := getFn[string]()
b := NewBuffer(str.fn, 10, time.Millisecond*100)
b.Start()
b.Push("1")
time.Sleep(time.Millisecond * 150)
b.Push("2")
b.Push("3")
b.Push("4")
time.Sleep(time.Millisecond * 150)
b.Push("5")
b.Push("6")
b.Push("7")
time.Sleep(time.Millisecond * 150)
b.Push("8")
time.Sleep(time.Millisecond * 150)
b.Push("9")
b.Close()
var expected = [][]string{
{"1"},
{"2", "3", "4"},
{"5", "6", "7"},
{"8"},
{"9"},
}
str.Equals(t, expected)
}
func TestBuffer_FewItems5(t *testing.T) {
str := getFn[string]()
b := NewBuffer(str.fn, 2, time.Millisecond*100)
b.Start()
b.Push("1")
time.Sleep(time.Millisecond * 150)
b.Push("2")
b.Push("3")
b.Push("4")
time.Sleep(time.Millisecond * 150)
b.Push("5")
b.Push("6")
b.Push("7")
time.Sleep(time.Millisecond * 150)
b.Push("8")
time.Sleep(time.Millisecond * 150)
b.Push("9")
b.Close()
var expected = [][]string{
{"1"},
{"2", "3"},
{"4"},
{"5", "6"},
{"7"},
{"8"},
{"9"},
}
str.Equals(t, expected)
}