forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
filepoller_test.go
86 lines (76 loc) · 2.13 KB
/
filepoller_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
package preimage
import (
"context"
"testing"
"time"
"github.com/stretchr/testify/require"
)
func TestFilePoller_Read(t *testing.T) {
chanA, chanB, err := CreateBidirectionalChannel()
require.NoError(t, err)
ctx := context.Background()
chanAPoller := NewFilePoller(ctx, chanA, time.Millisecond*100)
go func() {
_, _ = chanB.Write([]byte("hello"))
time.Sleep(time.Second * 1)
_, _ = chanB.Write([]byte("world"))
}()
var buf [10]byte
n, err := chanAPoller.Read(buf[:])
require.Equal(t, 10, n)
require.NoError(t, err)
}
func TestFilePoller_Write(t *testing.T) {
chanA, chanB, err := CreateBidirectionalChannel()
require.NoError(t, err)
ctx := context.Background()
chanAPoller := NewFilePoller(ctx, chanA, time.Millisecond*100)
bufch := make(chan []byte, 1)
go func() {
var buf [10]byte
_, _ = chanB.Read(buf[:5])
time.Sleep(time.Second * 1)
_, _ = chanB.Read(buf[5:])
bufch <- buf[:]
close(bufch)
}()
buf := []byte("helloworld")
n, err := chanAPoller.Write(buf)
require.Equal(t, 10, n)
require.NoError(t, err)
select {
case <-time.After(time.Second * 60):
t.Fatal("timed out waiting for read")
case readbuf := <-bufch:
require.Equal(t, buf, readbuf)
}
}
func TestFilePoller_ReadCancel(t *testing.T) {
chanA, chanB, err := CreateBidirectionalChannel()
require.NoError(t, err)
ctx, cancel := context.WithCancel(context.Background())
chanAPoller := NewFilePoller(ctx, chanA, time.Millisecond*100)
go func() {
_, _ = chanB.Write([]byte("hello"))
cancel()
}()
var buf [10]byte
n, err := chanAPoller.Read(buf[:])
require.Equal(t, 5, n)
require.ErrorIs(t, err, context.Canceled)
}
func TestFilePoller_WriteCancel(t *testing.T) {
chanA, chanB, err := CreateBidirectionalChannel()
require.NoError(t, err)
ctx, cancel := context.WithCancel(context.Background())
chanAPoller := NewFilePoller(ctx, chanA, time.Millisecond*100)
go func() {
var buf [5]byte
_, _ = chanB.Read(buf[:])
cancel()
}()
// use a large buffer to overflow the kernel buffer provided to pipe(2) so the write actually blocks
buf := make([]byte, 1024*1024)
_, err = chanAPoller.Write(buf)
require.ErrorIs(t, err, context.Canceled)
}