Files
trivy/pkg/fanal/analyzer/language/nodejs/npm/npm_test.go
Nikita Pivkin 067a0fcb9c fix(nodejs): do not detect lock file in node_modules as an app (#4949)
* fix(npm): do not detect lock file in node_modules as an app

* refactor: add x/path.Contains

---------

Co-authored-by: knqyf263 <knqyf263@gmail.com>
2023-08-06 08:59:18 +00:00

228 lines
4.7 KiB
Go

package npm
import (
"context"
"os"
"sort"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/aquasecurity/trivy/pkg/fanal/analyzer"
"github.com/aquasecurity/trivy/pkg/fanal/types"
"github.com/aquasecurity/trivy/pkg/log"
)
func TestMain(m *testing.M) {
_ = log.InitLogger(false, true)
os.Exit(m.Run())
}
func Test_npmLibraryAnalyzer_Analyze(t *testing.T) {
tests := []struct {
name string
dir string
want *analyzer.AnalysisResult
}{
{
name: "with node_modules",
dir: "testdata/happy",
want: &analyzer.AnalysisResult{
Applications: []types.Application{
{
Type: types.Npm,
FilePath: "package-lock.json",
Libraries: types.Packages{
{
ID: "ansi-colors@3.2.3",
Name: "ansi-colors",
Version: "3.2.3",
Dev: true,
Indirect: true,
Locations: []types.Location{
{
StartLine: 6,
EndLine: 11,
},
},
},
{
ID: "array-flatten@1.1.1",
Name: "array-flatten",
Version: "1.1.1",
Indirect: true,
Locations: []types.Location{
{
StartLine: 12,
EndLine: 16,
},
},
},
{
ID: "body-parser@1.18.3",
Name: "body-parser",
Version: "1.18.3",
Indirect: true,
DependsOn: []string{"debug@2.6.9"},
Licenses: []string{"MIT"},
Locations: []types.Location{
{
StartLine: 17,
EndLine: 39,
},
},
},
{
ID: "debug@2.6.9",
Name: "debug",
Version: "2.6.9",
Indirect: true,
DependsOn: []string{"ms@2.0.0"},
Licenses: []string{"MIT"},
Locations: []types.Location{
{
StartLine: 25,
EndLine: 32,
},
{
StartLine: 48,
EndLine: 55,
},
},
},
{
ID: "express@4.16.4",
Name: "express",
Version: "4.16.4",
Indirect: true,
DependsOn: []string{"debug@2.6.9"},
Licenses: []string{"MIT"},
Locations: []types.Location{
{
StartLine: 40,
EndLine: 62,
},
},
},
{
ID: "ms@2.0.0",
Name: "ms",
Version: "2.0.0",
Indirect: true,
Licenses: []string{"MIT"},
Locations: []types.Location{
{
StartLine: 33,
EndLine: 37,
},
{
StartLine: 56,
EndLine: 60,
},
},
},
{
ID: "ms@2.1.1",
Name: "ms",
Version: "2.1.1",
Indirect: true,
Licenses: []string{"MIT"},
Locations: []types.Location{
{
StartLine: 63,
EndLine: 67,
},
},
},
},
},
},
},
},
{
name: "without node_modules",
dir: "testdata/no-node_modules",
want: &analyzer.AnalysisResult{
Applications: []types.Application{
{
Type: types.Npm,
FilePath: "package-lock.json",
Libraries: types.Packages{
{
ID: "ms@2.1.1",
Name: "ms",
Version: "2.1.1",
Indirect: true,
Locations: []types.Location{
{
StartLine: 6,
EndLine: 10,
},
},
},
},
},
},
},
},
{
name: "sad path",
dir: "testdata/sad",
want: &analyzer.AnalysisResult{},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
a, err := newNpmLibraryAnalyzer(analyzer.AnalyzerOptions{})
require.NoError(t, err)
got, err := a.PostAnalyze(context.Background(), analyzer.PostAnalysisInput{
FS: os.DirFS(tt.dir),
})
assert.NoError(t, err)
if len(got.Applications) > 0 {
sort.Sort(got.Applications[0].Libraries)
}
assert.Equal(t, tt.want, got)
})
}
}
func Test_nodePkgLibraryAnalyzer_Required(t *testing.T) {
tests := []struct {
name string
filePath string
want bool
}{
{
name: "lock file",
filePath: "npm/package-lock.json",
want: true,
},
{
name: "package.json",
filePath: "npm/node_modules/ms/package.json",
want: true,
},
{
name: "sad path",
filePath: "npm/node_modules/package.json",
want: false,
},
{
name: "lock file in node_modules",
filePath: "npm/node_modules/html2canvas/package-lock.json",
want: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
a := npmLibraryAnalyzer{}
got := a.Required(tt.filePath, nil)
assert.Equal(t, tt.want, got)
})
}
}