-
Notifications
You must be signed in to change notification settings - Fork 0
/
io_test.go
358 lines (307 loc) · 7.96 KB
/
io_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
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
package non_blocking_io_test
import (
"bytes"
"errors"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"syscall"
"testing"
"time"
"golang.org/x/sys/unix"
nbio "github.com/kontera-technologies/non-blocking-io"
)
func deadlineFn(t testing.TB, dur time.Duration, fn func(c chan bool)) {
t.Helper()
c := make(chan bool)
go fn(c)
select {
case <-c:
case <-time.After(dur):
t.Fatalf("execution took longer than %s", dur)
}
}
func TestNewFD(t *testing.T) {
var err error
_, err = nbio.NewFd(999)
if err == nil || !errors.Is(err, unix.EBADF) {
t.Errorf(`Expected: "%s", received: "%s"`, unix.EBADF, err)
}
_, err = nbio.NewFd(os.Stdin.Fd())
if err == nil || !errors.Is(err, nbio.ErrBlockingFd) {
t.Errorf(`Expected: "%s", received: "%s"`, nbio.ErrBlockingFd, err)
}
}
func TestUnblockFd(t *testing.T) {
var err error
err = nbio.UnblockFd(os.Stdin.Fd())
if err != nil {
t.Fatal(err)
}
_, err = nbio.NewFd(os.Stdin.Fd())
if err != nil {
t.Fatal(err)
}
}
func TestFD_Write_block(t *testing.T) {
dir, err := ioutil.TempDir("", "fifo")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(dir)
fifoPath := filepath.Join(dir, "fifo")
err = unix.Mkfifo(fifoPath, 0600)
if err != nil {
t.Fatal(err)
}
c := make(chan bool)
defer close(c)
go func() {
fdR, err := nbio.Open(fifoPath, unix.O_RDONLY, 0)
if err != nil {
t.Fatal(err)
}
defer fdR.Close()
// Keep the file descriptor (fdR) open until the main function exists!
<-c
}()
// Give the above go-routine a millisecond to open the fifo for reading.
time.Sleep(time.Millisecond)
w, err := nbio.Open(fifoPath, unix.O_WRONLY, 0)
if err != nil {
t.Fatal(err)
}
defer w.Close()
// Write a huge chunk of data to fill the internal system buffer for the fifo file.
_, err = w.Write(bytes.Repeat([]byte("foo\n"), 100000))
if err != nil {
t.Fatal(err)
}
n, err := w.Write([]byte("foo\n"))
if n > 0 {
t.Fatalf("No data expected, %d bytes read", n)
}
if !errors.Is(err, unix.EAGAIN) {
t.Fatalf("unix.EAGAIN error expected, received: %v", err)
}
}
func TestFD_Read(t *testing.T) {
dir, err := ioutil.TempDir("", "TestFifoEOF")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(dir)
fifoName := filepath.Join(dir, "fifo")
err = syscall.Mkfifo(fifoName, 0600)
if err != nil {
t.Fatal(err)
}
expected := "foo"
c := make(chan bool)
defer close(c)
go func() {
fdW, err := unix.Open(fifoName, unix.O_WRONLY, 0)
if err != nil {
t.Fatal(err)
}
defer unix.Close(fdW)
f := os.NewFile(uintptr(fdW), "tmp-w")
f.Write([]byte(expected))
// Keep the file descriptor (fdW) open until the main function exists!
<-c
}()
fd, err := unix.Open(fifoName, unix.O_RDONLY|unix.O_NONBLOCK, 0)
if err != nil {
t.Fatal(err)
}
defer unix.Close(fd)
err = nbio.UnblockFd(uintptr(fd))
if err != nil {
t.Fatal(err)
}
r, err := nbio.NewFd(uintptr(fd))
if err != nil {
t.Fatal(err)
}
// Sometimes the process needs another microsecond to write the data on the tmp file.
time.Sleep(time.Microsecond)
deadlineFn(t, time.Millisecond, func(c chan bool) {
defer close(c)
buf := make([]byte, len([]byte(expected))*2)
n, err := r.Read(buf)
if err != nil {
t.Fatal(err)
}
if n != len([]byte(expected)) || string(buf[:n]) != expected {
t.Errorf(`Invalid output, expected: "%s", received: %s`, expected, string(buf[:n]))
}
})
deadlineFn(t, time.Millisecond, func(c chan bool) {
defer close(c)
buf := make([]byte, len([]byte(expected))*2)
n, err := r.Read(buf)
if !errors.Is(err, unix.EAGAIN) {
t.Errorf("unix.EAGAIN error Expected, received: %v", err)
}
if n != 0 || string(buf[:n]) != "" {
t.Errorf(`Invalid output, expected: "", received: %s`, string(buf[:n]))
}
})
}
func TestNewFifo(t *testing.T) {
var err error
rw, err := nbio.NewFifo()
if err != nil {
t.Fatal(err)
}
cmd := exec.Command("testdata/endless-foo.sh")
cmd.Stdout = rw
err = cmd.Start()
if err != nil {
t.Fatal(err)
}
defer cmd.Process.Kill()
// Wait for a few milliseconds to give the process time to start.
time.Sleep(time.Millisecond * 20)
expected := "foo\n"
deadlineFn(t, time.Millisecond, func(c chan bool) {
defer close(c)
buf := make([]byte, 100)
n, err := rw.Read(buf)
if err != nil {
t.Fatal(err)
}
if n != len([]byte(expected)) {
t.Fatalf(`Invalid output length, expected: %d, received: %d`, len(expected), n)
}
if string(buf[:n]) != expected {
t.Fatalf(`Invalid output, expected: "%s", received: "%s"`, expected, string(buf[:n]))
}
})
deadlineFn(t, time.Millisecond, func(c chan bool) {
defer close(c)
buf := make([]byte, 100)
n, err := rw.Read(buf)
if n > 0 {
t.Fatalf("No data expected, %d bytes read", n)
}
if !errors.Is(err, unix.EAGAIN) {
t.Fatalf("unix.EAGAIN error expected, received: %v", err)
}
})
time.Sleep(time.Millisecond * 100)
deadlineFn(t, time.Millisecond, func(c chan bool) {
defer close(c)
buf := make([]byte, 100)
n, err := rw.Read(buf)
if err != nil {
t.Fatal(err)
}
if n != len([]byte(expected)) {
t.Fatalf(`Invalid output length, expected: %d, received: %d`, len(expected), n)
}
if string(buf[:n]) != expected {
t.Fatalf(`Invalid output, expected: "%s", received: "%s"`, expected, string(buf[:n]))
}
})
}
// _TestFile_Read is used to demonstrate that TestFD_Read would have failed with the
// regular File.Read function.
//noinspection GoUnusedFunction
func _TestFile_Read(t *testing.T) {
dir, err := ioutil.TempDir("", "TestFifoEOF")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(dir)
fifoName := filepath.Join(dir, "fifo")
err = syscall.Mkfifo(fifoName, 0600)
if err != nil {
t.Fatal(err)
}
expected := "foo"
c := make(chan bool)
defer close(c)
go func() {
fdW, err := unix.Open(fifoName, unix.O_WRONLY, 0)
if err != nil {
t.Fatal(err)
}
defer unix.Close(fdW)
f := os.NewFile(uintptr(fdW), "tmp-w")
f.Write([]byte(expected))
// Keep the file descriptor (fdW) open until the main function exists!
<-c
}()
fdR, err := unix.Open(fifoName, unix.O_RDONLY|unix.O_NONBLOCK, 0)
if err != nil {
t.Fatal(err)
}
defer unix.Close(fdR)
r := os.NewFile(uintptr(fdR), "tmp-r")
// Sometimes the process needs another microsecond to write the data on the tmp file.
time.Sleep(time.Microsecond)
deadlineFn(t, time.Millisecond, func(c chan bool) {
defer close(c)
buf := make([]byte, len([]byte(expected))*2)
n, err := r.Read(buf)
if err != nil {
t.Fatal(err)
}
if n != len([]byte(expected)) || string(buf[:n]) != expected {
t.Errorf(`Invalid output, expected: "%s", received: %s`, expected, string(buf[:n]))
}
})
deadlineFn(t, time.Millisecond, func(c chan bool) {
defer close(c)
buf := make([]byte, len([]byte(expected))*2)
n, err := r.Read(buf)
if err != nil {
t.Log(err)
}
if n != 0 || string(buf[:n]) != "" {
t.Errorf(`Invalid output, expected: "", received: %s`, string(buf[:n]))
}
})
}
// _Test_StdoutPipe is used to demonstrate that TestNewFifo would have failed with the
// regular Command.StdoutPipe function.
//noinspection GoUnusedFunction
func _Test_StdoutPipe(t *testing.T) {
var err error
cmd := exec.Command("testdata/endless-foo.sh")
r, err := cmd.StdoutPipe()
err = cmd.Start()
if err != nil {
t.Fatal(err)
}
// Wait for a few milliseconds to give the process time to start.
time.Sleep(time.Millisecond * 10)
expected := "foo\n"
deadlineFn(t, time.Millisecond, func(c chan bool) {
defer close(c)
buf := make([]byte, 100)
n, err := r.Read(buf)
if err != nil {
t.Fatal(err)
}
if n != len([]byte(expected)) {
t.Fatalf(`Invalid output length, expected: %d, received: %d`, len(expected), n)
}
if string(buf[:n]) != expected {
t.Fatalf(`Invalid output, expected: "%s", received: "%s"`, expected, string(buf[:n]))
}
})
deadlineFn(t, time.Millisecond, func(c chan bool) {
defer close(c)
buf := make([]byte, 100)
n, err := r.Read(buf)
if n > 0 {
t.Fatalf("No data expected, %d bytes read", n)
}
if !errors.Is(err, unix.EAGAIN) {
t.Fatalf("unix.EAGAIN error expected, received: %v", err)
}
})
}