fleet/cmd/fleetctl/vulnerability_data_stream_test.go

50 lines
1.1 KiB
Go
Raw Normal View History

package main
import (
2022-06-01 16:06:57 +00:00
"fmt"
"path"
"testing"
2022-06-01 16:06:57 +00:00
"time"
"github.com/fleetdm/fleet/v4/pkg/nettest"
"github.com/stretchr/testify/assert"
)
func TestVulnerabilityDataStream(t *testing.T) {
nettest.Run(t)
runAppCheckErr(t, []string{"vulnerability-data-stream"}, "No directory provided")
vulnPath := t.TempDir()
expected := `[-] Downloading CPE database... Done
2022-06-01 16:06:57 +00:00
[-] Downloading NVD CVE feed... Done
[-] Downloading EPSS feed... Done
[-] Downloading CISA known exploits feed... Done
[+] Data streams successfully downloaded!
`
assert.Equal(t,
expected,
runAppForTest(t, []string{"vulnerability-data-stream", "--dir", vulnPath}),
)
assert.FileExists(t, path.Join(vulnPath, "cpe.sqlite"))
2022-06-01 16:06:57 +00:00
files := []string{
"cpe.sqlite",
"nvdcve-1.1-modified.json.gz",
"nvdcve-1.1-recent.json.gz",
"epss_scores-current.csv",
"known_exploited_vulnerabilities.json",
}
currentYear := time.Now().Year()
for y := 2002; y <= currentYear; y++ {
files = append(
files,
fmt.Sprintf("nvdcve-1.1-%d.json.gz", y),
fmt.Sprintf("nvdcve-1.1-%d.meta", y),
)
}
for _, file := range files {
assert.FileExists(t, path.Join(vulnPath, file))
}
}