103 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package processors
 | |
| 
 | |
| import (
 | |
| 	"path/filepath"
 | |
| 	"regexp"
 | |
| 	"strings"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| 	"github.com/stretchr/testify/require"
 | |
| )
 | |
| 
 | |
| func Test_absDirs(t *testing.T) {
 | |
| 	testCases := []struct {
 | |
| 		desc     string
 | |
| 		args     []string
 | |
| 		expected []string
 | |
| 	}{
 | |
| 		{
 | |
| 			desc:     "empty",
 | |
| 			expected: []string{mustAbs(t, ".")},
 | |
| 		},
 | |
| 		{
 | |
| 			desc:     "wildcard",
 | |
| 			args:     []string{"./..."},
 | |
| 			expected: []string{mustAbs(t, ".")},
 | |
| 		},
 | |
| 		{
 | |
| 			desc:     "wildcard directory",
 | |
| 			args:     []string{"foo/..."},
 | |
| 			expected: []string{mustAbs(t, "foo")},
 | |
| 		},
 | |
| 		{
 | |
| 			desc:     "Go file",
 | |
| 			args:     []string{"./foo/bar.go"},
 | |
| 			expected: []string{mustAbs(t, "foo")},
 | |
| 		},
 | |
| 		{
 | |
| 			desc:     "relative directory",
 | |
| 			args:     []string{filepath.FromSlash("./foo")},
 | |
| 			expected: []string{mustAbs(t, "foo")},
 | |
| 		},
 | |
| 		{
 | |
| 			desc:     "absolute directory",
 | |
| 			args:     []string{mustAbs(t, "foo")},
 | |
| 			expected: []string{mustAbs(t, "foo")},
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	for _, test := range testCases {
 | |
| 		test := test
 | |
| 		t.Run(test.desc, func(t *testing.T) {
 | |
| 			t.Parallel()
 | |
| 
 | |
| 			results, err := absDirs(test.args)
 | |
| 			require.NoError(t, err)
 | |
| 
 | |
| 			assert.Equal(t, test.expected, results)
 | |
| 		})
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func Test_createPathRegex(t *testing.T) {
 | |
| 	matches := [][]string{
 | |
| 		{"dir"},
 | |
| 		{"root", "dir"},
 | |
| 		{"root", "dir", "subdir"},
 | |
| 		{"dir", "subdir"},
 | |
| 	}
 | |
| 
 | |
| 	noMatches := [][]string{
 | |
| 		{"nodir"},
 | |
| 		{"dirno"},
 | |
| 		{"root", "dirno"},
 | |
| 		{"root", "nodir"},
 | |
| 		{"root", "dirno", "subdir"},
 | |
| 		{"root", "nodir", "subdir"},
 | |
| 		{"dirno", "subdir"},
 | |
| 		{"nodir", "subdir"},
 | |
| 	}
 | |
| 
 | |
| 	for _, sep := range []rune{'/', '\\'} {
 | |
| 		exp := regexp.MustCompile(createPathRegex("dir", sep))
 | |
| 
 | |
| 		for _, m := range matches {
 | |
| 			assert.Regexp(t, exp, strings.Join(m, string(sep)))
 | |
| 		}
 | |
| 
 | |
| 		for _, m := range noMatches {
 | |
| 			assert.NotRegexp(t, exp, strings.Join(m, string(sep)))
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func mustAbs(t *testing.T, p string) string {
 | |
| 	t.Helper()
 | |
| 
 | |
| 	abs, err := filepath.Abs(p)
 | |
| 	require.NoError(t, err)
 | |
| 
 | |
| 	return abs
 | |
| }
 | 
