-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwriter_buffered_test.go
More file actions
273 lines (224 loc) · 6.49 KB
/
writer_buffered_test.go
File metadata and controls
273 lines (224 loc) · 6.49 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
// Copyright The ActForGood Authors.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file or at
// https://github.com/actforgood/xlog/blob/main/LICENSE.
package xlog_test
import (
"bytes"
"errors"
"io"
"strconv"
"sync"
"testing"
"time"
"github.com/actforgood/xlog"
)
func TestBufferedWriter_Write_Stop_isReallyBuffered(t *testing.T) {
t.Parallel()
// arrange
var (
writer = new(MockWriter)
subject = xlog.NewBufferedWriter(
writer,
xlog.BufferedWriterWithSize(2), // we set size to 2 bytes, and we'll write 1 byte
xlog.BufferedWriterWithFlushInterval(0), // disable auto-flushing
)
dummyByte byte = '\n'
)
defer subject.Stop()
writer.SetWriteCallback(func(p []byte) (n int, err error) {
assertEqual(t, []byte{dummyByte}, p)
return len(p), nil
})
// act - write a dummy byte.
n, err := subject.Write([]byte{dummyByte})
// assert - we check no byte has been written to underlying writer.
assertEqual(t, 1, n)
assertNil(t, err)
assertEqual(t, 0, writer.WriteCallsCount())
// act - trigger flushing.
subject.Stop()
// assert - check dummy byte was written.
assertEqual(t, 1, writer.WriteCallsCount())
}
func TestBufferedWriter_Write_Stop_autoFlushWorks(t *testing.T) {
t.Parallel()
// arrange
var (
writer = new(MockWriter)
subject = xlog.NewBufferedWriter(
writer,
xlog.BufferedWriterWithSize(2), // we set size to 2 bytes, and we'll write 1 byte
xlog.BufferedWriterWithFlushInterval(700*time.Millisecond), // enable auto-flushing at 0.7 sec interval
)
dummyByte byte = '\n'
)
defer subject.Stop()
writer.SetWriteCallback(func(p []byte) (n int, err error) {
assertEqual(t, []byte{dummyByte}, p)
return len(p), nil
})
// act - write a dummy byte.
n, err := subject.Write([]byte{dummyByte})
// assert - we check no byte has been written to underlying writer and writer.Write did not get called.
assertEqual(t, 1, n)
assertNil(t, err)
assertEqual(t, 0, writer.WriteCallsCount())
// wait 1s - within this time auto-flushing should have been called.
time.Sleep(1 * time.Second)
// assert - check dummy byte was written.
assertEqual(t, 1, writer.WriteCallsCount())
}
func TestBufferedWriter_Stop_nothingGetsWrittenAfterStop(t *testing.T) {
t.Parallel()
// arrange
var (
writer = new(MockWriter)
subject = xlog.NewBufferedWriter(
writer,
xlog.BufferedWriterWithSize(1), // we set size to 1 byte.
xlog.BufferedWriterWithFlushInterval(0), // disable auto-flushing
)
dummyByte byte = '\n'
)
defer subject.Stop()
writer.SetWriteCallback(func(p []byte) (n int, err error) {
assertEqual(t, []byte{dummyByte, dummyByte}, p)
return len(p), nil
})
// act - write 2 dummy bytes, 1 flush will be triggered.
n, err := subject.Write([]byte{dummyByte, dummyByte})
// assert - we check the bytes were written on underlying writer.
assertEqual(t, 2, n)
assertNil(t, err)
assertEqual(t, 1, writer.WriteCallsCount())
// act - stop & write again
subject.Stop()
n, err = subject.Write([]byte{dummyByte, dummyByte, dummyByte})
// assert - check nothing was written.
assertEqual(t, 0, n)
assertNil(t, err)
assertEqual(t, 1, writer.WriteCallsCount()) // calls count is still 1
}
func TestBufferedWriter_Write_writeErrorGetsReset(t *testing.T) {
t.Parallel()
// arrange
var (
writer = new(MockWriter)
subject = xlog.NewBufferedWriter(
writer,
xlog.BufferedWriterWithSize(1), // we set size to 1 byte.
xlog.BufferedWriterWithFlushInterval(0), // disable auto-flushing.
)
dummyByte byte = '\n'
)
defer subject.Stop()
writer.SetWriteCallback(func(p []byte) (n int, err error) {
if writer.WriteCallsCount() == 1 {
assertEqual(t, []byte{dummyByte, dummyByte}, p)
return 0, ErrWrite
}
assertEqual(t, []byte{dummyByte, dummyByte, dummyByte}, p)
return len(p), nil
})
// act - write 2 dummy bytes.
n, err := subject.Write([]byte{dummyByte, dummyByte})
// assert
assertEqual(t, 0, n)
assertTrue(t, errors.Is(err, ErrWrite))
// act - write 3 dummy bytes, successfully this time.
n, err = subject.Write([]byte{dummyByte, dummyByte, dummyByte})
// assert
assertEqual(t, 3, n)
assertNil(t, err)
assertEqual(t, 2, writer.WriteCallsCount())
}
func TestBufferedWriter_Write_autoFlushErrorGetsReset(t *testing.T) {
t.Parallel()
// arrange
var (
writer = new(MockWriter)
subject = xlog.NewBufferedWriter(
writer,
xlog.BufferedWriterWithSize(1), // we set size to 1 byte.
xlog.BufferedWriterWithFlushInterval(700*time.Millisecond),
)
dummyByte byte = '\n'
)
defer subject.Stop()
writer.SetWriteCallback(func(p []byte) (n int, err error) {
if writer.WriteCallsCount() == 1 { // auto Flush()
assertEqual(t, []byte{dummyByte}, p)
return 0, ErrWrite
}
assertEqual(t, []byte{dummyByte, dummyByte, dummyByte}, p)
return len(p), nil
})
// act - write 1 dummy byte.
n, err := subject.Write([]byte{dummyByte})
// assert
assertEqual(t, 1, n)
assertNil(t, err)
// wait 1s - within this time auto-flushing should have been called.
time.Sleep(1 * time.Second)
// act - write 3 dummy bytes, successfully this time.
n, err = subject.Write([]byte{dummyByte, dummyByte, dummyByte})
// assert
assertEqual(t, 3, n)
assertNil(t, err)
assertEqual(t, 2, writer.WriteCallsCount())
}
func TestBufferedWriter_concurrency(t *testing.T) {
t.Parallel()
// arrange
var (
writer bytes.Buffer
subject = xlog.NewBufferedWriter(
&writer,
xlog.BufferedWriterWithSize(2),
xlog.BufferedWriterWithFlushInterval(50*time.Millisecond),
)
goroutinesNo = 200
wg sync.WaitGroup
expectedSum = goroutinesNo * (goroutinesNo + 1) / 2
)
defer subject.Stop()
// act
// N threads will write their own number.
// At the end we will check the sum of all written numbers
// (we know from math that sum of first N consecutive numbers is N * (N+1) / 2).
for i := range goroutinesNo {
wg.Add(1)
go func(threadNo int) {
defer wg.Done()
data := []byte(strconv.FormatInt(int64(threadNo+1), 10))
data = append(data, '\n')
_, err := subject.Write(data)
assertNil(t, err)
}(i)
}
wg.Wait()
subject.Stop()
// assert
linesCount := 0
sum := 0
for {
line, err := writer.ReadBytes('\n')
if err != nil {
if errors.Is(err, io.EOF) {
break
}
t.Error(err.Error())
continue
}
linesCount++
line = line[:len(line)-1] // remove ending '\n'
data, err := strconv.Atoi(string(line))
if err != nil {
t.Error(err.Error())
}
sum += data
}
assertEqual(t, goroutinesNo, linesCount)
assertEqual(t, expectedSum, sum)
}