mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
ffc931aad1
* Added unit tag as argument. Added description to runTests command. Changed code generator to have unit build tag in generated unit test files. * Added unit build tag to all unit test files. * added to new unit test unit build tag * Update verify-go.yml * small fix --------- Co-authored-by: Muhammadali Nazarov <Muhammadali.Nazarov@acronis.com> Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
35 lines
1.3 KiB
Go
35 lines
1.3 KiB
Go
//go:build unit
|
|
// +build unit
|
|
|
|
package protecode
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/mock"
|
|
)
|
|
|
|
func TestWriteReport(t *testing.T) {
|
|
files := mock.FilesMock{}
|
|
|
|
expected := "{\"target\":\"REPORTFILENAME\",\"mandatory\":true,\"productID\":\"4711\",\"serverUrl\":\"DUMMYURL\",\"count\":\"0\",\"cvss2GreaterOrEqualSeven\":\"4\",\"cvss3GreaterOrEqualSeven\":\"3\",\"excludedVulnerabilities\":\"2\",\"triagedVulnerabilities\":\"0\",\"historicalVulnerabilities\":\"1\",\"Vulnerabilities\":[{\"cve\":\"Vulnerability\",\"cvss\":\"2.5\",\"cvss3_score\":\"5.5\"}]}"
|
|
|
|
var parsedResult map[string]int = make(map[string]int)
|
|
parsedResult["historical_vulnerabilities"] = 1
|
|
parsedResult["excluded_vulnerabilities"] = 2
|
|
parsedResult["cvss3GreaterOrEqualSeven"] = 3
|
|
parsedResult["cvss2GreaterOrEqualSeven"] = 4
|
|
parsedResult["vulnerabilities"] = 5
|
|
|
|
err := WriteReport(ReportData{ServerURL: "DUMMYURL", FailOnSevereVulnerabilities: false, ExcludeCVEs: "", Target: "REPORTFILENAME", ProductID: fmt.Sprintf("%v", 4711), Vulnerabilities: []Vuln{{"Vulnerability", "2.5", "5.5"}}}, ".", "report.json", parsedResult, &files)
|
|
|
|
if assert.NoError(t, err) {
|
|
content, err := files.FileRead("report.json")
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, expected, string(content))
|
|
}
|
|
}
|