mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-23 07:29:00 -08:00
* feat(python): replace go-version with go-pep440-version * chore(mod): add go-pep440-version * refactor: add trick for golangci-lint * refactor: rename test functions
85 lines
1.8 KiB
Go
85 lines
1.8 KiB
Go
package python_test
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/aquasecurity/trivy/pkg/detector/library/python"
|
|
"github.com/aquasecurity/trivy/pkg/log"
|
|
"github.com/aquasecurity/trivy/pkg/types"
|
|
"github.com/aquasecurity/trivy/pkg/utils"
|
|
)
|
|
|
|
func TestAdvisory_DetectVulnerabilities(t *testing.T) {
|
|
type args struct {
|
|
pkgName string
|
|
pkgVer string
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
fixtures []string
|
|
want []types.DetectedVulnerability
|
|
wantErr string
|
|
}{
|
|
{
|
|
name: "detected",
|
|
args: args{
|
|
pkgName: "django",
|
|
pkgVer: "2.2.11a1",
|
|
},
|
|
fixtures: []string{"testdata/fixtures/pip.yaml"},
|
|
want: []types.DetectedVulnerability{
|
|
{
|
|
PkgName: "django",
|
|
InstalledVersion: "2.2.11a1",
|
|
VulnerabilityID: "CVE-2020-9402",
|
|
FixedVersion: "1.11.29, 2.2.11, 3.0.4",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
// https://github.com/aquasecurity/trivy/issues/713
|
|
name: "not detected",
|
|
args: args{
|
|
pkgName: "django",
|
|
pkgVer: "3.0.10",
|
|
},
|
|
fixtures: []string{"testdata/fixtures/pip.yaml"},
|
|
want: nil,
|
|
},
|
|
{
|
|
name: "malformed JSON",
|
|
args: args{
|
|
pkgName: "django",
|
|
pkgVer: "2.0.18",
|
|
},
|
|
fixtures: []string{"testdata/fixtures/invalid-type.yaml"},
|
|
wantErr: "failed to unmarshal advisory JSON",
|
|
},
|
|
}
|
|
|
|
log.InitLogger(false, true)
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
dir := utils.InitTestDB(t, tt.fixtures)
|
|
defer os.RemoveAll(dir)
|
|
|
|
a := python.NewAdvisory()
|
|
got, err := a.DetectVulnerabilities(tt.args.pkgName, tt.args.pkgVer)
|
|
if tt.wantErr != "" {
|
|
require.NotNil(t, err)
|
|
assert.Contains(t, err.Error(), tt.wantErr)
|
|
return
|
|
} else {
|
|
assert.NoError(t, err)
|
|
}
|
|
|
|
assert.Equal(t, tt.want, got)
|
|
})
|
|
}
|
|
}
|