2014-12-15 22:20:33 +03:00
|
|
|
package logrus
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestQuoting(t *testing.T) {
|
2014-12-18 09:59:41 +03:00
|
|
|
tf := &TextFormatter{DisableColors: true}
|
2014-12-15 22:20:33 +03:00
|
|
|
|
|
|
|
checkQuoting := func(q bool, value interface{}) {
|
|
|
|
b, _ := tf.Format(WithField("test", value))
|
2014-12-18 09:59:41 +03:00
|
|
|
idx := bytes.Index(b, ([]byte)("test="))
|
|
|
|
cont := bytes.Contains(b[idx+5:], []byte{'"'})
|
2014-12-15 22:20:33 +03:00
|
|
|
if cont != q {
|
|
|
|
if q {
|
|
|
|
t.Errorf("quoting expected for: %#v", value)
|
|
|
|
} else {
|
|
|
|
t.Errorf("quoting not expected for: %#v", value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
checkQuoting(false, "abcd")
|
|
|
|
checkQuoting(false, "v1.0")
|
|
|
|
checkQuoting(true, "/foobar")
|
|
|
|
checkQuoting(true, "x y")
|
|
|
|
checkQuoting(true, "x,y")
|
|
|
|
checkQuoting(false, errors.New("invalid"))
|
|
|
|
checkQuoting(true, errors.New("invalid argument"))
|
|
|
|
}
|
2015-01-04 03:46:15 +03:00
|
|
|
|
|
|
|
func TestTextPrint(t *testing.T) {
|
|
|
|
tf := &TextFormatter{DisableColors: true}
|
|
|
|
byts, _ := tf.Format(&Entry{Message: "msg content"})
|
|
|
|
|
|
|
|
// make sure no leading or trailing spaces
|
|
|
|
if string(byts) !=
|
|
|
|
"time=\"0001-01-01T00:00:00Z\" level=panic msg=\"msg content\"\n" {
|
|
|
|
t.Errorf("not expected: %q", string(byts))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestColorPrint(t *testing.T) {
|
|
|
|
tf := &TextFormatter{ForceColors: true}
|
|
|
|
entry := WithField("testkey", "value")
|
|
|
|
entry.Message = "msg content"
|
|
|
|
byts, _ := tf.Format(entry)
|
|
|
|
|
|
|
|
// make sure no leading or trailing spaces
|
|
|
|
if string(byts) !=
|
|
|
|
"\x1b[31mPANI\x1b[0m[0000] " +
|
|
|
|
// length 44 plus one space
|
|
|
|
"msg content " +
|
|
|
|
"\x1b[31mtestkey\x1b[0m=value\n" {
|
|
|
|
t.Errorf("not expected: %q", string(byts))
|
|
|
|
}
|
|
|
|
}
|