123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- //go:build !nowatcher
- package watcher
- import (
- "path/filepath"
- "testing"
- "github.com/stretchr/testify/assert"
- )
- func TestDisallowOnEventTypeBiggerThan3(t *testing.T) {
- const fileName = "/some/path/watch-me.php"
- const eventType = 4
- watchPattern, err := parseFilePattern("/some/path")
- assert.NoError(t, err)
- assert.False(t, watchPattern.allowReload(fileName, eventType, 0))
- }
- func TestDisallowOnPathTypeBiggerThan2(t *testing.T) {
- const fileName = "/some/path/watch-me.php"
- const pathType = 3
- watchPattern, err := parseFilePattern("/some/path")
- assert.NoError(t, err)
- assert.False(t, watchPattern.allowReload(fileName, 0, pathType))
- }
- func TestWatchesCorrectDir(t *testing.T) {
- hasDir(t, "/path", "/path")
- hasDir(t, "/path/", "/path")
- hasDir(t, "/path/**/*.php", "/path")
- hasDir(t, "/path/*.php", "/path")
- hasDir(t, "/path/*/*.php", "/path")
- hasDir(t, "/path/?dir/*.php", "/path")
- hasDir(t, "/path/{dir1,dir2}/**/*.php", "/path")
- hasDir(t, ".", relativeDir(t, ""))
- hasDir(t, "./", relativeDir(t, ""))
- hasDir(t, "./**", relativeDir(t, ""))
- hasDir(t, "..", relativeDir(t, "/.."))
- }
- func TestValidRecursiveDirectories(t *testing.T) {
- shouldMatch(t, "/path", "/path/file.php")
- shouldMatch(t, "/path", "/path/subpath/file.php")
- shouldMatch(t, "/path/", "/path/subpath/file.php")
- shouldMatch(t, "/path**", "/path/subpath/file.php")
- shouldMatch(t, "/path/**", "/path/subpath/file.php")
- shouldMatch(t, "/path/**/", "/path/subpath/file.php")
- shouldMatch(t, ".", relativeDir(t, "file.php"))
- shouldMatch(t, ".", relativeDir(t, "subpath/file.php"))
- shouldMatch(t, "./**", relativeDir(t, "subpath/file.php"))
- shouldMatch(t, "..", relativeDir(t, "subpath/file.php"))
- }
- func TestInvalidRecursiveDirectories(t *testing.T) {
- shouldNotMatch(t, "/path", "/other/file.php")
- shouldNotMatch(t, "/path/**", "/other/file.php")
- shouldNotMatch(t, ".", "/other/file.php")
- }
- func TestValidNonRecursiveFilePatterns(t *testing.T) {
- shouldMatch(t, "/*.php", "/file.php")
- shouldMatch(t, "/path/*.php", "/path/file.php")
- shouldMatch(t, "/path/?ile.php", "/path/file.php")
- shouldMatch(t, "/path/file.php", "/path/file.php")
- shouldMatch(t, "*.php", relativeDir(t, "file.php"))
- shouldMatch(t, "./*.php", relativeDir(t, "file.php"))
- }
- func TestInValidNonRecursiveFilePatterns(t *testing.T) {
- shouldNotMatch(t, "/path/*.txt", "/path/file.php")
- shouldNotMatch(t, "/path/*.php", "/path/subpath/file.php")
- shouldNotMatch(t, "/*.php", "/path/file.php")
- shouldNotMatch(t, "*.txt", relativeDir(t, "file.php"))
- shouldNotMatch(t, "*.php", relativeDir(t, "subpath/file.php"))
- }
- func TestValidRecursiveFilePatterns(t *testing.T) {
- shouldMatch(t, "/path/**/*.php", "/path/file.php")
- shouldMatch(t, "/path/**/*.php", "/path/subpath/file.php")
- shouldMatch(t, "/path/**/?ile.php", "/path/subpath/file.php")
- shouldMatch(t, "/path/**/file.php", "/path/subpath/file.php")
- shouldMatch(t, "**/*.php", relativeDir(t, "file.php"))
- shouldMatch(t, "**/*.php", relativeDir(t, "subpath/file.php"))
- shouldMatch(t, "./**/*.php", relativeDir(t, "subpath/file.php"))
- }
- func TestInvalidRecursiveFilePatterns(t *testing.T) {
- shouldNotMatch(t, "/path/**/*.txt", "/path/file.php")
- shouldNotMatch(t, "/path/**/*.txt", "/other/file.php")
- shouldNotMatch(t, "/path/**/*.txt", "/path/subpath/file.php")
- shouldNotMatch(t, "/path/**/?ilm.php", "/path/subpath/file.php")
- shouldNotMatch(t, "**/*.php", "/other/file.php")
- shouldNotMatch(t, ".**/*.php", "/other/file.php")
- shouldNotMatch(t, "./**/*.php", "/other/file.php")
- }
- func TestValidDirectoryPatterns(t *testing.T) {
- shouldMatch(t, "/path/*/*.php", "/path/subpath/file.php")
- shouldMatch(t, "/path/*/*/*.php", "/path/subpath/subpath/file.php")
- shouldMatch(t, "/path/?/*.php", "/path/1/file.php")
- shouldMatch(t, "/path/**/vendor/*.php", "/path/vendor/file.php")
- shouldMatch(t, "/path/**/vendor/*.php", "/path/subpath/vendor/file.php")
- shouldMatch(t, "/path/**/vendor/**/*.php", "/path/vendor/file.php")
- shouldMatch(t, "/path/**/vendor/**/*.php", "/path/subpath/subpath/vendor/subpath/subpath/file.php")
- shouldMatch(t, "/path/**/vendor/*/*.php", "/path/subpath/subpath/vendor/subpath/file.php")
- shouldMatch(t, "/path*/path*/*", "/path1/path2/file.php")
- }
- func TestInvalidDirectoryPatterns(t *testing.T) {
- shouldNotMatch(t, "/path/subpath/*.php", "/path/other/file.php")
- shouldNotMatch(t, "/path/*/*.php", "/path/subpath/subpath/file.php")
- shouldNotMatch(t, "/path/?/*.php", "/path/subpath/file.php")
- shouldNotMatch(t, "/path/*/*/*.php", "/path/subpath/file.php")
- shouldNotMatch(t, "/path/*/*/*.php", "/path/subpath/subpath/subpath/file.php")
- shouldNotMatch(t, "/path/**/vendor/*.php", "/path/subpath/vendor/subpath/file.php")
- shouldNotMatch(t, "/path/**/vendor/*.php", "/path/subpath/file.php")
- shouldNotMatch(t, "/path/**/vendor/**/*.php", "/path/subpath/file.php")
- shouldNotMatch(t, "/path/**/vendor/**/*.txt", "/path/subpath/vendor/subpath/file.php")
- shouldNotMatch(t, "/path/**/vendor/**/*.php", "/path/subpath/subpath/subpath/file.php")
- shouldNotMatch(t, "/path/**/vendor/*/*.php", "/path/subpath/vendor/subpath/subpath/file.php")
- shouldNotMatch(t, "/path*/path*", "/path1/path1/file.php")
- }
- func TestValidExtendedPatterns(t *testing.T) {
- shouldMatch(t, "/path/*.{php}", "/path/file.php")
- shouldMatch(t, "/path/*.{php,twig}", "/path/file.php")
- shouldMatch(t, "/path/*.{php,twig}", "/path/file.twig")
- shouldMatch(t, "/path/**/{file.php,file.twig}", "/path/subpath/file.twig")
- shouldMatch(t, "/path/{dir1,dir2}/file.php", "/path/dir1/file.php")
- shouldMatch(t, "/path/{dir1,dir2}/file.php", "/path/dir2/file.php")
- shouldMatch(t, "/app/{app,config,resources}/**/*.php", "/app/app/subpath/file.php")
- shouldMatch(t, "/app/{app,config,resources}/**/*.php", "/app/config/subpath/file.php")
- }
- func TestInValidExtendedPatterns(t *testing.T) {
- shouldNotMatch(t, "/path/*.{php}", "/path/file.txt")
- shouldNotMatch(t, "/path/*.{php,twig}", "/path/file.txt")
- shouldNotMatch(t, "/path/{file.php,file.twig}", "/path/file.txt")
- shouldNotMatch(t, "/path/{dir1,dir2}/file.php", "/path/dir3/file.php")
- shouldNotMatch(t, "/path/{dir1,dir2}/**/*.php", "/path/dir1/subpath/file.txt")
- }
- func relativeDir(t *testing.T, relativePath string) string {
- dir, err := filepath.Abs("./" + relativePath)
- assert.NoError(t, err)
- return dir
- }
- func hasDir(t *testing.T, pattern string, dir string) {
- watchPattern, err := parseFilePattern(pattern)
- assert.NoError(t, err)
- assert.Equal(t, dir, watchPattern.dir)
- }
- func shouldMatch(t *testing.T, pattern string, fileName string) {
- watchPattern, err := parseFilePattern(pattern)
- assert.NoError(t, err)
- assert.True(t, watchPattern.allowReload(fileName, 0, 0))
- }
- func shouldNotMatch(t *testing.T, pattern string, fileName string) {
- watchPattern, err := parseFilePattern(pattern)
- assert.NoError(t, err)
- assert.False(t, watchPattern.allowReload(fileName, 0, 0))
- }
|