mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-05 20:40:16 -08:00
264 lines
6.6 KiB
Go
264 lines
6.6 KiB
Go
package library_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/aquasecurity/trivy-db/pkg/db"
|
|
dbTypes "github.com/aquasecurity/trivy-db/pkg/types"
|
|
"github.com/aquasecurity/trivy-db/pkg/vulnsrc/vulnerability"
|
|
"github.com/aquasecurity/trivy/internal/dbtest"
|
|
"github.com/aquasecurity/trivy/pkg/detector/library"
|
|
ftypes "github.com/aquasecurity/trivy/pkg/fanal/types"
|
|
"github.com/aquasecurity/trivy/pkg/types"
|
|
)
|
|
|
|
func TestDriver_Detect(t *testing.T) {
|
|
type args struct {
|
|
pkgName string
|
|
pkgVer string
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
fixtures []string
|
|
libType ftypes.LangType
|
|
args args
|
|
want []types.DetectedVulnerability
|
|
wantErr string
|
|
}{
|
|
{
|
|
name: "happy path",
|
|
fixtures: []string{
|
|
"testdata/fixtures/php.yaml",
|
|
"testdata/fixtures/data-source.yaml",
|
|
},
|
|
libType: ftypes.Composer,
|
|
args: args{
|
|
pkgName: "symfony/symfony",
|
|
pkgVer: "4.2.6",
|
|
},
|
|
want: []types.DetectedVulnerability{
|
|
{
|
|
VulnerabilityID: "CVE-2019-10909",
|
|
PkgName: "symfony/symfony",
|
|
InstalledVersion: "4.2.6",
|
|
FixedVersion: "4.2.7",
|
|
DataSource: &dbTypes.DataSource{
|
|
ID: vulnerability.GLAD,
|
|
Name: "GitLab Advisory Database Community",
|
|
URL: "https://gitlab.com/gitlab-org/advisories-community",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "case-sensitive go package",
|
|
fixtures: []string{
|
|
"testdata/fixtures/go.yaml",
|
|
"testdata/fixtures/data-source.yaml",
|
|
},
|
|
libType: ftypes.GoModule,
|
|
args: args{
|
|
pkgName: "github.com/Masterminds/vcs",
|
|
pkgVer: "v1.13.1",
|
|
},
|
|
want: []types.DetectedVulnerability{
|
|
{
|
|
VulnerabilityID: "CVE-2022-21235",
|
|
VendorIDs: []string{
|
|
"GHSA-6635-c626-vj4r",
|
|
},
|
|
PkgName: "github.com/Masterminds/vcs",
|
|
InstalledVersion: "v1.13.1",
|
|
FixedVersion: "v1.13.2",
|
|
DataSource: &dbTypes.DataSource{
|
|
ID: vulnerability.GLAD,
|
|
Name: "GitLab Advisory Database Community",
|
|
URL: "https://gitlab.com/gitlab-org/advisories-community",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "julia package",
|
|
fixtures: []string{
|
|
"testdata/fixtures/julia.yaml",
|
|
"testdata/fixtures/data-source.yaml",
|
|
},
|
|
libType: ftypes.Julia,
|
|
args: args{
|
|
pkgName: "HTTP",
|
|
pkgVer: "1.10.16",
|
|
},
|
|
want: []types.DetectedVulnerability{
|
|
{
|
|
VulnerabilityID: "CVE-2025-52479",
|
|
PkgName: "HTTP",
|
|
InstalledVersion: "1.10.16",
|
|
FixedVersion: "1.10.17",
|
|
DataSource: &dbTypes.DataSource{
|
|
ID: vulnerability.Julia,
|
|
Name: "Julia Ecosystem Security Advisories",
|
|
URL: "https://github.com/JuliaLang/SecurityAdvisories.jl",
|
|
},
|
|
VendorIDs: []string{
|
|
"JLSEC-2025-1",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "non-prefixed buckets",
|
|
fixtures: []string{"testdata/fixtures/php-without-prefix.yaml"},
|
|
libType: ftypes.Composer,
|
|
args: args{
|
|
pkgName: "symfony/symfony",
|
|
pkgVer: "4.2.6",
|
|
},
|
|
want: nil,
|
|
},
|
|
{
|
|
name: "no patched versions in the advisory",
|
|
fixtures: []string{
|
|
"testdata/fixtures/php.yaml",
|
|
"testdata/fixtures/data-source.yaml",
|
|
},
|
|
libType: ftypes.Composer,
|
|
args: args{
|
|
pkgName: "symfony/symfony",
|
|
pkgVer: "4.4.6",
|
|
},
|
|
want: []types.DetectedVulnerability{
|
|
{
|
|
VulnerabilityID: "CVE-2020-5275",
|
|
PkgName: "symfony/symfony",
|
|
InstalledVersion: "4.4.6",
|
|
FixedVersion: "4.4.7",
|
|
DataSource: &dbTypes.DataSource{
|
|
ID: vulnerability.PhpSecurityAdvisories,
|
|
Name: "PHP Security Advisories Database",
|
|
URL: "https://github.com/FriendsOfPHP/security-advisories",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "no vulnerable versions in the advisory",
|
|
fixtures: []string{
|
|
"testdata/fixtures/ruby.yaml",
|
|
"testdata/fixtures/data-source.yaml",
|
|
},
|
|
libType: ftypes.Bundler,
|
|
args: args{
|
|
pkgName: "activesupport",
|
|
pkgVer: "4.1.1",
|
|
},
|
|
want: []types.DetectedVulnerability{
|
|
{
|
|
VulnerabilityID: "CVE-2015-3226",
|
|
PkgName: "activesupport",
|
|
InstalledVersion: "4.1.1",
|
|
FixedVersion: ">= 4.2.2, ~> 4.1.11",
|
|
DataSource: &dbTypes.DataSource{
|
|
ID: vulnerability.RubySec,
|
|
Name: "Ruby Advisory Database",
|
|
URL: "https://github.com/rubysec/ruby-advisory-db",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "no vulnerability",
|
|
fixtures: []string{"testdata/fixtures/php.yaml"},
|
|
libType: ftypes.Composer,
|
|
args: args{
|
|
pkgName: "symfony/symfony",
|
|
pkgVer: "4.4.7",
|
|
},
|
|
},
|
|
{
|
|
name: "malformed JSON",
|
|
fixtures: []string{"testdata/fixtures/invalid-type.yaml"},
|
|
libType: ftypes.Composer,
|
|
args: args{
|
|
pkgName: "symfony/symfony",
|
|
pkgVer: "5.1.5",
|
|
},
|
|
wantErr: "json unmarshal error",
|
|
},
|
|
{
|
|
name: "duplicated version in advisory",
|
|
fixtures: []string{
|
|
"testdata/fixtures/pip.yaml",
|
|
"testdata/fixtures/data-source.yaml",
|
|
},
|
|
libType: ftypes.PythonPkg,
|
|
args: args{
|
|
pkgName: "Django",
|
|
pkgVer: "4.2.1",
|
|
},
|
|
want: []types.DetectedVulnerability{
|
|
{
|
|
VulnerabilityID: "CVE-2023-36053",
|
|
PkgName: "Django",
|
|
InstalledVersion: "4.2.1",
|
|
FixedVersion: "4.2.3",
|
|
DataSource: &dbTypes.DataSource{
|
|
ID: vulnerability.GHSA,
|
|
Name: "GitHub Security Advisory Pip",
|
|
URL: "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Apip",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Custom data for vulnerability",
|
|
fixtures: []string{
|
|
"testdata/fixtures/go-custom-data.yaml",
|
|
"testdata/fixtures/data-source.yaml",
|
|
},
|
|
libType: ftypes.GoBinary,
|
|
args: args{
|
|
pkgName: "github.com/docker/docker",
|
|
pkgVer: "23.0.14",
|
|
},
|
|
want: []types.DetectedVulnerability{
|
|
{
|
|
VulnerabilityID: "GHSA-v23v-6jw2-98fq",
|
|
PkgName: "github.com/docker/docker",
|
|
InstalledVersion: "23.0.14",
|
|
FixedVersion: "23.0.15, 26.1.5, 27.1.1, 25.0.6",
|
|
DataSource: &dbTypes.DataSource{
|
|
ID: vulnerability.GHSA,
|
|
Name: "GitHub Security Advisory Go",
|
|
URL: "https://github.com/advisories?query=type%3Areviewed+ecosystem%3Ago",
|
|
},
|
|
Custom: map[string]any{"Severity": 2.0},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
// Initialize DB
|
|
_ = dbtest.InitDB(t, tt.fixtures)
|
|
defer db.Close()
|
|
|
|
driver, ok := library.NewDriver(tt.libType)
|
|
require.True(t, ok)
|
|
|
|
got, err := driver.DetectVulnerabilities("", tt.args.pkgName, tt.args.pkgVer)
|
|
if tt.wantErr != "" {
|
|
require.ErrorContains(t, err, tt.wantErr)
|
|
return
|
|
}
|
|
|
|
// Compare
|
|
require.NoError(t, err)
|
|
assert.Equal(t, tt.want, got)
|
|
})
|
|
}
|
|
}
|