v2ray-core/common/log/log_test.go

41 lines
1.1 KiB
Go
Raw Normal View History

package log
import (
2015-11-03 20:24:29 +01:00
"bytes"
2015-11-28 23:13:45 +01:00
"log"
"testing"
2016-04-18 18:44:10 +02:00
"github.com/v2ray/v2ray-core/common/platform"
2016-01-18 12:24:33 +01:00
"github.com/v2ray/v2ray-core/common/serial"
v2testing "github.com/v2ray/v2ray-core/testing"
"github.com/v2ray/v2ray-core/testing/assert"
)
func TestLogLevelSetting(t *testing.T) {
v2testing.Current(t)
assert.Pointer(debugLogger).Equals(noOpLoggerInstance)
SetLogLevel(DebugLevel)
assert.Pointer(debugLogger).Equals(streamLoggerInstance)
SetLogLevel(InfoLevel)
assert.Pointer(debugLogger).Equals(noOpLoggerInstance)
assert.Pointer(infoLogger).Equals(streamLoggerInstance)
}
2015-11-03 20:24:29 +01:00
func TestStreamLogger(t *testing.T) {
v2testing.Current(t)
2015-11-03 20:24:29 +01:00
buffer := bytes.NewBuffer(make([]byte, 0, 1024))
2015-12-05 21:10:14 +01:00
infoLogger = &stdOutLogWriter{
2015-11-28 23:13:45 +01:00
logger: log.New(buffer, "", 0),
2015-11-03 20:24:29 +01:00
}
2016-01-18 12:24:33 +01:00
Info("Test ", "Stream Logger", " Format")
2016-03-24 23:36:06 +08:00
assert.StringLiteral(string(buffer.Bytes())).Equals("[Info]Test Stream Logger Format" + platform.LineSeparator())
2015-11-03 20:30:14 +01:00
buffer.Reset()
2015-12-05 21:10:14 +01:00
errorLogger = infoLogger
2016-01-18 12:24:33 +01:00
Error("Test ", serial.StringLiteral("literal"), " Format")
2016-03-24 23:36:06 +08:00
assert.StringLiteral(string(buffer.Bytes())).Equals("[Error]Test literal Format" + platform.LineSeparator())
2015-11-03 20:24:29 +01:00
}