1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
package commands
import (
"testing"
"github.com/git-lfs/git-lfs/v3/config"
"github.com/stretchr/testify/assert"
)
var (
testcfg = config.NewFrom(config.Values{
Git: map[string][]string{
"lfs.fetchinclude": []string{"/default/include"},
"lfs.fetchexclude": []string{"/default/exclude"},
},
})
)
func TestDetermineIncludeExcludePathsReturnsCleanedPaths(t *testing.T) {
inc := "/some/include"
exc := "/some/exclude"
i, e := determineIncludeExcludePaths(testcfg, &inc, &exc, true)
assert.Equal(t, []string{"/some/include"}, i)
assert.Equal(t, []string{"/some/exclude"}, e)
}
func TestDetermineIncludeExcludePathsReturnsEmptyPaths(t *testing.T) {
inc := ""
exc := ""
i, e := determineIncludeExcludePaths(testcfg, &inc, &exc, true)
assert.Empty(t, i)
assert.Empty(t, e)
}
func TestDetermineIncludeExcludePathsReturnsDefaultsWhenAbsent(t *testing.T) {
i, e := determineIncludeExcludePaths(testcfg, nil, nil, true)
assert.Equal(t, []string{"/default/include"}, i)
assert.Equal(t, []string{"/default/exclude"}, e)
}
func TestDetermineIncludeExcludePathsReturnsNothingWhenAbsent(t *testing.T) {
i, e := determineIncludeExcludePaths(testcfg, nil, nil, false)
assert.Empty(t, i)
assert.Empty(t, e)
}
func TestSpecialGitRefsExclusion(t *testing.T) {
assert.True(t, isSpecialGitRef("refs/notes/commits"))
assert.True(t, isSpecialGitRef("refs/bisect/bad"))
assert.True(t, isSpecialGitRef("refs/replace/abcdef90"))
assert.True(t, isSpecialGitRef("refs/stash"))
assert.False(t, isSpecialGitRef("refs/commits/abcdef90"))
}
|