forked from rjeczalik/notify
-
Notifications
You must be signed in to change notification settings - Fork 14
/
notify_test.go
217 lines (189 loc) · 4.88 KB
/
notify_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
// Copyright (c) 2014-2015 The Notify Authors. All rights reserved.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
// +build darwin linux freebsd dragonfly netbsd openbsd windows solaris
package notify
import (
"io/ioutil"
"os"
"path/filepath"
"testing"
"time"
)
func TestNotifyExample(t *testing.T) {
n := NewNotifyTest(t, "testdata/vfs.txt")
defer n.Close()
ch := NewChans(3)
// Watch-points can be set explicitly via Watch/Stop calls...
n.Watch("src/github.com/rjeczalik/fs", ch[0], Write)
n.Watch("src/github.com/pblaszczyk/qttu", ch[0], Write)
n.Watch("src/github.com/pblaszczyk/qttu/...", ch[1], Create)
n.Watch("src/github.com/rjeczalik/fs/cmd/...", ch[2], Remove)
cases := []NCase{
// i=0
{
Event: write(n.W(), "src/github.com/rjeczalik/fs/fs.go", []byte("XD")),
Receiver: Chans{ch[0]},
},
// TODO(rjeczalik): #62
// i=1
// {
// Event: write(n.W(), "src/github.com/pblaszczyk/qttu/README.md", []byte("XD")),
// Receiver: Chans{ch[0]},
// },
// i=2
{
Event: write(n.W(), "src/github.com/rjeczalik/fs/cmd/gotree/go.go", []byte("XD")),
Receiver: nil,
},
// i=3
{
Event: create(n.W(), "src/github.com/pblaszczyk/qttu/src/.main.cc.swp"),
Receiver: Chans{ch[1]},
},
// i=4
{
Event: create(n.W(), "src/github.com/pblaszczyk/qttu/src/.main.cc.swo"),
Receiver: Chans{ch[1]},
},
// i=5
{
Event: remove(n.W(), "src/github.com/rjeczalik/fs/cmd/gotree/go.go"),
Receiver: Chans{ch[2]},
},
}
n.ExpectNotifyEvents(cases, ch)
// ...or using Call structures.
stops := [...]Call{
// i=0
{
F: FuncStop,
C: ch[0],
},
// i=1
{
F: FuncStop,
C: ch[1],
},
}
n.Call(stops[:]...)
cases = []NCase{
// i=0
{
Event: write(n.W(), "src/github.com/rjeczalik/fs/fs.go", []byte("XD")),
Receiver: nil,
},
// i=1
{
Event: write(n.W(), "src/github.com/pblaszczyk/qttu/README.md", []byte("XD")),
Receiver: nil,
},
// i=2
{
Event: create(n.W(), "src/github.com/pblaszczyk/qttu/src/.main.cc.swr"),
Receiver: nil,
},
// i=3
{
Event: remove(n.W(), "src/github.com/rjeczalik/fs/cmd/gotree/main.go"),
Receiver: Chans{ch[2]},
},
}
n.ExpectNotifyEvents(cases, ch)
}
func TestStop(t *testing.T) {
t.Skip("TODO(rjeczalik)")
}
func TestRenameInRoot(t *testing.T) {
tmpDir, err := ioutil.TempDir("", "notify_test-")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(tmpDir)
c := make(chan EventInfo, 100)
first := filepath.Join(tmpDir, "foo")
second := filepath.Join(tmpDir, "bar")
file := filepath.Join(second, "file")
mustT(t, os.Mkdir(first, 0777))
if err := Watch(tmpDir+"/...", c, All); err != nil {
t.Fatal(err)
}
defer Stop(c)
mustT(t, os.Rename(first, second))
time.Sleep(50 * time.Millisecond) // Need some time to process rename.
fd, err := os.Create(file)
mustT(t, err)
fd.Close()
timeout := time.After(time.Second)
for {
select {
case ev := <-c:
if ev.Path() == file {
return
}
t.Log(ev.Path())
case <-timeout:
t.Fatal("timed out before receiving event")
}
}
}
func TestRecreated(t *testing.T) {
tmpDir, err := ioutil.TempDir("", "notify_test-")
if err != nil {
t.Fatal(err)
}
defer os.RemoveAll(tmpDir)
dir := filepath.Join(tmpDir, "folder")
file := filepath.Join(dir, "file")
// Start watching
eventChan := make(chan EventInfo, 1000)
mustT(t, Watch(tmpDir+"/...", eventChan, All))
defer Stop(eventChan)
recreateFolder := func() {
// Give the sync some time to process events
_ = os.RemoveAll(dir)
mustT(t, os.Mkdir(dir, 0777))
time.Sleep(100 * time.Millisecond)
// Create a file
mustT(t, ioutil.WriteFile(file, []byte("abc"), 0666))
}
timeout := time.After(5 * time.Second)
checkCreated := func() {
for {
select {
case ev := <-eventChan:
t.Log(ev.Path(), ev.Event())
if ev.Path() == file && ev.Event() == Create {
return
}
case <-timeout:
t.Fatal("timed out before receiving event")
}
}
}
// 1. Create a folder and a file within it
// This will create a node in the internal tree for the subfolder test/folder
// Will create a new inotify watch for the folder
t.Log("######## First ########")
recreateFolder()
checkCreated()
// 2. Create a folder and a file within it again
// This will set the events for the subfolder test/folder in the internal tree
// Will create a new inotify watch for the folder because events differ
t.Log("######## Second ########")
recreateFolder()
checkCreated()
// 3. Create a folder and a file within it yet again
// This time no new inotify watch will be created, because the events
// and node already exist in the internal tree and all subsequent events
// are lost, hence there is no event for the created file here anymore
t.Log("######## Third ########")
recreateFolder()
checkCreated()
}
func mustT(t testing.TB, err error) {
t.Helper()
if err != nil {
t.Fatal(err)
}
}