1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/pkg/telemetry/telemetry_test.go

112 lines
2.5 KiB
Go
Raw Normal View History

2020-01-29 14:17:54 +02:00
package telemetry
import (
"bytes"
"io"
"io/ioutil"
"net/http"
"os"
"testing"
piperhttp "github.com/SAP/jenkins-library/pkg/http"
"github.com/stretchr/testify/assert"
)
type clientMock struct {
httpMethod string
urlsCalled string
}
func (c *clientMock) SetOptions(opts piperhttp.ClientOptions) {}
func (c *clientMock) SendRequest(method, url string, body io.Reader, header http.Header, cookies []*http.Cookie) (*http.Response, error) {
c.httpMethod = method
c.urlsCalled = url
return &http.Response{StatusCode: 200, Body: ioutil.NopCloser(bytes.NewReader([]byte("")))}, nil
}
var mock clientMock
func TestInitialise(t *testing.T) {
t.Run("with disabled telemetry", func(t *testing.T) {
// init
client = nil
// test
Initialize(true, "testStep")
// assert
assert.Equal(t, nil, client)
assert.Equal(t, BaseData{}, baseData)
})
t.Run("", func(t *testing.T) {
// init
client = nil
// test
Initialize(false, "testStep")
// assert
assert.NotEqual(t, nil, client)
assert.Equal(t, "testStep", baseData.StepName)
})
}
func TestSend(t *testing.T) {
t.Run("with disabled telemetry", func(t *testing.T) {
// init
mock = clientMock{}
client = &mock
disabled = true
// test
Send(&CustomData{})
// assert
assert.Equal(t, 0, len(mock.httpMethod))
assert.Equal(t, 0, len(mock.urlsCalled))
})
t.Run("", func(t *testing.T) {
// init
mock = clientMock{}
client = &mock
disabled = false
baseData = BaseData{
ActionName: "testAction",
}
// test
Send(&CustomData{
Custom1: "test",
Custom1Label: "label",
})
// assert
assert.Equal(t, "GET", mock.httpMethod)
assert.Contains(t, mock.urlsCalled, baseURL)
assert.Contains(t, mock.urlsCalled, "custom26=label")
assert.Contains(t, mock.urlsCalled, "e_26=test")
assert.Contains(t, mock.urlsCalled, "action_name=testAction")
})
}
func TestEnvVars(t *testing.T) {
t.Run("without values", func(t *testing.T) {
// init
client = nil
// test
Initialize(false, "testStep")
// assert
assert.Equal(t, "n/a", baseData.PipelineURLHash)
assert.Equal(t, "n/a", baseData.BuildURLHash)
})
t.Run("", func(t *testing.T) {
// init
os.Setenv("JOB_URL", "someValue")
os.Setenv("BUILD_URL", "someValue")
client = nil
// test
Initialize(false, "testStep")
// assert
assert.Equal(t, "c1353b55ce4db511684b8a3b7b5c4b3d99ee9dec", baseData.PipelineURLHash)
assert.Equal(t, "c1353b55ce4db511684b8a3b7b5c4b3d99ee9dec", baseData.BuildURLHash)
// cleanup
os.Unsetenv("JOB_URL")
os.Unsetenv("BUILD_URL")
})
}