forked from rjeczalik/notify
-
Notifications
You must be signed in to change notification settings - Fork 15
/
watcher_kqueue_test.go
111 lines (100 loc) · 3.3 KB
/
watcher_kqueue_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
// 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,kqueue darwin,!cgo dragonfly freebsd netbsd openbsd
package notify
import (
"os"
"path/filepath"
"testing"
)
func kqremove(w *W, path string, files []string) WCase {
cas := remove(w, path)
cas.Events[0] = &Call{P: path, E: NoteDelete}
for _, f := range files {
cas.Events = append(cas.Events, &Call{P: f, E: NoteDelete})
}
return cas
}
func kqwrite(w *W, path string, p []byte) WCase {
cas := write(w, path, p)
path = cas.Events[0].Path()
cas.Events[0] = &Call{P: path, E: NoteExtend | NoteWrite}
return cas
}
func kqrename(w *W, path string, files []string) WCase {
const ext = ".notify"
cas := WCase{
Action: func() {
file := filepath.Join(w.root, path)
if err := os.Rename(file, file+ext); err != nil {
w.Fatalf("Rename(%q, %q)=%v", path, path+ext, err)
}
},
Events: []EventInfo{
&Call{P: path + ext, E: osSpecificCreate},
&Call{P: path, E: NoteRename},
},
}
for _, f := range files {
cas.Events = append(cas.Events, &Call{P: f, E: NoteRename})
}
return cas
}
func kqlink(w *W, path string) WCase {
const ext = ".notify"
return WCase{
Action: func() {
file := filepath.Join(w.root, path)
if err := os.Link(file, file+ext); err != nil {
w.Fatalf("Link(%q, %q)=%v", path, path+ext, err)
}
},
Events: []EventInfo{
&Call{P: path, E: NoteLink},
&Call{P: path + ext, E: osSpecificCreate},
},
}
}
var events = []Event{
NoteWrite,
NoteAttrib,
NoteRename,
osSpecificCreate,
NoteDelete,
NoteExtend,
NoteLink,
}
func TestWatcherKqueue(t *testing.T) {
w := NewWatcherTest(t, "testdata/vfs.txt", events...)
defer w.Close()
cases := [...]WCase{
kqremove(w, "src/github.com/ppknap/link/include/coost/link", []string{
"src/github.com/ppknap/link/include/coost/link/definitions.hpp",
"src/github.com/ppknap/link/include/coost/link/detail/bundle.hpp",
"src/github.com/ppknap/link/include/coost/link/detail/container_invoker.hpp",
"src/github.com/ppknap/link/include/coost/link/detail/container_value_trait.hpp",
"src/github.com/ppknap/link/include/coost/link/detail/dummy_type.hpp",
"src/github.com/ppknap/link/include/coost/link/detail/function_trait.hpp",
"src/github.com/ppknap/link/include/coost/link/detail/immediate_invoker.hpp",
"src/github.com/ppknap/link/include/coost/link/detail/stdhelpers/always_same.hpp",
"src/github.com/ppknap/link/include/coost/link/detail/stdhelpers/make_unique.hpp",
"src/github.com/ppknap/link/include/coost/link/detail/stdhelpers",
"src/github.com/ppknap/link/include/coost/link/detail/vertex.hpp",
"src/github.com/ppknap/link/include/coost/link/detail/wire.hpp",
"src/github.com/ppknap/link/include/coost/link/detail",
"src/github.com/ppknap/link/include/coost/link/link.hpp",
},
),
kqwrite(w, "src/github.com/rjeczalik/fs/fs.go", []byte("XD")),
kqremove(w, "src/github.com/ppknap/link/README.md", nil),
kqlink(w, "src/github.com/rjeczalik/fs/LICENSE"),
kqrename(w, "src/github.com/rjeczalik/fs/fs.go", nil),
kqrename(w, "src/github.com/rjeczalik/fs/cmd/gotree", []string{
"src/github.com/rjeczalik/fs/cmd/gotree/go.go",
"src/github.com/rjeczalik/fs/cmd/gotree/main.go",
},
),
}
w.ExpectAll(cases[:])
}