mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-12 15:50:15 -08:00
* detector/alpine: Add LayerID to detect vulns Signed-off-by: Simarpreet Singh <simar@linux.com> * amazon: Add LayerID to DetectedVulns Signed-off-by: Simarpreet Singh <simar@linux.com> * debian: Add LayerID to DetectVulns + tests Signed-off-by: Simarpreet Singh <simar@linux.com> * oracle: Add LayerID to DetectVulns + tests Signed-off-by: Simarpreet Singh <simar@linux.com> * photon: Add LayerID to DetectVulns + tests Signed-off-by: Simarpreet Singh <simar@linux.com> * redhat: Add LayerID to DetectVulns + tests Signed-off-by: Simarpreet Singh <simar@linux.com> * suse: Add LayerID to DetectVulns + tests Signed-off-by: Simarpreet Singh <simar@linux.com> * ubuntu: Add LayerID to DetectVulns + tests Signed-off-by: Simarpreet Singh <simar@linux.com> * integration: Fix integration tests to include LayerID Signed-off-by: Simarpreet Singh <simar@linux.com> * fix(rpc): add layer_id * fix(rpc): insert layer_id to the struct * fix(extractor): add cleanup function * fix(library): add layer ID to detected vulnerabilities * test: update mocks * chore(mod): point to the feature branch of fanal * mod: Point to fanal/master Signed-off-by: Simarpreet Singh <simar@linux.com> * scan_test: Include LayerID as part of the assertion Signed-off-by: Simarpreet Singh <simar@linux.com> * docker_engine_test.go: Update an error message to conform with fanal/master. Signed-off-by: Simarpreet Singh <simar@linux.com> Co-authored-by: Teppei Fukuda <knqyf263@gmail.com>
168 lines
3.8 KiB
Go
168 lines
3.8 KiB
Go
package debian
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
dbTypes "github.com/aquasecurity/trivy-db/pkg/types"
|
|
|
|
ftypes "github.com/aquasecurity/fanal/types"
|
|
"github.com/aquasecurity/trivy/pkg/log"
|
|
"github.com/aquasecurity/trivy/pkg/types"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
type MockOvalConfig struct {
|
|
update func(string) error
|
|
get func(string, string) ([]dbTypes.Advisory, error)
|
|
}
|
|
|
|
func (mdc MockOvalConfig) Update(a string) error {
|
|
if mdc.update != nil {
|
|
return mdc.update(a)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (mdc MockOvalConfig) Get(a string, b string) ([]dbTypes.Advisory, error) {
|
|
if mdc.get != nil {
|
|
return mdc.get(a, b)
|
|
}
|
|
return []dbTypes.Advisory{}, nil
|
|
}
|
|
|
|
type MockDebianConfig struct {
|
|
update func(string) error
|
|
get func(string, string) ([]dbTypes.Advisory, error)
|
|
}
|
|
|
|
func (mdc MockDebianConfig) Update(a string) error {
|
|
if mdc.update != nil {
|
|
return mdc.update(a)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (mdc MockDebianConfig) Get(a string, b string) ([]dbTypes.Advisory, error) {
|
|
if mdc.get != nil {
|
|
return mdc.get(a, b)
|
|
}
|
|
return []dbTypes.Advisory{}, nil
|
|
}
|
|
|
|
func TestMain(m *testing.M) {
|
|
log.InitLogger(false, false)
|
|
os.Exit(m.Run())
|
|
}
|
|
|
|
func TestScanner_IsSupportedVersion(t *testing.T) {
|
|
vectors := map[string]struct {
|
|
now time.Time
|
|
osFamily string
|
|
osVersion string
|
|
expected bool
|
|
}{
|
|
"debian7": {
|
|
now: time.Date(2019, 3, 31, 23, 59, 59, 0, time.UTC),
|
|
osFamily: "debian",
|
|
osVersion: "7",
|
|
expected: false,
|
|
},
|
|
"debian8": {
|
|
now: time.Date(2019, 3, 31, 23, 59, 59, 0, time.UTC),
|
|
osFamily: "debian",
|
|
osVersion: "8.11",
|
|
expected: true,
|
|
},
|
|
"debian8 eol ends": {
|
|
now: time.Date(2020, 7, 31, 23, 59, 59, 0, time.UTC),
|
|
osFamily: "debian",
|
|
osVersion: "8.0",
|
|
expected: false,
|
|
},
|
|
"debian9": {
|
|
now: time.Date(2020, 7, 31, 23, 59, 59, 0, time.UTC),
|
|
osFamily: "debian",
|
|
osVersion: "9",
|
|
expected: true,
|
|
},
|
|
"unknown": {
|
|
now: time.Date(2020, 7, 31, 23, 59, 59, 0, time.UTC),
|
|
osFamily: "debian",
|
|
osVersion: "unknown",
|
|
expected: false,
|
|
},
|
|
}
|
|
|
|
for testName, v := range vectors {
|
|
s := NewScanner()
|
|
t.Run(testName, func(t *testing.T) {
|
|
actual := s.isSupportedVersion(v.now, v.osFamily, v.osVersion)
|
|
if actual != v.expected {
|
|
t.Errorf("[%s] got %v, want %v", testName, actual, v.expected)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestScanner_Detect(t *testing.T) {
|
|
t.Run("happy path", func(t *testing.T) {
|
|
s := &Scanner{
|
|
vs: MockDebianConfig{
|
|
get: func(s string, s2 string) (advisories []dbTypes.Advisory, err error) {
|
|
return []dbTypes.Advisory{
|
|
{
|
|
VulnerabilityID: "debian-123",
|
|
FixedVersion: "3.0.0",
|
|
},
|
|
}, nil
|
|
},
|
|
},
|
|
ovalVs: MockOvalConfig{
|
|
get: func(s string, s2 string) (advisories []dbTypes.Advisory, e error) {
|
|
return []dbTypes.Advisory{
|
|
{
|
|
VulnerabilityID: "oval-123",
|
|
FixedVersion: "3.0.0",
|
|
},
|
|
}, nil
|
|
},
|
|
},
|
|
}
|
|
|
|
vuls, err := s.Detect("3.1.0", []ftypes.Package{
|
|
{
|
|
Name: "testpkg",
|
|
Version: "2.1.0",
|
|
Release: "hotfix",
|
|
SrcRelease: "test-hotfix",
|
|
SrcVersion: "2.1.0",
|
|
LayerID: "sha256:932da51564135c98a49a34a193d6cd363d8fa4184d957fde16c9d8527b3f3b02",
|
|
},
|
|
{
|
|
Name: "foopkg",
|
|
},
|
|
})
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, []types.DetectedVulnerability{
|
|
{
|
|
VulnerabilityID: "oval-123",
|
|
PkgName: "testpkg",
|
|
InstalledVersion: "2.1.0-test-hotfix",
|
|
FixedVersion: "3.0.0",
|
|
LayerID: "sha256:932da51564135c98a49a34a193d6cd363d8fa4184d957fde16c9d8527b3f3b02",
|
|
},
|
|
{
|
|
VulnerabilityID: "debian-123",
|
|
PkgName: "testpkg",
|
|
InstalledVersion: "2.1.0-test-hotfix",
|
|
//FixedVersion: "3.0.0",
|
|
LayerID: "sha256:932da51564135c98a49a34a193d6cd363d8fa4184d957fde16c9d8527b3f3b02",
|
|
},
|
|
}, vuls)
|
|
})
|
|
|
|
// TODO: Add unhappy paths
|
|
}
|