mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-10 06:40:46 -08:00
* Add oracle
* Add oracle
* Add golden json
* Add integration test
* Update go.{mod,sum}
* go mod tidy
* Use k8s/utils clock.Clock interface
* Fix Detect vulnerability oracle
97 lines
2.3 KiB
Go
97 lines
2.3 KiB
Go
package oracle
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
oracleoval "github.com/aquasecurity/trivy-db/pkg/vulnsrc/oracle-oval"
|
|
"github.com/aquasecurity/trivy/pkg/log"
|
|
|
|
"k8s.io/utils/clock"
|
|
clocktesting "k8s.io/utils/clock/testing"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
log.InitLogger(false, false)
|
|
os.Exit(m.Run())
|
|
}
|
|
|
|
func TestScanner_IsSupportedVersion(t *testing.T) {
|
|
vectors := map[string]struct {
|
|
clock clock.Clock
|
|
osFamily string
|
|
osVersion string
|
|
expected bool
|
|
}{
|
|
"oracle3": {
|
|
clock: clocktesting.NewFakeClock(time.Date(2019, 5, 31, 23, 59, 59, 0, time.UTC)),
|
|
osFamily: "oracle",
|
|
osVersion: "3",
|
|
expected: false,
|
|
},
|
|
"oracle4": {
|
|
clock: clocktesting.NewFakeClock(time.Date(2019, 5, 31, 23, 59, 59, 0, time.UTC)),
|
|
osFamily: "oracle",
|
|
osVersion: "4",
|
|
expected: false,
|
|
},
|
|
"oracle5": {
|
|
clock: clocktesting.NewFakeClock(time.Date(2019, 5, 31, 23, 59, 59, 0, time.UTC)),
|
|
osFamily: "oracle",
|
|
osVersion: "5",
|
|
expected: false,
|
|
},
|
|
"oracle6": {
|
|
clock: clocktesting.NewFakeClock(time.Date(2019, 5, 31, 23, 59, 59, 0, time.UTC)),
|
|
osFamily: "oracle",
|
|
osVersion: "6",
|
|
expected: true,
|
|
},
|
|
"oracle7": {
|
|
clock: clocktesting.NewFakeClock(time.Date(2019, 5, 31, 23, 59, 59, 0, time.UTC)),
|
|
osFamily: "oracle",
|
|
osVersion: "7",
|
|
expected: true,
|
|
},
|
|
"oracle7.6": {
|
|
clock: clocktesting.NewFakeClock(time.Date(2019, 5, 31, 23, 59, 59, 0, time.UTC)),
|
|
osFamily: "oracle",
|
|
osVersion: "7.6",
|
|
expected: true,
|
|
},
|
|
"oracle8": {
|
|
clock: clocktesting.NewFakeClock(time.Date(2029, 7, 18, 23, 59, 58, 59, time.UTC)),
|
|
osFamily: "oracle",
|
|
osVersion: "8",
|
|
expected: true,
|
|
},
|
|
"oracle8-same-time": {
|
|
clock: clocktesting.NewFakeClock(time.Date(2029, 7, 18, 23, 59, 59, 0, time.UTC)),
|
|
osFamily: "oracle",
|
|
osVersion: "8",
|
|
expected: false,
|
|
},
|
|
"unknown": {
|
|
clock: clocktesting.NewFakeClock(time.Date(2019, 5, 31, 23, 59, 59, 0, time.UTC)),
|
|
osFamily: "oracle",
|
|
osVersion: "unknown",
|
|
expected: false,
|
|
},
|
|
}
|
|
|
|
for testName, v := range vectors {
|
|
s := &Scanner{
|
|
vs: oracleoval.NewVulnSrc(),
|
|
clock: v.clock,
|
|
}
|
|
t.Run(testName, func(t *testing.T) {
|
|
actual := s.IsSupportedVersion(v.osFamily, v.osVersion)
|
|
if actual != v.expected {
|
|
t.Errorf("[%s] got %v, want %v", testName, actual, v.expected)
|
|
}
|
|
})
|
|
}
|
|
|
|
}
|