mirror of
				https://github.com/gohugoio/hugo.git
				synced 2024-05-11 05:54:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			662 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			662 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package source
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
func TestIgnoreDotFilesAndDirectories(t *testing.T) {
 | 
						|
	tests := []struct {
 | 
						|
		path   string
 | 
						|
		ignore bool
 | 
						|
	}{
 | 
						|
		{".foobar/", true},
 | 
						|
		{"foobar/.barfoo/", true},
 | 
						|
		{"barfoo.md", false},
 | 
						|
		{"foobar/barfoo.md", false},
 | 
						|
		{"foobar/.barfoo.md", true},
 | 
						|
		{".barfoo.md", true},
 | 
						|
		{".md", true},
 | 
						|
		{"", true},
 | 
						|
		{"foobar/barfoo.md~", true},
 | 
						|
		{".foobar/barfoo.md~", true},
 | 
						|
		{"foobar~/barfoo.md", false},
 | 
						|
		{"foobar/bar~foo.md", false},
 | 
						|
	}
 | 
						|
 | 
						|
	for _, test := range tests {
 | 
						|
		if ignored := isNonProcessablePath(test.path); test.ignore != ignored {
 | 
						|
			t.Errorf("File not ignored.  Expected: %t, got: %t", test.ignore, ignored)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |