2018-06-22 07:01:36 -05:00
|
|
|
package gaper
|
2018-06-20 20:40:09 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2018-06-22 20:00:23 -05:00
|
|
|
"runtime"
|
2018-06-20 20:40:09 -05:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestWatcherDefaultValues(t *testing.T) {
|
|
|
|
pollInterval := 0
|
|
|
|
watchItems := []string{filepath.Join("testdata", "server")}
|
|
|
|
var ignoreItems []string
|
|
|
|
var extensions []string
|
|
|
|
|
2018-07-12 08:27:07 -05:00
|
|
|
wt, err := NewWatcher(pollInterval, watchItems, ignoreItems, extensions)
|
2018-06-20 20:40:09 -05:00
|
|
|
|
2018-06-22 20:00:23 -05:00
|
|
|
expectedPath := "testdata/server"
|
|
|
|
if runtime.GOOS == OSWindows {
|
|
|
|
expectedPath = "testdata\\server"
|
|
|
|
}
|
|
|
|
|
2018-07-12 08:27:07 -05:00
|
|
|
w := wt.(*watcher)
|
2018-06-20 20:40:09 -05:00
|
|
|
assert.Nil(t, err, "wacher error")
|
2018-07-12 08:27:07 -05:00
|
|
|
assert.Equal(t, 500, w.pollInterval)
|
|
|
|
assert.Equal(t, map[string]bool{expectedPath: true}, w.watchItems)
|
|
|
|
assert.Len(t, w.ignoreItems, 0)
|
|
|
|
assert.Equal(t, map[string]bool{".go": true}, w.allowedExtensions)
|
2018-06-20 20:40:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWatcherGlobPath(t *testing.T) {
|
|
|
|
pollInterval := 0
|
|
|
|
watchItems := []string{filepath.Join("testdata", "server")}
|
|
|
|
ignoreItems := []string{"./testdata/**/*_test.go"}
|
|
|
|
var extensions []string
|
|
|
|
|
2018-07-12 08:27:07 -05:00
|
|
|
wt, err := NewWatcher(pollInterval, watchItems, ignoreItems, extensions)
|
2018-06-20 20:40:09 -05:00
|
|
|
assert.Nil(t, err, "wacher error")
|
2018-07-12 08:27:07 -05:00
|
|
|
w := wt.(*watcher)
|
|
|
|
assert.Equal(t, map[string]bool{"testdata/server/main_test.go": true}, w.ignoreItems)
|
2018-06-22 19:44:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWatcherRemoveOverlapdPaths(t *testing.T) {
|
|
|
|
pollInterval := 0
|
|
|
|
watchItems := []string{filepath.Join("testdata", "server")}
|
|
|
|
ignoreItems := []string{"./testdata/**/*", "./testdata/server"}
|
|
|
|
var extensions []string
|
|
|
|
|
2018-07-12 08:27:07 -05:00
|
|
|
wt, err := NewWatcher(pollInterval, watchItems, ignoreItems, extensions)
|
2018-06-22 19:44:26 -05:00
|
|
|
assert.Nil(t, err, "wacher error")
|
2018-07-12 08:27:07 -05:00
|
|
|
w := wt.(*watcher)
|
|
|
|
assert.Equal(t, map[string]bool{"./testdata/server": true}, w.ignoreItems)
|
2018-06-20 20:40:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestWatcherWatchChange(t *testing.T) {
|
|
|
|
srvdir := filepath.Join("testdata", "server")
|
|
|
|
hiddendir := filepath.Join("testdata", "hidden-test")
|
|
|
|
|
|
|
|
hiddenfile1 := filepath.Join("testdata", ".hidden-file")
|
|
|
|
hiddenfile2 := filepath.Join("testdata", ".hidden-folder", ".gitkeep")
|
|
|
|
mainfile := filepath.Join("testdata", "server", "main.go")
|
|
|
|
testfile := filepath.Join("testdata", "server", "main_test.go")
|
|
|
|
|
|
|
|
pollInterval := 0
|
|
|
|
watchItems := []string{srvdir, hiddendir}
|
|
|
|
ignoreItems := []string{testfile}
|
|
|
|
extensions := []string{"go"}
|
|
|
|
|
|
|
|
w, err := NewWatcher(pollInterval, watchItems, ignoreItems, extensions)
|
|
|
|
assert.Nil(t, err, "wacher error")
|
|
|
|
|
|
|
|
go w.Watch()
|
|
|
|
time.Sleep(time.Millisecond * 500)
|
|
|
|
|
|
|
|
// update hidden files and dirs to check builtin hidden ignore is working
|
|
|
|
os.Chtimes(hiddenfile1, time.Now(), time.Now())
|
|
|
|
os.Chtimes(hiddenfile2, time.Now(), time.Now())
|
|
|
|
|
|
|
|
// update testfile first to check ignore is working
|
|
|
|
os.Chtimes(testfile, time.Now(), time.Now())
|
|
|
|
|
|
|
|
time.Sleep(time.Millisecond * 500)
|
|
|
|
os.Chtimes(mainfile, time.Now(), time.Now())
|
|
|
|
|
|
|
|
select {
|
2018-07-12 08:27:07 -05:00
|
|
|
case event := <-w.Events():
|
2018-06-20 20:40:09 -05:00
|
|
|
assert.Equal(t, mainfile, event)
|
2018-07-12 08:27:07 -05:00
|
|
|
case err := <-w.Errors():
|
2018-06-20 20:40:09 -05:00
|
|
|
assert.Nil(t, err, "wacher event error")
|
|
|
|
}
|
|
|
|
}
|