2020-01-28 00:40:53 +02:00
|
|
|
package piperutils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io/ioutil"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2020-04-20 16:18:49 +02:00
|
|
|
"github.com/stretchr/testify/require"
|
2020-01-28 00:40:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestPersistReportAndLinks(t *testing.T) {
|
2020-04-20 16:18:49 +02:00
|
|
|
t.Run("default", func(t *testing.T) {
|
2022-07-12 15:19:12 +02:00
|
|
|
workspace := t.TempDir()
|
2020-04-20 16:18:49 +02:00
|
|
|
|
2020-09-24 08:58:53 +02:00
|
|
|
reports := []Path{{Target: "testFile1.json", Mandatory: true}, {Target: "testFile2.json"}}
|
|
|
|
links := []Path{{Target: "https://1234568.com/test", Name: "Weblink"}}
|
2020-04-20 16:18:49 +02:00
|
|
|
PersistReportsAndLinks("checkmarxExecuteScan", workspace, reports, links)
|
|
|
|
|
|
|
|
reportsJSONPath := filepath.Join(workspace, "checkmarxExecuteScan_reports.json")
|
|
|
|
assert.FileExists(t, reportsJSONPath)
|
|
|
|
|
|
|
|
linksJSONPath := filepath.Join(workspace, "checkmarxExecuteScan_links.json")
|
|
|
|
assert.FileExists(t, linksJSONPath)
|
|
|
|
|
|
|
|
var reportsLoaded []Path
|
|
|
|
var linksLoaded []Path
|
|
|
|
reportsFileData, err := ioutil.ReadFile(reportsJSONPath)
|
|
|
|
reportsDataString := string(reportsFileData)
|
|
|
|
println(reportsDataString)
|
|
|
|
assert.NoError(t, err, "No error expected but got one")
|
|
|
|
|
|
|
|
linksFileData, err := ioutil.ReadFile(linksJSONPath)
|
|
|
|
linksDataString := string(linksFileData)
|
|
|
|
println(linksDataString)
|
|
|
|
assert.NoError(t, err, "No error expected but got one")
|
|
|
|
json.Unmarshal(reportsFileData, &reportsLoaded)
|
|
|
|
json.Unmarshal(linksFileData, &linksLoaded)
|
|
|
|
|
|
|
|
assert.Equal(t, 2, len(reportsLoaded), "wrong number of reports")
|
|
|
|
assert.Equal(t, 1, len(linksLoaded), "wrong number of links")
|
|
|
|
assert.Equal(t, true, reportsLoaded[0].Mandatory, "mandatory flag on report 1 has wrong value")
|
|
|
|
assert.Equal(t, "testFile1.json", reportsLoaded[0].Target, "target value on report 1 has wrong value")
|
|
|
|
assert.Equal(t, false, reportsLoaded[1].Mandatory, "mandatory flag on report 2 has wrong value")
|
|
|
|
assert.Equal(t, "testFile2.json", reportsLoaded[1].Target, "target value on report 1 has wrong value")
|
|
|
|
assert.Equal(t, false, linksLoaded[0].Mandatory, "mandatory flag on link 1 has wrong value")
|
|
|
|
assert.Equal(t, "https://1234568.com/test", linksLoaded[0].Target, "target value on link 1 has wrong value")
|
|
|
|
assert.Equal(t, "Weblink", linksLoaded[0].Name, "name value on link 1 has wrong value")
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("empty list", func(t *testing.T) {
|
|
|
|
// init
|
2022-07-12 15:19:12 +02:00
|
|
|
workspace := t.TempDir()
|
2020-04-20 16:18:49 +02:00
|
|
|
|
|
|
|
reportsJSONPath := filepath.Join(workspace, "sonarExecuteScan_reports.json")
|
|
|
|
linksJSONPath := filepath.Join(workspace, "sonarExecuteScan_links.json")
|
|
|
|
|
|
|
|
// prepare uninitialised parameters
|
|
|
|
var reports, links []Path
|
|
|
|
require.Empty(t, reports)
|
|
|
|
require.Empty(t, links)
|
|
|
|
|
|
|
|
// test
|
|
|
|
PersistReportsAndLinks("sonarExecuteScan", workspace, reports, links)
|
|
|
|
// assert
|
|
|
|
for _, reportFile := range []string{reportsJSONPath, linksJSONPath} {
|
|
|
|
assert.FileExists(t, reportFile)
|
|
|
|
reportsFileData, err := ioutil.ReadFile(reportFile)
|
|
|
|
require.NoError(t, err, "No error expected but got one")
|
|
|
|
assert.Equal(t, "[]", string(reportsFileData))
|
|
|
|
}
|
|
|
|
})
|
2020-01-28 00:40:53 +02:00
|
|
|
}
|