mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-22 07:10:41 -08:00
130 lines
2.9 KiB
Go
130 lines
2.9 KiB
Go
package library_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
ftypes "github.com/aquasecurity/fanal/types"
|
|
"github.com/aquasecurity/trivy-db/pkg/db"
|
|
"github.com/aquasecurity/trivy/pkg/dbtest"
|
|
"github.com/aquasecurity/trivy/pkg/detector/library"
|
|
"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 string
|
|
args args
|
|
want []types.DetectedVulnerability
|
|
wantErr string
|
|
}{
|
|
{
|
|
name: "happy path",
|
|
fixtures: []string{"testdata/fixtures/php.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",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "non-prefix buckets",
|
|
fixtures: []string{"testdata/fixtures/php-without-prefix.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",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "no patched versions in the advisory",
|
|
fixtures: []string{"testdata/fixtures/php.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",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "no vulnerable versions in the advisory",
|
|
fixtures: []string{"testdata/fixtures/ruby.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",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "no vulnerability",
|
|
fixtures: []string{"testdata/fixtures/php.yaml"},
|
|
libType: ftypes.Composer,
|
|
args: args{
|
|
pkgName: "symfony/symfony",
|
|
pkgVer: "4.4.7",
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
// Initialize DB
|
|
_ = dbtest.InitDB(t, tt.fixtures)
|
|
defer db.Close()
|
|
|
|
driver, err := library.NewDriver(tt.libType)
|
|
require.NoError(t, err)
|
|
|
|
got, err := driver.Detect(tt.args.pkgName, tt.args.pkgVer)
|
|
switch {
|
|
case tt.wantErr != "":
|
|
require.NotNil(t, err)
|
|
assert.Contains(t, err.Error(), tt.wantErr)
|
|
default:
|
|
assert.NoError(t, err)
|
|
}
|
|
|
|
// Compare
|
|
assert.Equal(t, tt.want, got)
|
|
})
|
|
}
|
|
}
|