fe28c7d284
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
123 lines
3.7 KiB
Go
123 lines
3.7 KiB
Go
package fs
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/karrick/godirwalk"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestIgnoreList_Ignore(t *testing.T) {
|
|
t.Run(".ppignore", func(t *testing.T) {
|
|
list := NewIgnoreList(".ppignore", true, false)
|
|
assert.False(t, list.Ignore("testdata"))
|
|
assert.False(t, list.Ignore("testdata/directory"))
|
|
assert.True(t, list.Ignore("testdata/directory/.ppignore"), ".ppignore should be ignored")
|
|
assert.True(t, list.Ignore("testdata/directory/bar.txt"), "bar.txt should be ignored")
|
|
assert.False(t, list.Ignore("testdata/directory/example.bmp"))
|
|
assert.True(t, list.Ignore("testdata/directory/subdirectory/.hiddendir"), ".hiddendir should be ignored")
|
|
assert.True(t, list.Ignore("testdata/directory/subdirectory/foo.txt"), "foo.txt should be ignored")
|
|
assert.True(t, list.Ignore("testdata/directory/subdirectory/symlink/somefile.txt"), "somefile.txt should be ignored")
|
|
assert.True(t, list.Ignore("testdata/directory/subdirectory/symlink/test.md"), "test.md should be ignored")
|
|
assert.False(t, list.Ignore("testdata/directory/subdirectory/symlink/test.xml"))
|
|
assert.False(t, list.Ignore("testdata/directory/subdirectory/symlink/test.yml"))
|
|
assert.True(t, list.Ignore("testdata/directory/subdirectory/symlink/test.txt"), "test.txt should be ignored")
|
|
})
|
|
}
|
|
|
|
func TestIgnoreList_Hidden(t *testing.T) {
|
|
t.Run("ignore hidden", func(t *testing.T) {
|
|
testPath := "testdata/directory/subdirectory"
|
|
ignore := NewIgnoreList(".ppignore", true, false)
|
|
|
|
err := godirwalk.Walk(testPath, &godirwalk.Options{
|
|
Callback: func(fileName string, info *godirwalk.Dirent) error {
|
|
if ignore.Ignore(fileName) && info.IsDir() {
|
|
return filepath.SkipDir
|
|
}
|
|
return nil
|
|
},
|
|
Unsorted: false,
|
|
FollowSymbolicLinks: false,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
expectHidden := []string{
|
|
"testdata/directory/subdirectory/.hiddendir",
|
|
"testdata/directory/subdirectory/.hiddenfile",
|
|
}
|
|
|
|
assert.Equal(t, expectHidden, ignore.Hidden())
|
|
})
|
|
|
|
t.Run("accept hidden", func(t *testing.T) {
|
|
testPath := "testdata/directory/subdirectory"
|
|
ignore := NewIgnoreList(".ppignore", false, false)
|
|
|
|
err := godirwalk.Walk(testPath, &godirwalk.Options{
|
|
Callback: func(fileName string, info *godirwalk.Dirent) error {
|
|
if ignore.Ignore(fileName) && info.IsDir() {
|
|
return filepath.SkipDir
|
|
}
|
|
return nil
|
|
},
|
|
Unsorted: false,
|
|
FollowSymbolicLinks: false,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, 0, len(ignore.Hidden()))
|
|
})
|
|
}
|
|
|
|
func TestIgnoreList_Ignored(t *testing.T) {
|
|
t.Run("has ignored", func(t *testing.T) {
|
|
testPath := "testdata/directory"
|
|
ignore := NewIgnoreList(".ppignore", true, false)
|
|
|
|
err := godirwalk.Walk(testPath, &godirwalk.Options{
|
|
Callback: func(fileName string, info *godirwalk.Dirent) error {
|
|
if ignore.Ignore(fileName) && info.IsDir() {
|
|
return filepath.SkipDir
|
|
}
|
|
return nil
|
|
},
|
|
Unsorted: false,
|
|
FollowSymbolicLinks: false,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
expectIgnored := []string{
|
|
"testdata/directory/bar.txt",
|
|
"testdata/directory/baz.xml",
|
|
"testdata/directory/subdirectory/example.txt",
|
|
"testdata/directory/subdirectory/foo.txt",
|
|
}
|
|
|
|
assert.Equal(t, expectIgnored, ignore.Ignored())
|
|
})
|
|
|
|
t.Run("no ignored", func(t *testing.T) {
|
|
testPath := "testdata/directory"
|
|
ignore := NewIgnoreList(".xyz", false, false)
|
|
|
|
err := godirwalk.Walk(testPath, &godirwalk.Options{
|
|
Callback: func(fileName string, info *godirwalk.Dirent) error {
|
|
if ignore.Ignore(fileName) && info.IsDir() {
|
|
return filepath.SkipDir
|
|
}
|
|
return nil
|
|
},
|
|
Unsorted: false,
|
|
FollowSymbolicLinks: false,
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, 0, len(ignore.Ignored()))
|
|
})
|
|
}
|