fleet/cmd/fleetctl/vulnerability_data_stream_test.go

61 lines
1.6 KiB
Go
Raw Normal View History

package main
import (
2022-06-01 16:06:57 +00:00
"fmt"
"os"
"path"
"testing"
"github.com/fleetdm/fleet/v4/pkg/nettest"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestVulnerabilityDataStream(t *testing.T) {
nettest.Run(t)
runAppCheckErr(t, []string{"vulnerability-data-stream"}, "No directory provided")
vulnPath := t.TempDir()
expectedOutput := `[-] Downloading CPE database... Done
[-] Downloading CPE translations... Done
2022-06-01 16:06:57 +00:00
[-] Downloading NVD CVE feed... Done
[-] Downloading EPSS feed... Done
[-] Downloading CISA known exploits feed... Done
[-] Downloading Oval definitions... Done
[-] Downloading MSRC artifacts... Done
[-] Downloading MacOffice release notes... Done
[+] Data streams successfully downloaded!
`
// Set start and end indexes otherwise a full sync using the NVD API 2.0 takes a long time (>15m).
os.Setenv("NETWORK_TEST_NVD_CVE_START_IDX", "220000")
os.Setenv("NETWORK_TEST_NVD_CVE_END_IDX", "226000")
var actualOutput string
err := nettest.RunWithNetRetry(t, func() error {
w, err := runAppNoChecks([]string{"vulnerability-data-stream", "--dir", vulnPath})
actualOutput = w.String()
return err
})
require.NoError(t, err)
assert.Equal(t, expectedOutput, actualOutput)
assert.FileExists(t, path.Join(vulnPath, "cpe.sqlite"))
2022-06-01 16:06:57 +00:00
files := []string{
"cpe.sqlite",
"epss_scores-current.csv",
"known_exploited_vulnerabilities.json",
}
for y := 2008; y <= 2023; y++ {
2022-06-01 16:06:57 +00:00
files = append(
files,
fmt.Sprintf("nvdcve-1.1-%d.json", y),
2022-06-01 16:06:57 +00:00
)
}
for _, file := range files {
assert.FileExists(t, path.Join(vulnPath, file))
}
}