| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- // Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
- // All rights reserved. Use of this source code is governed by an MIT-style
- // license that can be found in the LICENSE file.
- package scanner
- import (
- "fmt"
- "path/filepath"
- "reflect"
- "runtime"
- "sort"
- "testing"
- "time"
- "github.com/syncthing/syncthing/protocol"
- )
- var testdata = []struct {
- name string
- size int
- hash string
- }{
- {"bar", 10, "2f72cc11a6fcd0271ecef8c61056ee1eb1243be3805bf9a9df98f92f7636b05c"},
- {"baz", 0, ""},
- {"empty", 0, "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},
- {"foo", 7, "aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f"},
- }
- var correctIgnores = map[string][]string{
- ".": {".*", "quux"},
- }
- func TestWalkSub(t *testing.T) {
- w := Walker{
- Dir: "testdata",
- Sub: "foo",
- BlockSize: 128 * 1024,
- IgnoreFile: ".stignore",
- }
- fchan, _, err := w.Walk()
- var files []protocol.FileInfo
- for f := range fchan {
- files = append(files, f)
- }
- if err != nil {
- t.Fatal(err)
- }
- if len(files) != 1 {
- t.Fatalf("Incorrect length %d != 1", len(files))
- }
- if files[0].Name != "foo" {
- t.Errorf("Incorrect file %v != foo", files[0])
- }
- }
- func TestWalk(t *testing.T) {
- w := Walker{
- Dir: "testdata",
- BlockSize: 128 * 1024,
- IgnoreFile: ".stignore",
- }
- fchan, ignores, err := w.Walk()
- var files []protocol.FileInfo
- for f := range fchan {
- files = append(files, f)
- }
- sort.Sort(fileList(files))
- if err != nil {
- t.Fatal(err)
- }
- if l1, l2 := len(files), len(testdata); l1 != l2 {
- t.Log(files)
- t.Log(testdata)
- t.Fatalf("Incorrect number of walked files %d != %d", l1, l2)
- }
- for i := range testdata {
- if n1, n2 := testdata[i].name, files[i].Name; n1 != n2 {
- t.Errorf("Incorrect file name %q != %q for case #%d", n1, n2, i)
- }
- if testdata[i].hash != "" {
- if h1, h2 := fmt.Sprintf("%x", files[i].Blocks[0].Hash), testdata[i].hash; h1 != h2 {
- t.Errorf("Incorrect hash %q != %q for case #%d", h1, h2, i)
- }
- }
- t0 := time.Date(2010, 1, 1, 0, 0, 0, 0, time.UTC).Unix()
- t1 := time.Date(2020, 1, 1, 0, 0, 0, 0, time.UTC).Unix()
- if mt := files[i].Modified; mt < t0 || mt > t1 {
- t.Errorf("Unrealistic modtime %d for test %d", mt, i)
- }
- }
- if !reflect.DeepEqual(ignores, correctIgnores) {
- t.Errorf("Incorrect ignores\n %v\n %v", correctIgnores, ignores)
- }
- }
- func TestWalkError(t *testing.T) {
- w := Walker{
- Dir: "testdata-missing",
- BlockSize: 128 * 1024,
- IgnoreFile: ".stignore",
- }
- _, _, err := w.Walk()
- if err == nil {
- t.Error("no error from missing directory")
- }
- w = Walker{
- Dir: "testdata/bar",
- BlockSize: 128 * 1024,
- IgnoreFile: ".stignore",
- }
- _, _, err = w.Walk()
- if err == nil {
- t.Error("no error from non-directory")
- }
- }
- func TestIgnore(t *testing.T) {
- pattern := "q\\[abc\\]y"
- // On Windows, escaping is disabled.
- // Instead, '\\' is treated as path separator.
- if runtime.GOOS == "windows" {
- pattern = "q[abc]y"
- }
- var patterns = map[string][]string{
- ".": {"t2"},
- "foo": {"bar", "z*", "q[abc]x", pattern},
- filepath.Join("foo", "baz"): {"quux", ".*"},
- }
- var tests = []struct {
- f string
- r bool
- }{
- {filepath.Join("foo", "bar"), true},
- {filepath.Join("foofoo"), false},
- {filepath.Join("foo", "quux"), false},
- {filepath.Join("foo", "zuux"), true},
- {filepath.Join("foo", "qzuux"), false},
- {filepath.Join("foo", "baz", "t1"), false},
- {filepath.Join("foo", "baz", "t2"), true},
- {filepath.Join("foo", "baz", "bar"), true},
- {filepath.Join("foo", "baz", "quuxa"), false},
- {filepath.Join("foo", "baz", "aquux"), false},
- {filepath.Join("foo", "baz", ".quux"), true},
- {filepath.Join("foo", "baz", "zquux"), true},
- {filepath.Join("foo", "baz", "quux"), true},
- {filepath.Join("foo", "bazz", "quux"), false},
- {filepath.Join("foo", "bazz", "q[abc]x"), true},
- {filepath.Join("foo", "bazz", "qax"), true},
- {filepath.Join("foo", "bazz", "q[abc]y"), true},
- }
- w := Walker{}
- for i, tc := range tests {
- if r := w.ignoreFile(patterns, tc.f); r != tc.r {
- t.Errorf("Incorrect ignoreFile() #%d (%s); E: %v, A: %v", i, tc.f, tc.r, r)
- }
- }
- }
- type fileList []protocol.FileInfo
- func (f fileList) Len() int {
- return len(f)
- }
- func (f fileList) Less(a, b int) bool {
- return f[a].Name < f[b].Name
- }
- func (f fileList) Swap(a, b int) {
- f[a], f[b] = f[b], f[a]
- }
|