-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfollow_test.go
229 lines (191 loc) · 4.61 KB
/
follow_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
package follow
import (
"context"
"io"
"log"
"os"
"path/filepath"
"reflect"
"strings"
"testing"
"time"
)
func start(ctx context.Context, t *testing.T) (Follower, string, chan []string) {
tmp := filepath.Join(t.TempDir(), "f")
touch(t, tmp)
f := New()
go func() {
err := f.Start(ctx, tmp)
if err != nil {
log.Fatal(err)
}
}()
<-f.Ready
var ret = make(chan []string)
go func() {
var lines []string
for {
data := <-f.Data
if data.Err != nil {
if data.Err == io.EOF {
break
}
panic(data.Err)
}
lines = append(lines, string(data.Bytes))
}
ret <- lines
}()
return f, tmp, ret
}
func write(t *testing.T, tmp string, lines ...string) []string {
fp, err := os.OpenFile(tmp, os.O_WRONLY|os.O_APPEND, 0666)
if err != nil {
t.Fatal(err)
}
for _, l := range lines {
_, err = fp.WriteString(l + "\n")
if err != nil {
t.Fatal(err)
}
}
err = fp.Close()
if err != nil {
t.Fatal(err)
}
// Give a wee bit of time to actually process this.
time.Sleep(10 * time.Millisecond)
return lines
}
func touch(t *testing.T, tmp string) {
fp, err := os.Create(tmp)
if err != nil {
t.Fatal(err)
}
fp.Close()
}
func TestFollow(t *testing.T) {
// Simple case: just write some lines.
t.Run("simple", func(t *testing.T) {
f, tmp, lines := start(context.Background(), t)
want := write(t, tmp, "Hello", "world!")
f.Stop()
got := <-lines
if !reflect.DeepEqual(got, want) {
t.Errorf("\ngot: %q\nwant: %q", got, want)
}
})
// Write *a lot* of lines.
t.Run("many_lines", func(t *testing.T) {
f, tmp, lines := start(context.Background(), t)
want := write(t, tmp, repeatSlice(strings.Repeat("x", 1000), 20_000)...)
// It may take some time for all the lines to be read.
time.Sleep(1 * time.Second)
f.Stop()
got := <-lines
if !reflect.DeepEqual(got, want) {
t.Error(len(got), len(want))
}
})
// File gets truncate.
t.Run("truncate_create", func(t *testing.T) {
f, tmp, lines := start(context.Background(), t)
want := write(t, tmp, "before")
fp, err := os.Create(tmp)
if err != nil {
t.Fatal(err)
}
fp.Close()
want = append(want, write(t, tmp, "after")...)
want = append(want, write(t, tmp, "second")...)
f.Stop()
got := <-lines
if !reflect.DeepEqual(got, want) {
t.Errorf("\ngot: %q\nwant: %q", got, want)
}
})
// Truncate with syscall instead of O_TRUNC.
t.Run("truncate_syscall", func(t *testing.T) {
f, tmp, lines := start(context.Background(), t)
want := write(t, tmp, "before")
err := os.Truncate(tmp, 0)
if err != nil {
t.Fatal(err)
}
want = append(want, write(t, tmp, "after")...)
want = append(want, write(t, tmp, "second")...)
f.Stop()
got := <-lines
if !reflect.DeepEqual(got, want) {
t.Errorf("\ngot: %q\nwant: %q", got, want)
}
})
// Truncate with syscall instead of O_TRUNC.
t.Run("truncate_syscall_half", func(t *testing.T) {
f, tmp, lines := start(context.Background(), t)
write(t, tmp, "before")
err := os.Truncate(tmp, 5)
if err != nil {
t.Fatal(err)
}
write(t, tmp, "after")
write(t, tmp, "second")
// This is wrong, but I'm not sure we can do much about this; no real
// way to detect the truncate offset.
want := []string{"before", "ter", "second"}
f.Stop()
got := <-lines
if !reflect.DeepEqual(got, want) {
t.Errorf("\ngot: %q\nwant: %q", got, want)
}
})
// File gets removed and re-created.
t.Run("rm", func(t *testing.T) {
f, tmp, lines := start(context.Background(), t)
want := write(t, tmp, "before")
err := os.Remove(tmp)
if err != nil {
t.Fatal(err)
}
touch(t, tmp)
want = append(want, write(t, tmp, "after")...)
f.Stop()
got := <-lines
if !reflect.DeepEqual(got, want) {
t.Errorf("\ngot: %q\nwant: %q", got, want)
}
})
// Reopen
t.Run("reopen", func(t *testing.T) {
f, tmp, lines := start(context.Background(), t)
want := write(t, tmp, "before")
f.Reopen <- os.Interrupt
time.Sleep(10 * time.Millisecond)
want = append(want, write(t, tmp, "after")...)
want = append(want, write(t, tmp, "after2")...)
f.Stop()
got := <-lines
if !reflect.DeepEqual(got, want) {
t.Errorf("\ngot: %q\nwant: %q", got, want)
}
})
// Context cancellation
t.Run("cancel", func(t *testing.T) {
ctx, stop := context.WithCancel(context.Background())
_, tmp, lines := start(ctx, t)
want := write(t, tmp, "hello", "world", "xxxx")
stop()
got := <-lines
if !reflect.DeepEqual(got, want) {
t.Errorf("\ngot: %q\nwant: %q", got, want)
}
})
// TODO: other edge cases:
// - Directory disappears/moves?
}
func repeatSlice(s string, n int) (r []string) {
for i := 0; i < n; i++ {
r = append(r, s)
}
return r
}