1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-22 21:24:20 -04:00
v2fly/common/log/log_test.go

41 lines
1.1 KiB
Go
Raw Normal View History

package log
import (
2015-11-03 14:24:29 -05:00
"bytes"
2015-11-28 17:13:45 -05:00
"log"
"testing"
2016-04-18 12:44:10 -04:00
"github.com/v2ray/v2ray-core/common/platform"
2016-01-18 06:24:33 -05: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 14:24:29 -05:00
func TestStreamLogger(t *testing.T) {
v2testing.Current(t)
2015-11-03 14:24:29 -05:00
buffer := bytes.NewBuffer(make([]byte, 0, 1024))
2015-12-05 15:10:14 -05:00
infoLogger = &stdOutLogWriter{
2015-11-28 17:13:45 -05:00
logger: log.New(buffer, "", 0),
2015-11-03 14:24:29 -05:00
}
2016-01-18 06:24:33 -05:00
Info("Test ", "Stream Logger", " Format")
2016-03-24 11:36:06 -04:00
assert.StringLiteral(string(buffer.Bytes())).Equals("[Info]Test Stream Logger Format" + platform.LineSeparator())
2015-11-03 14:30:14 -05:00
buffer.Reset()
2015-12-05 15:10:14 -05:00
errorLogger = infoLogger
2016-01-18 06:24:33 -05:00
Error("Test ", serial.StringLiteral("literal"), " Format")
2016-03-24 11:36:06 -04:00
assert.StringLiteral(string(buffer.Bytes())).Equals("[Error]Test literal Format" + platform.LineSeparator())
2015-11-03 14:24:29 -05:00
}