59 lines
1.1 KiB
Go
59 lines
1.1 KiB
Go
package lint
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func Test_buildArgs(t *testing.T) {
|
|
testCases := []struct {
|
|
desc string
|
|
args []string
|
|
expected []string
|
|
}{
|
|
{
|
|
desc: "empty",
|
|
args: nil,
|
|
expected: []string{"./..."},
|
|
},
|
|
{
|
|
desc: "start with a dot",
|
|
args: []string{filepath.FromSlash("./foo")},
|
|
expected: []string{filepath.FromSlash("./foo")},
|
|
},
|
|
{
|
|
desc: "start without a dot",
|
|
args: []string{"foo"},
|
|
expected: []string{filepath.FromSlash("./foo")},
|
|
},
|
|
{
|
|
desc: "absolute path",
|
|
args: []string{mustAbs(t, "/tmp/foo")},
|
|
expected: []string{mustAbs(t, "/tmp/foo")},
|
|
},
|
|
}
|
|
|
|
for _, test := range testCases {
|
|
test := test
|
|
t.Run(test.desc, func(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
results := buildArgs(test.args)
|
|
|
|
assert.Equal(t, test.expected, results)
|
|
})
|
|
}
|
|
}
|
|
|
|
func mustAbs(t *testing.T, p string) string {
|
|
t.Helper()
|
|
|
|
abs, err := filepath.Abs(filepath.FromSlash(p))
|
|
require.NoError(t, err)
|
|
|
|
return abs
|
|
}
|