mirror of
https://github.com/safedep/vet.git
synced 2025-12-10 00:22:08 -06:00
feat: Building code graph Refactor to support import processing Handle relative import name fixup Add docs for code analysis framework Update docs to include additional examples feat: Function call graph Update code graph to link function decl and calls Include call node in function calls feat: Flatten vulnerabilities in CSV reporter refactor: Maintain separation of concerns for code analysis framework refactor: Separate storage entities in its own package feat: Add callback support in code graph builder docs: Fix code analysis framework docs Signed-off-by: abhisek <abhisek.datta@gmail.com>
147 lines
2.5 KiB
Go
147 lines
2.5 KiB
Go
package code
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestIsAcceptableSourceFile(t *testing.T) {
|
|
cases := []struct {
|
|
name string
|
|
path string
|
|
excludedGlobs []string
|
|
includedGlobs []string
|
|
want bool
|
|
}{
|
|
{
|
|
"No globs",
|
|
"/a/b/foo.go",
|
|
[]string{},
|
|
[]string{},
|
|
true,
|
|
},
|
|
{
|
|
"Excluded glob",
|
|
"/a/b/foo.go",
|
|
[]string{"*.go"},
|
|
[]string{},
|
|
false,
|
|
},
|
|
{
|
|
"Included glob",
|
|
"/a/b/foo.go",
|
|
[]string{},
|
|
[]string{"*.go"},
|
|
true,
|
|
},
|
|
{
|
|
"Excluded and included globs",
|
|
"/a/b/foo.go",
|
|
[]string{"*.go"},
|
|
[]string{"*.go"},
|
|
false,
|
|
},
|
|
}
|
|
|
|
for _, test := range cases {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
repo := fileSystemSourceRepository{
|
|
config: FileSystemSourceRepositoryConfig{
|
|
ExcludedGlobs: test.excludedGlobs,
|
|
IncludedGlobs: test.includedGlobs,
|
|
},
|
|
}
|
|
|
|
ret := repo.isAcceptableSourceFile(test.path)
|
|
assert.Equal(t, test.want, ret)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestGetRelativePath(t *testing.T) {
|
|
cases := []struct {
|
|
name string
|
|
path string
|
|
sourcePaths []string
|
|
importPaths []string
|
|
includeImports bool
|
|
want string
|
|
err bool
|
|
}{
|
|
{
|
|
"Relative in source path with no imports",
|
|
"/a/b/c/foo.go",
|
|
[]string{"/a/b"},
|
|
[]string{},
|
|
false,
|
|
"c/foo.go",
|
|
false,
|
|
},
|
|
{
|
|
"Relative in source path with imports",
|
|
"/a/b/c/foo.go",
|
|
[]string{"/a/b"},
|
|
[]string{"/a/b/c"},
|
|
true,
|
|
"c/foo.go",
|
|
false,
|
|
},
|
|
{
|
|
"Relative in import path with imports",
|
|
"/a/b/c/foo.go",
|
|
[]string{"/x/y"},
|
|
[]string{"/a/b"},
|
|
true,
|
|
"c/foo.go",
|
|
false,
|
|
},
|
|
{
|
|
"First match in import path",
|
|
"/a/b/c/foo.go",
|
|
[]string{"/x/y"},
|
|
[]string{"/a/b", "/a/b/c"},
|
|
true,
|
|
"c/foo.go",
|
|
false,
|
|
},
|
|
{
|
|
"Relative in source path",
|
|
"./a/b/c/foo.go",
|
|
[]string{"./a/b"},
|
|
[]string{"/a/b/c"},
|
|
true,
|
|
"c/foo.go",
|
|
false,
|
|
},
|
|
{
|
|
"No match",
|
|
"/a/b/c/foo.go",
|
|
[]string{"/x/y"},
|
|
[]string{"/z"},
|
|
true,
|
|
"",
|
|
true,
|
|
},
|
|
}
|
|
|
|
for _, test := range cases {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
repo := fileSystemSourceRepository{
|
|
config: FileSystemSourceRepositoryConfig{
|
|
SourcePaths: test.sourcePaths,
|
|
ImportPaths: test.importPaths,
|
|
},
|
|
}
|
|
|
|
ret, err := repo.GetRelativePath(test.path, test.includeImports)
|
|
if test.err {
|
|
assert.Error(t, err)
|
|
} else {
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, test.want, ret)
|
|
}
|
|
})
|
|
}
|
|
}
|