2023-05-03 18:02:11 +02:00
|
|
|
//go:build unit
|
|
|
|
// +build unit
|
|
|
|
|
2020-04-28 07:42:02 +02:00
|
|
|
package log
|
|
|
|
|
|
|
|
import (
|
2023-08-16 12:57:04 +02:00
|
|
|
"os"
|
2020-04-28 07:42:02 +02:00
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestFatalHookLevels(t *testing.T) {
|
|
|
|
hook := FatalHook{}
|
|
|
|
assert.Equal(t, []logrus.Level{logrus.FatalLevel}, hook.Levels())
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFatalHookFire(t *testing.T) {
|
2022-07-12 15:19:12 +02:00
|
|
|
workspace := t.TempDir()
|
2020-04-28 07:42:02 +02:00
|
|
|
|
|
|
|
t.Run("with step name", func(t *testing.T) {
|
|
|
|
hook := FatalHook{
|
|
|
|
Path: workspace,
|
|
|
|
CorrelationID: "https://build.url",
|
|
|
|
}
|
|
|
|
entry := logrus.Entry{
|
|
|
|
Data: logrus.Fields{
|
|
|
|
"category": "testCategory",
|
|
|
|
"stepName": "testStep",
|
|
|
|
},
|
|
|
|
Message: "the error message",
|
|
|
|
}
|
|
|
|
|
|
|
|
err := hook.Fire(&entry)
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
2023-08-16 12:57:04 +02:00
|
|
|
fileContent, err := os.ReadFile(filepath.Join(workspace, "testStep_errorDetails.json"))
|
2020-04-28 07:42:02 +02:00
|
|
|
assert.NoError(t, err)
|
2020-06-24 10:04:05 +02:00
|
|
|
assert.NotContains(t, string(fileContent), `"category":"testCategory"`)
|
2020-04-28 07:42:02 +02:00
|
|
|
assert.Contains(t, string(fileContent), `"correlationId":"https://build.url"`)
|
|
|
|
assert.Contains(t, string(fileContent), `"message":"the error message"`)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("no step name", func(t *testing.T) {
|
|
|
|
hook := FatalHook{
|
|
|
|
Path: workspace,
|
|
|
|
CorrelationID: "https://build.url",
|
|
|
|
}
|
|
|
|
entry := logrus.Entry{
|
|
|
|
Data: logrus.Fields{
|
|
|
|
"category": "testCategory",
|
|
|
|
},
|
|
|
|
Message: "the error message",
|
|
|
|
}
|
|
|
|
|
|
|
|
err := hook.Fire(&entry)
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
2023-08-16 12:57:04 +02:00
|
|
|
fileContent, err := os.ReadFile(filepath.Join(workspace, "errorDetails.json"))
|
2020-04-28 07:42:02 +02:00
|
|
|
assert.NoError(t, err)
|
2020-06-24 10:04:05 +02:00
|
|
|
assert.NotContains(t, string(fileContent), `"category":"testCategory"`)
|
2020-04-28 07:42:02 +02:00
|
|
|
assert.Contains(t, string(fileContent), `"correlationId":"https://build.url"`)
|
|
|
|
assert.Contains(t, string(fileContent), `"message":"the error message"`)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("file exists", func(t *testing.T) {
|
|
|
|
hook := FatalHook{}
|
|
|
|
entry := logrus.Entry{
|
|
|
|
Message: "the new error message",
|
|
|
|
}
|
|
|
|
|
|
|
|
err := hook.Fire(&entry)
|
|
|
|
|
|
|
|
assert.NoError(t, err)
|
2023-08-16 12:57:04 +02:00
|
|
|
fileContent, err := os.ReadFile(filepath.Join(workspace, "errorDetails.json"))
|
2020-04-28 07:42:02 +02:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
assert.Contains(t, string(fileContent), `"message":"the error message"`)
|
|
|
|
})
|
|
|
|
}
|