mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-23 15:37:50 -08:00
Signed-off-by: knqyf263 <knqyf263@gmail.com> Co-authored-by: DmitriyLewen <91113035+DmitriyLewen@users.noreply.github.com> Co-authored-by: DmitriyLewen <dmitriy.lewen@smartforce.io>
187 lines
3.8 KiB
Go
187 lines
3.8 KiB
Go
package packagejson_test
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/aquasecurity/trivy/pkg/dependency/parser/nodejs/packagejson"
|
|
ftypes "github.com/aquasecurity/trivy/pkg/fanal/types"
|
|
)
|
|
|
|
func TestParse(t *testing.T) {
|
|
vectors := []struct {
|
|
name string
|
|
inputFile string
|
|
want packagejson.Package
|
|
wantErr string
|
|
}{
|
|
{
|
|
name: "happy path",
|
|
inputFile: "testdata/package.json",
|
|
|
|
// docker run --name composer --rm -it node:12-alpine sh
|
|
// npm init --force
|
|
// npm install --save promise jquery
|
|
// npm ls | grep -E -o "\S+@\S+" | awk -F@ 'NR>0 {printf("{\""$1"\", \""$2"\"},\n")}'
|
|
want: packagejson.Package{
|
|
Package: ftypes.Package{
|
|
ID: "bootstrap@5.0.2",
|
|
Name: "bootstrap",
|
|
Version: "5.0.2",
|
|
Licenses: []string{"MIT"},
|
|
},
|
|
Dependencies: map[string]string{
|
|
"js-tokens": "^4.0.0",
|
|
},
|
|
OptionalDependencies: map[string]string{
|
|
"colors": "^1.4.0",
|
|
},
|
|
DevDependencies: map[string]string{
|
|
"@babel/cli": "^7.14.5",
|
|
"@babel/core": "^7.14.6",
|
|
},
|
|
Workspaces: []string{
|
|
"packages/*",
|
|
"backend",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "happy path - legacy license",
|
|
inputFile: "testdata/legacy_package.json",
|
|
want: packagejson.Package{
|
|
Package: ftypes.Package{
|
|
ID: "angular@4.1.2",
|
|
Name: "angular",
|
|
Version: "4.1.2",
|
|
Licenses: []string{"ISC"},
|
|
},
|
|
Dependencies: map[string]string{},
|
|
DevDependencies: map[string]string{
|
|
"@babel/cli": "^7.14.5",
|
|
"@babel/core": "^7.14.6",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "happy path - version doesn't exist",
|
|
inputFile: "testdata/without_version_package.json",
|
|
want: packagejson.Package{
|
|
Package: ftypes.Package{
|
|
ID: "",
|
|
Name: "angular",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "happy path - workspace as struct",
|
|
inputFile: "testdata/workspace_as_map_package.json",
|
|
want: packagejson.Package{
|
|
Package: ftypes.Package{
|
|
ID: "example@1.0.0",
|
|
Name: "example",
|
|
Version: "1.0.0",
|
|
},
|
|
Workspaces: []string{
|
|
"packages/*",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "invalid package name",
|
|
inputFile: "testdata/invalid_name.json",
|
|
wantErr: "Name can only contain URL-friendly characters",
|
|
},
|
|
{
|
|
name: "sad path",
|
|
inputFile: "testdata/invalid_package.json",
|
|
|
|
// docker run --name composer --rm -it node:12-alpine sh
|
|
// npm init --force
|
|
// npm install --save promise jquery
|
|
// npm ls | grep -E -o "\S+@\S+" | awk -F@ 'NR>0 {printf("{\""$1"\", \""$2"\"},\n")}'
|
|
wantErr: "JSON decode error",
|
|
},
|
|
{
|
|
name: "without name and version",
|
|
inputFile: "testdata/without_name_and_version_package.json",
|
|
want: packagejson.Package{
|
|
Package: ftypes.Package{
|
|
Licenses: []string{"MIT"},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, v := range vectors {
|
|
t.Run(v.name, func(t *testing.T) {
|
|
f, err := os.Open(v.inputFile)
|
|
require.NoError(t, err)
|
|
defer f.Close()
|
|
|
|
got, err := packagejson.NewParser().Parse(f)
|
|
if v.wantErr != "" {
|
|
assert.ErrorContains(t, err, v.wantErr)
|
|
return
|
|
}
|
|
|
|
require.NoError(t, err)
|
|
assert.Equal(t, v.want, got)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestIsValidName(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
want bool
|
|
}{
|
|
{
|
|
name: "",
|
|
want: true,
|
|
},
|
|
{
|
|
name: "test_package",
|
|
want: true,
|
|
},
|
|
{
|
|
name: "test.package",
|
|
want: true,
|
|
},
|
|
{
|
|
name: "test-package",
|
|
want: true,
|
|
},
|
|
{
|
|
name: "@test/package",
|
|
want: true,
|
|
},
|
|
{
|
|
name: "test@package",
|
|
want: false,
|
|
},
|
|
{
|
|
name: "test?package",
|
|
want: false,
|
|
},
|
|
{
|
|
name: "test/package",
|
|
want: false,
|
|
},
|
|
{
|
|
name: "package/",
|
|
want: false,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
valid := packagejson.IsValidName(tt.name)
|
|
require.Equal(t, tt.want, valid)
|
|
})
|
|
}
|
|
}
|