1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/pkg/toolrecord/toolrecord_test.go
Oliver Nocon a46f796bcd
chore: cleanup reporting & some incorrect file usage in tests (#3943)
* chore: cleanup reporting & some incorrect file usage in tests

* cleanup interface

* chore: remove comment

* preserve error handling

* Rename FileUtils.go to fileUtils.go

* clean up formatting

* chore: address static check findings

* fix brittle test

* chore: cleanup formatting
2022-08-09 10:57:02 +02:00

40 lines
1.1 KiB
Go

package toolrecord_test
import (
"testing"
"github.com/SAP/jenkins-library/pkg/mock"
"github.com/SAP/jenkins-library/pkg/toolrecord"
"github.com/stretchr/testify/assert"
)
func TestToolRecord(t *testing.T) {
workspace := t.TempDir()
t.Run("Check toolrecord", func(t *testing.T) {
fileMock := mock.FilesMock{}
tr := toolrecord.New(&fileMock, workspace, "dummyTool", "dummyInstance")
_ = tr.AddKeyData("Organization", "dummyOrgId", "dummyOrgName", "dummyOrgUrl")
_ = tr.AddKeyData("Project", "dummyProjectId", "dummyProjName", "dummyProjUrl")
_ = tr.AddKeyData("ScanId", "dummyScanId", "dummyScanName", "dummyScanUrl")
context := map[string]interface{}{
"demo": "data",
"anything": struct {
s1 string
i1 int
}{"goes", 42},
}
_ = tr.AddContext("DemoContext", context)
context2 := "a string"
_ = tr.AddContext("Context2", context2)
var context3 [2]string
context3[0] = "c3_1"
context3[1] = "c3_2"
_ = tr.AddContext("Context3", context3)
err := tr.Persist()
assert.Nil(t, err, "internal error %s")
assert.True(t, fileMock.HasFile(tr.GetFileName()), "toolrecord not persisted %s")
})
}