|
@@ -2,38 +2,39 @@ package jsonlog
|
|
|
|
|
|
import (
|
|
|
"bytes"
|
|
|
+ "encoding/json"
|
|
|
"regexp"
|
|
|
"testing"
|
|
|
+ "time"
|
|
|
+
|
|
|
+ "github.com/stretchr/testify/assert"
|
|
|
+ "github.com/stretchr/testify/require"
|
|
|
)
|
|
|
|
|
|
func TestJSONLogsMarshalJSONBuf(t *testing.T) {
|
|
|
logs := map[*JSONLogs]string{
|
|
|
- {Log: []byte(`"A log line with \\"`)}: `^{\"log\":\"\\\"A log line with \\\\\\\\\\\"\",\"time\":}$`,
|
|
|
- {Log: []byte("A log line")}: `^{\"log\":\"A log line\",\"time\":}$`,
|
|
|
- {Log: []byte("A log line with \r")}: `^{\"log\":\"A log line with \\r\",\"time\":}$`,
|
|
|
- {Log: []byte("A log line with & < >")}: `^{\"log\":\"A log line with \\u0026 \\u003c \\u003e\",\"time\":}$`,
|
|
|
- {Log: []byte("A log line with utf8 : 🚀 ψ ω β")}: `^{\"log\":\"A log line with utf8 : 🚀 ψ ω β\",\"time\":}$`,
|
|
|
- {Stream: "stdout"}: `^{\"stream\":\"stdout\",\"time\":}$`,
|
|
|
- {Stream: "stdout", Log: []byte("A log line")}: `^{\"log\":\"A log line\",\"stream\":\"stdout\",\"time\":}$`,
|
|
|
- {Created: "time"}: `^{\"time\":time}$`,
|
|
|
- {}: `^{\"time\":}$`,
|
|
|
+ {Log: []byte(`"A log line with \\"`)}: `^{\"log\":\"\\\"A log line with \\\\\\\\\\\"\",\"time\":`,
|
|
|
+ {Log: []byte("A log line")}: `^{\"log\":\"A log line\",\"time\":`,
|
|
|
+ {Log: []byte("A log line with \r")}: `^{\"log\":\"A log line with \\r\",\"time\":`,
|
|
|
+ {Log: []byte("A log line with & < >")}: `^{\"log\":\"A log line with \\u0026 \\u003c \\u003e\",\"time\":`,
|
|
|
+ {Log: []byte("A log line with utf8 : 🚀 ψ ω β")}: `^{\"log\":\"A log line with utf8 : 🚀 ψ ω β\",\"time\":`,
|
|
|
+ {Stream: "stdout"}: `^{\"stream\":\"stdout\",\"time\":`,
|
|
|
+ {Stream: "stdout", Log: []byte("A log line")}: `^{\"log\":\"A log line\",\"stream\":\"stdout\",\"time\":`,
|
|
|
+ {Created: time.Date(2017, 9, 1, 1, 1, 1, 1, time.UTC)}: `^{\"time\":"2017-09-01T01:01:01.000000001Z"}$`,
|
|
|
+
|
|
|
+ {}: `^{\"time\":"0001-01-01T00:00:00Z"}$`,
|
|
|
// These ones are a little weird
|
|
|
- {Log: []byte("\u2028 \u2029")}: `^{\"log\":\"\\u2028 \\u2029\",\"time\":}$`,
|
|
|
- {Log: []byte{0xaF}}: `^{\"log\":\"\\ufffd\",\"time\":}$`,
|
|
|
- {Log: []byte{0x7F}}: `^{\"log\":\"\x7f\",\"time\":}$`,
|
|
|
+ {Log: []byte("\u2028 \u2029")}: `^{\"log\":\"\\u2028 \\u2029\",\"time\":`,
|
|
|
+ {Log: []byte{0xaF}}: `^{\"log\":\"\\ufffd\",\"time\":`,
|
|
|
+ {Log: []byte{0x7F}}: `^{\"log\":\"\x7f\",\"time\":`,
|
|
|
// with raw attributes
|
|
|
- {Log: []byte("A log line"), RawAttrs: []byte(`{"hello":"world","value":1234}`)}: `^{\"log\":\"A log line\",\"attrs\":{\"hello\":\"world\",\"value\":1234},\"time\":}$`,
|
|
|
+ {Log: []byte("A log line"), RawAttrs: []byte(`{"hello":"world","value":1234}`)}: `^{\"log\":\"A log line\",\"attrs\":{\"hello\":\"world\",\"value\":1234},\"time\":`,
|
|
|
}
|
|
|
for jsonLog, expression := range logs {
|
|
|
var buf bytes.Buffer
|
|
|
- if err := jsonLog.MarshalJSONBuf(&buf); err != nil {
|
|
|
- t.Fatal(err)
|
|
|
- }
|
|
|
- res := buf.String()
|
|
|
- t.Logf("Result of WriteLog: %q", res)
|
|
|
- logRe := regexp.MustCompile(expression)
|
|
|
- if !logRe.MatchString(res) {
|
|
|
- t.Fatalf("Log line not in expected format [%v]: %q", expression, res)
|
|
|
- }
|
|
|
+ err := jsonLog.MarshalJSONBuf(&buf)
|
|
|
+ require.NoError(t, err)
|
|
|
+ assert.Regexp(t, regexp.MustCompile(expression), buf.String())
|
|
|
+ assert.NoError(t, json.Unmarshal(buf.Bytes(), &map[string]interface{}{}))
|
|
|
}
|
|
|
}
|