1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-07 05:44:28 -04:00
v2fly/common/log/log_test.go

34 lines
576 B
Go
Raw Normal View History

2017-12-10 16:48:28 -05:00
package log_test
import (
"testing"
2018-11-15 05:17:20 -05:00
"github.com/google/go-cmp/cmp"
"github.com/v2fly/v2ray-core/v5/common/log"
"github.com/v2fly/v2ray-core/v5/common/net"
2017-12-10 16:48:28 -05:00
)
type testLogger struct {
value string
}
func (l *testLogger) Handle(msg log.Message) {
l.value = msg.String()
}
func TestLogRecord(t *testing.T) {
var logger testLogger
log.RegisterHandler(&logger)
ip := "8.8.8.8"
log.Record(&log.GeneralMessage{
Severity: log.Severity_Error,
Content: net.ParseAddress(ip),
})
2018-11-15 05:17:20 -05:00
if diff := cmp.Diff("[Error] "+ip, logger.value); diff != "" {
t.Error(diff)
2018-07-13 08:36:09 -04:00
}
2017-12-10 16:48:28 -05:00
}