fleet/server/webhooks/mapper_test.go
Juan Fernandez 009a87d33e
Feature 10196: Add filepath to end-points and third party integrations (#11285)
Adds the software installed path property to the proper end-points and third party integrations (webhook, Zendesk and Jira).
2023-05-17 16:53:15 -04:00

77 lines
1.8 KiB
Go

package webhooks
import (
"net/url"
"testing"
"time"
"github.com/fleetdm/fleet/v4/server/fleet"
"github.com/fleetdm/fleet/v4/server/ptr"
"github.com/stretchr/testify/require"
)
func TestGetPaylaod(t *testing.T) {
serverURL, err := url.Parse("http://mywebsite.com")
require.NoError(t, err)
now := time.Now().UTC().Truncate(time.Second)
vuln := fleet.SoftwareVulnerability{
CVE: "cve-1",
SoftwareID: 1,
}
meta := fleet.CVEMeta{
CVE: "cve-1",
CVSSScore: ptr.Float64(1),
EPSSProbability: ptr.Float64(0.5),
CISAKnownExploit: ptr.Bool(true),
Published: ptr.Time(now),
}
sut := Mapper{}
t.Run("does not include EE features", func(t *testing.T) {
result := sut.GetPayload(serverURL, nil, vuln.CVE, meta)
require.Empty(t, result.CISAKnownExploit)
require.Empty(t, result.EPSSProbability)
require.Empty(t, result.CVSSScore)
require.Empty(t, result.CVEPublished)
})
t.Run("host payload only includes valid software paths", func(t *testing.T) {
hosts := []fleet.HostVulnerabilitySummary{
{
ID: 1,
Hostname: "host1",
DisplayName: "d-host1",
SoftwareInstalledPaths: []string{
"",
"/some/path",
},
},
{
ID: 2,
Hostname: "host2",
DisplayName: "d-host2",
SoftwareInstalledPaths: nil,
},
}
result := sut.GetPayload(serverURL, hosts, vuln.CVE, meta)
require.ElementsMatch(t, result.Hosts, []*hostPayloadPart{
{
ID: uint(1),
Hostname: "host1",
DisplayName: "d-host1",
URL: "http://mywebsite.com/hosts/1",
SoftwareInstalledPaths: []string{"/some/path"},
},
{
ID: uint(2),
Hostname: "host2",
DisplayName: "d-host2",
URL: "http://mywebsite.com/hosts/2",
},
},
)
})
}