| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520 |
- // Copyright (C) 2014 The Syncthing Authors.
- //
- // This program is free software: you can redistribute it and/or modify it
- // under the terms of the GNU General Public License as published by the Free
- // Software Foundation, either version 3 of the License, or (at your option)
- // any later version.
- //
- // This program is distributed in the hope that it will be useful, but WITHOUT
- // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- // more details.
- //
- // You should have received a copy of the GNU General Public License along
- // with this program. If not, see <http://www.gnu.org/licenses/>.
- package ignore
- import (
- "bytes"
- "io/ioutil"
- "os"
- "path/filepath"
- "runtime"
- "testing"
- )
- func TestIgnore(t *testing.T) {
- pats := New(true)
- err := pats.Load("testdata/.stignore")
- if err != nil {
- t.Fatal(err)
- }
- var tests = []struct {
- f string
- r bool
- }{
- {"afile", false},
- {"bfile", true},
- {"cfile", false},
- {"dfile", false},
- {"efile", true},
- {"ffile", true},
- {"dir1", false},
- {filepath.Join("dir1", "cfile"), true},
- {filepath.Join("dir1", "dfile"), false},
- {filepath.Join("dir1", "efile"), true},
- {filepath.Join("dir1", "ffile"), false},
- {"dir2", false},
- {filepath.Join("dir2", "cfile"), false},
- {filepath.Join("dir2", "dfile"), true},
- {filepath.Join("dir2", "efile"), true},
- {filepath.Join("dir2", "ffile"), false},
- {filepath.Join("dir3"), true},
- {filepath.Join("dir3", "afile"), true},
- {"lost+found", true},
- }
- for i, tc := range tests {
- if r := pats.Match(tc.f); r != tc.r {
- t.Errorf("Incorrect ignoreFile() #%d (%s); E: %v, A: %v", i, tc.f, tc.r, r)
- }
- }
- }
- func TestExcludes(t *testing.T) {
- stignore := `
- !iex2
- !ign1/ex
- ign1
- i*2
- !ign2
- `
- pats := New(true)
- err := pats.Parse(bytes.NewBufferString(stignore), ".stignore")
- if err != nil {
- t.Fatal(err)
- }
- var tests = []struct {
- f string
- r bool
- }{
- {"ign1", true},
- {"ign2", true},
- {"ibla2", true},
- {"iex2", false},
- {filepath.Join("ign1", "ign"), true},
- {filepath.Join("ign1", "ex"), false},
- {filepath.Join("ign1", "iex2"), false},
- {filepath.Join("iex2", "ign"), false},
- {filepath.Join("foo", "bar", "ign1"), true},
- {filepath.Join("foo", "bar", "ign2"), true},
- {filepath.Join("foo", "bar", "iex2"), false},
- }
- for _, tc := range tests {
- if r := pats.Match(tc.f); r != tc.r {
- t.Errorf("Incorrect match for %s: %v != %v", tc.f, r, tc.r)
- }
- }
- }
- func TestBadPatterns(t *testing.T) {
- var badPatterns = []string{
- "[",
- "/[",
- "**/[",
- "#include nonexistent",
- "#include .stignore",
- "!#include makesnosense",
- }
- for _, pat := range badPatterns {
- err := New(true).Parse(bytes.NewBufferString(pat), ".stignore")
- if err == nil {
- t.Errorf("No error for pattern %q", pat)
- }
- }
- }
- func TestCaseSensitivity(t *testing.T) {
- ign := New(true)
- err := ign.Parse(bytes.NewBufferString("test"), ".stignore")
- if err != nil {
- t.Error(err)
- }
- match := []string{"test"}
- dontMatch := []string{"foo"}
- switch runtime.GOOS {
- case "darwin", "windows":
- match = append(match, "TEST", "Test", "tESt")
- default:
- dontMatch = append(dontMatch, "TEST", "Test", "tESt")
- }
- for _, tc := range match {
- if !ign.Match(tc) {
- t.Errorf("Incorrect match for %q: should be matched", tc)
- }
- }
- for _, tc := range dontMatch {
- if ign.Match(tc) {
- t.Errorf("Incorrect match for %q: should not be matched", tc)
- }
- }
- }
- func TestCaching(t *testing.T) {
- fd1, err := ioutil.TempFile("", "")
- if err != nil {
- t.Fatal(err)
- }
- fd2, err := ioutil.TempFile("", "")
- if err != nil {
- t.Fatal(err)
- }
- defer fd1.Close()
- defer fd2.Close()
- defer os.Remove(fd1.Name())
- defer os.Remove(fd2.Name())
- _, err = fd1.WriteString("/x/\n#include " + filepath.Base(fd2.Name()) + "\n")
- if err != nil {
- t.Fatal(err)
- }
- fd2.WriteString("/y/\n")
- pats := New(true)
- err = pats.Load(fd1.Name())
- if err != nil {
- t.Fatal(err)
- }
- if pats.matches.len() != 0 {
- t.Fatal("Expected empty cache")
- }
- if len(pats.patterns) != 4 {
- t.Fatal("Incorrect number of patterns loaded", len(pats.patterns), "!=", 4)
- }
- // Cache some outcomes
- for _, letter := range []string{"a", "b", "x", "y"} {
- pats.Match(letter)
- }
- if pats.matches.len() != 4 {
- t.Fatal("Expected 4 cached results")
- }
- // Reload file, expect old outcomes to be preserved
- err = pats.Load(fd1.Name())
- if err != nil {
- t.Fatal(err)
- }
- if pats.matches.len() != 4 {
- t.Fatal("Expected 4 cached results")
- }
- // Modify the include file, expect empty cache
- fd2.WriteString("/z/\n")
- err = pats.Load(fd1.Name())
- if err != nil {
- t.Fatal(err)
- }
- if pats.matches.len() != 0 {
- t.Fatal("Expected 0 cached results")
- }
- // Cache some outcomes again
- for _, letter := range []string{"b", "x", "y"} {
- pats.Match(letter)
- }
- // Verify that outcomes preserved on next laod
- err = pats.Load(fd1.Name())
- if err != nil {
- t.Fatal(err)
- }
- if pats.matches.len() != 3 {
- t.Fatal("Expected 3 cached results")
- }
- // Modify the root file, expect cache to be invalidated
- fd1.WriteString("/a/\n")
- err = pats.Load(fd1.Name())
- if err != nil {
- t.Fatal(err)
- }
- if pats.matches.len() != 0 {
- t.Fatal("Expected cache invalidation")
- }
- // Cache some outcomes again
- for _, letter := range []string{"b", "x", "y"} {
- pats.Match(letter)
- }
- // Verify that outcomes provided on next laod
- err = pats.Load(fd1.Name())
- if err != nil {
- t.Fatal(err)
- }
- if pats.matches.len() != 3 {
- t.Fatal("Expected 3 cached results")
- }
- }
- func TestCommentsAndBlankLines(t *testing.T) {
- stignore := `
- // foo
- //bar
- //!baz
- //#dex
- // ips
- `
- pats := New(true)
- err := pats.Parse(bytes.NewBufferString(stignore), ".stignore")
- if err != nil {
- t.Error(err)
- }
- if len(pats.patterns) > 0 {
- t.Errorf("Expected no patterns")
- }
- }
- var result bool
- func BenchmarkMatch(b *testing.B) {
- stignore := `
- .frog
- .frog*
- .frogfox
- .whale
- .whale/*
- .dolphin
- .dolphin/*
- ~ferret~.*
- .ferret.*
- flamingo.*
- flamingo
- *.crow
- *.crow
- `
- pats := New(false)
- err := pats.Parse(bytes.NewBufferString(stignore), ".stignore")
- if err != nil {
- b.Error(err)
- }
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- result = pats.Match("filename")
- }
- }
- func BenchmarkMatchCached(b *testing.B) {
- stignore := `
- .frog
- .frog*
- .frogfox
- .whale
- .whale/*
- .dolphin
- .dolphin/*
- ~ferret~.*
- .ferret.*
- flamingo.*
- flamingo
- *.crow
- *.crow
- `
- // Caches per file, hence write the patterns to a file.
- fd, err := ioutil.TempFile("", "")
- if err != nil {
- b.Fatal(err)
- }
- _, err = fd.WriteString(stignore)
- defer fd.Close()
- defer os.Remove(fd.Name())
- if err != nil {
- b.Fatal(err)
- }
- // Load the patterns
- pats := New(true)
- err = pats.Load(fd.Name())
- if err != nil {
- b.Fatal(err)
- }
- // Cache the outcome for "filename"
- pats.Match("filename")
- // This load should now load the cached outcomes as the set of patterns
- // has not changed.
- err = pats.Load(fd.Name())
- if err != nil {
- b.Fatal(err)
- }
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- result = pats.Match("filename")
- }
- }
- func TestCacheReload(t *testing.T) {
- fd, err := ioutil.TempFile("", "")
- if err != nil {
- t.Fatal(err)
- }
- defer fd.Close()
- defer os.Remove(fd.Name())
- // Ignore file matches f1 and f2
- _, err = fd.WriteString("f1\nf2\n")
- if err != nil {
- t.Fatal(err)
- }
- pats := New(true)
- err = pats.Load(fd.Name())
- if err != nil {
- t.Fatal(err)
- }
- // Verify that both are ignored
- if !pats.Match("f1") {
- t.Error("Unexpected non-match for f1")
- }
- if !pats.Match("f2") {
- t.Error("Unexpected non-match for f2")
- }
- if pats.Match("f3") {
- t.Error("Unexpected match for f3")
- }
- // Rewrite file to match f1 and f3
- err = fd.Truncate(0)
- if err != nil {
- t.Fatal(err)
- }
- _, err = fd.Seek(0, os.SEEK_SET)
- if err != nil {
- t.Fatal(err)
- }
- _, err = fd.WriteString("f1\nf3\n")
- if err != nil {
- t.Fatal(err)
- }
- err = pats.Load(fd.Name())
- if err != nil {
- t.Fatal(err)
- }
- // Verify that the new patterns are in effect
- if !pats.Match("f1") {
- t.Error("Unexpected non-match for f1")
- }
- if pats.Match("f2") {
- t.Error("Unexpected match for f2")
- }
- if !pats.Match("f3") {
- t.Error("Unexpected non-match for f3")
- }
- }
- func TestHash(t *testing.T) {
- p1 := New(true)
- err := p1.Load("testdata/.stignore")
- if err != nil {
- t.Fatal(err)
- }
- // Same list of patterns as testdata/.stignore, after expansion
- stignore := `
- dir2/dfile
- dir3
- bfile
- dir1/cfile
- **/efile
- /ffile
- lost+found
- `
- p2 := New(true)
- err = p2.Parse(bytes.NewBufferString(stignore), ".stignore")
- if err != nil {
- t.Fatal(err)
- }
- // Not same list of patterns
- stignore = `
- dir2/dfile
- dir3
- bfile
- dir1/cfile
- /ffile
- lost+found
- `
- p3 := New(true)
- err = p3.Parse(bytes.NewBufferString(stignore), ".stignore")
- if err != nil {
- t.Fatal(err)
- }
- if p1.Hash() == "" {
- t.Error("p1 hash blank")
- }
- if p2.Hash() == "" {
- t.Error("p2 hash blank")
- }
- if p3.Hash() == "" {
- t.Error("p3 hash blank")
- }
- if p1.Hash() != p2.Hash() {
- t.Error("p1-p2 hashes differ")
- }
- if p1.Hash() == p3.Hash() {
- t.Error("p1-p3 hashes same")
- }
- }
- func TestHashOfEmpty(t *testing.T) {
- p1 := New(true)
- err := p1.Load("testdata/.stignore")
- if err != nil {
- t.Fatal(err)
- }
- firstHash := p1.Hash()
- // Reloading with a non-existent file should empty the patterns and
- // recalculate the hash. d41d8cd98f00b204e9800998ecf8427e is the md5 of
- // nothing.
- p1.Load("file/does/not/exist")
- secondHash := p1.Hash()
- if firstHash == secondHash {
- t.Error("hash did not change")
- }
- if secondHash != "d41d8cd98f00b204e9800998ecf8427e" {
- t.Error("second hash is not hash of empty string")
- }
- if len(p1.patterns) != 0 {
- t.Error("there are more than zero patterns")
- }
- }
|