mirror of https://github.com/milvus-io/milvus.git
parent
79a0a5482f
commit
5e0d724738
|
@ -22,6 +22,7 @@ import (
|
|||
|
||||
"go.uber.org/zap"
|
||||
"go.uber.org/zap/zapcore"
|
||||
"go.uber.org/zap/zaptest"
|
||||
lumberjack "gopkg.in/natefinch/lumberjack.v2"
|
||||
)
|
||||
|
||||
|
@ -55,6 +56,17 @@ func InitLogger(cfg *Config, opts ...zap.Option) (*zap.Logger, *ZapProperties, e
|
|||
return InitLoggerWithWriteSyncer(cfg, output, opts...)
|
||||
}
|
||||
|
||||
func InitTestLogger(t zaptest.TestingT, cfg *Config, opts ...zap.Option) (*zap.Logger, *ZapProperties, error) {
|
||||
writer := newTestingWriter(t)
|
||||
zapOptions := []zap.Option{
|
||||
// Send zap errors to the same writer and mark the test as failed if
|
||||
// that happens.
|
||||
zap.ErrorOutput(writer.WithMarkFailed(true)),
|
||||
}
|
||||
opts = append(zapOptions, opts...)
|
||||
return InitLoggerWithWriteSyncer(cfg, writer, opts...)
|
||||
}
|
||||
|
||||
// InitLoggerWithWriteSyncer initializes a zap logger with specified write syncer.
|
||||
func InitLoggerWithWriteSyncer(cfg *Config, output zapcore.WriteSyncer, opts ...zap.Option) (*zap.Logger, *ZapProperties, error) {
|
||||
level := zap.NewAtomicLevel()
|
||||
|
|
|
@ -0,0 +1,61 @@
|
|||
// Copyright 2019 PingCAP, Inc.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
package log
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
"bytes"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"go.uber.org/zap"
|
||||
"go.uber.org/zap/zapcore"
|
||||
)
|
||||
|
||||
func TestExport(t *testing.T) {
|
||||
ts := newTestLogSpy(t)
|
||||
conf := &Config{Level: "debug", DisableTimestamp: true}
|
||||
logger, _, _ := InitTestLogger(ts, conf)
|
||||
ReplaceGlobals(logger, nil)
|
||||
|
||||
Info("Testing")
|
||||
Debug("Testing")
|
||||
Warn("Testing")
|
||||
Error("Testing")
|
||||
ts.assertMessagesContains("log_test.go:")
|
||||
|
||||
ts = newTestLogSpy(t)
|
||||
logger, _, _ = InitTestLogger(ts, conf)
|
||||
ReplaceGlobals(logger, nil)
|
||||
|
||||
newLogger := With(zap.String("name", "tester"), zap.Int64("age", 42))
|
||||
newLogger.Info("hello")
|
||||
newLogger.Debug("world")
|
||||
ts.assertMessagesContains(`name=tester`)
|
||||
ts.assertMessagesContains(`age=42`)
|
||||
}
|
||||
|
||||
func TestZapTextEncoder(t *testing.T) {
|
||||
conf := &Config{Level: "debug", File: FileLogConfig{}, DisableTimestamp: true}
|
||||
|
||||
var buffer bytes.Buffer
|
||||
writer := bufio.NewWriter(&buffer)
|
||||
encoder := NewTextEncoder(conf)
|
||||
logger := zap.New(zapcore.NewCore(encoder, zapcore.AddSync(writer), zapcore.InfoLevel)).Sugar()
|
||||
|
||||
logger.Info("this is a message from zap")
|
||||
_ = writer.Flush()
|
||||
assert.Equal(t, `[INFO] ["this is a message from zap"]`+"\n", buffer.String())
|
||||
}
|
|
@ -0,0 +1,274 @@
|
|||
// Copyright 2019 PingCAP, Inc.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
package log
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"math"
|
||||
"net"
|
||||
"os"
|
||||
"strings"
|
||||
"testing"
|
||||
"time"
|
||||
"unsafe"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"go.uber.org/zap"
|
||||
"go.uber.org/zap/zapcore"
|
||||
)
|
||||
|
||||
type username string
|
||||
|
||||
func (n username) MarshalLogObject(enc zapcore.ObjectEncoder) error {
|
||||
enc.AddString("username", string(n))
|
||||
return nil
|
||||
}
|
||||
|
||||
func TestLog(t *testing.T) {
|
||||
ts := newTestLogSpy(t)
|
||||
conf := &Config{Level: "debug", DisableTimestamp: true}
|
||||
logger, _, _ := InitTestLogger(ts, conf)
|
||||
sugar := logger.Sugar()
|
||||
defer func() {
|
||||
_ = sugar.Sync()
|
||||
}()
|
||||
|
||||
sugar.Infow("failed to fetch URL",
|
||||
"url", "http://example.com",
|
||||
"attempt", 3,
|
||||
"backoff", time.Second,
|
||||
)
|
||||
sugar.Infof(`failed to "fetch" [URL]: %s`, "http://example.com")
|
||||
sugar.Debugw("Slow query",
|
||||
"sql", `SELECT * FROM TABLE
|
||||
WHERE ID="abc"`,
|
||||
"duration", 1300*time.Millisecond,
|
||||
"process keys", 1500,
|
||||
)
|
||||
sugar.Info("Welcome")
|
||||
sugar.Info("欢迎")
|
||||
sugar.Warnw("Type",
|
||||
"Counter", math.NaN(),
|
||||
"Score", math.Inf(1),
|
||||
)
|
||||
|
||||
logger.With(zap.String("connID", "1"), zap.String("traceID", "dse1121")).Info("new connection")
|
||||
logger.Info("Testing typs",
|
||||
zap.String("filed1", "noquote"),
|
||||
zap.String("filed2", "in quote"),
|
||||
zap.Strings("urls", []string{"http://mock1.com:2347", "http://mock2.com:2432"}),
|
||||
zap.Strings("urls-peer", []string{"t1", "t2 fine"}),
|
||||
zap.Uint64s("store ids", []uint64{1, 4, 5}),
|
||||
zap.Object("object", username("user1")),
|
||||
zap.Object("object2", username("user 2")),
|
||||
zap.Binary("binary", []byte("ab123")),
|
||||
zap.Bool("is processed", true),
|
||||
zap.ByteString("bytestring", []byte("noquote")),
|
||||
zap.ByteString("bytestring", []byte("in quote")),
|
||||
zap.Int8("int8", int8(1)),
|
||||
zap.Uintptr("ptr", 0xa),
|
||||
zap.Reflect("reflect", []int{1, 2}),
|
||||
zap.Stringer("stringer", net.ParseIP("127.0.0.1")),
|
||||
zap.Bools("array bools", []bool{true}),
|
||||
zap.Bools("array bools", []bool{true, true, false}),
|
||||
zap.Complex128("complex128", 1+2i),
|
||||
zap.Strings("test", []string{
|
||||
"💖",
|
||||
"<22>",
|
||||
"☺☻☹",
|
||||
"日a本b語ç日ð本Ê語þ日¥本¼語i日©",
|
||||
"日a本b語ç日ð本Ê語þ日¥本¼語i日©日a本b語ç日ð本Ê語þ日¥本¼語i日©日a本b語ç日ð本Ê語þ日¥本¼語i日©",
|
||||
"\x80\x80\x80\x80",
|
||||
"<car><mirror>XML</mirror></car>",
|
||||
}),
|
||||
zap.Duration("duration", 10*time.Second),
|
||||
)
|
||||
ts.assertMessages(
|
||||
`[INFO] [zap_log_test.go:50] ["failed to fetch URL"] [url=http://example.com] [attempt=3] [backoff=1s]`,
|
||||
`[INFO] [zap_log_test.go:55] ["failed to \"fetch\" [URL]: http://example.com"]`,
|
||||
`[DEBUG] [zap_log_test.go:56] ["Slow query"] [sql="SELECT * FROM TABLE\n\tWHERE ID=\"abc\""] [duration=1.3s] ["process keys"=1500]`,
|
||||
`[INFO] [zap_log_test.go:62] [Welcome]`,
|
||||
`[INFO] [zap_log_test.go:63] [欢迎]`,
|
||||
`[WARN] [zap_log_test.go:64] [Type] [Counter=NaN] [Score=+Inf]`,
|
||||
`[INFO] [zap_log_test.go:69] ["new connection"] [connID=1] [traceID=dse1121]`,
|
||||
`[INFO] [zap_log_test.go:70] ["Testing typs"] [filed1=noquote] `+
|
||||
`[filed2="in quote"] [urls="[http://mock1.com:2347,http://mock2.com:2432]"] `+
|
||||
`[urls-peer="[t1,\"t2 fine\"]"] ["store ids"="[1,4,5]"] [object="{username=user1}"] `+
|
||||
`[object2="{username=\"user 2\"}"] [binary="YWIxMjM="] ["is processed"=true] `+
|
||||
`[bytestring=noquote] [bytestring="in quote"] [int8=1] [ptr=10] [reflect="[1,2]"] [stringer=127.0.0.1] `+
|
||||
`["array bools"="[true]"] ["array bools"="[true,true,false]"] [complex128=1+2i] `+
|
||||
`[test="[💖,<2C>,☺☻☹,日a本b語ç日ð本Ê語þ日¥本¼語i日©,日a本b語ç日ð本Ê語þ日¥本¼語i日©日a本b語ç日ð本Ê語þ日¥本¼語i日©日a本b語ç日ð本Ê語þ日¥本¼語i日©,\\ufffd\\ufffd\\ufffd\\ufffd,`+
|
||||
`<car><mirror>XML</mirror></car>]"] [duration=10s]`,
|
||||
)
|
||||
|
||||
assert.PanicsWithValue(t, "unknown", func() { sugar.Panic("unknown") })
|
||||
}
|
||||
|
||||
func TestTimeEncoder(t *testing.T) {
|
||||
sec := int64(1547192741)
|
||||
nsec := int64(165279177)
|
||||
as, err := time.LoadLocation("Asia/Shanghai")
|
||||
assert.Nil(t, err)
|
||||
|
||||
tt := time.Unix(sec, nsec).In(as)
|
||||
conf := &Config{Level: "debug", File: FileLogConfig{}, DisableTimestamp: true}
|
||||
enc := NewTextEncoder(conf).(*textEncoder)
|
||||
DefaultTimeEncoder(tt, enc)
|
||||
assert.Equal(t, "2019/01/11 15:45:41.165 +08:00", enc.buf.String())
|
||||
|
||||
enc.buf.Reset()
|
||||
utc, err := time.LoadLocation("UTC")
|
||||
assert.Nil(t, err)
|
||||
|
||||
utcTime := tt.In(utc)
|
||||
DefaultTimeEncoder(utcTime, enc)
|
||||
assert.Equal(t, "2019/01/11 07:45:41.165 +00:00", enc.buf.String())
|
||||
}
|
||||
|
||||
// See [logger-header]https://github.com/tikv/rfcs/blob/master/text/2018-12-19-unified-log-format.md#log-header-section.
|
||||
func TestZapCaller(t *testing.T) {
|
||||
data := []zapcore.EntryCaller{
|
||||
{Defined: true, PC: uintptr(unsafe.Pointer(nil)), File: "server.go", Line: 132},
|
||||
{Defined: true, PC: uintptr(unsafe.Pointer(nil)), File: "server/coordinator.go", Line: 20},
|
||||
{Defined: true, PC: uintptr(unsafe.Pointer(nil)), File: `z\test_coordinator1.go`, Line: 20},
|
||||
{Defined: false, PC: uintptr(unsafe.Pointer(nil)), File: "", Line: 0},
|
||||
}
|
||||
expect := []string{
|
||||
"server.go:132",
|
||||
"coordinator.go:20",
|
||||
"ztest_coordinator1.go:20",
|
||||
"<unknown>",
|
||||
}
|
||||
conf := &Config{Level: "deug", File: FileLogConfig{}, DisableTimestamp: true}
|
||||
enc := NewTextEncoder(conf).(*textEncoder)
|
||||
|
||||
for i, d := range data {
|
||||
ShortCallerEncoder(d, enc)
|
||||
assert.Equal(t, expect[i], enc.buf.String())
|
||||
enc.buf.Reset()
|
||||
}
|
||||
}
|
||||
|
||||
func TestRotateLog(t *testing.T) {
|
||||
tempDir, _ := ioutil.TempDir("/tmp", "pd-test-log")
|
||||
conf := &Config{
|
||||
Level: "info",
|
||||
File: FileLogConfig{
|
||||
Filename: tempDir + "/test.log",
|
||||
MaxSize: 1,
|
||||
},
|
||||
}
|
||||
logger, _, err := InitLogger(conf)
|
||||
assert.Nil(t, err)
|
||||
|
||||
var data []byte
|
||||
for i := 1; i <= 1*1024*1024; i++ {
|
||||
if i%1000 != 0 {
|
||||
data = append(data, 'd')
|
||||
continue
|
||||
}
|
||||
logger.Info(string(data))
|
||||
data = data[:0]
|
||||
}
|
||||
files, _ := ioutil.ReadDir(tempDir)
|
||||
assert.Len(t, files, 2)
|
||||
_ = os.RemoveAll(tempDir)
|
||||
}
|
||||
|
||||
func TestWithOptions(t *testing.T) {
|
||||
ts := newTestLogSpy(t)
|
||||
conf := &Config{
|
||||
Level: "debug",
|
||||
DisableTimestamp: true,
|
||||
DisableErrorVerbose: true,
|
||||
}
|
||||
logger, _, _ := InitTestLogger(ts, conf, zap.AddStacktrace(zapcore.FatalLevel))
|
||||
logger.Error("Testing", zap.Error(errors.New("log-with-option")))
|
||||
ts.assertMessagesNotContains("errorVerbose")
|
||||
ts.assertMessagesNotContains("stack")
|
||||
}
|
||||
|
||||
func TestLogJSON(t *testing.T) {
|
||||
ts := newTestLogSpy(t)
|
||||
conf := &Config{Level: "debug", DisableTimestamp: true, Format: "json"}
|
||||
logger, _, _ := InitTestLogger(ts, conf, zap.AddStacktrace(zapcore.FatalLevel))
|
||||
sugar := logger.Sugar()
|
||||
defer sugar.Sync()
|
||||
|
||||
sugar.Infow("failed to fetch URL",
|
||||
"url", "http://example.com",
|
||||
"attempt", 3,
|
||||
"backoff", time.Second,
|
||||
)
|
||||
logger.With(zap.String("connID", "1"), zap.String("traceID", "dse1121")).Info("new connection")
|
||||
ts.assertMessages("{\"level\":\"INFO\",\"caller\":\"zap_log_test.go:212\",\"message\":\"failed to fetch URL\",\"url\":\"http://example.com\",\"attempt\":3,\"backoff\":\"1s\"}",
|
||||
"{\"level\":\"INFO\",\"caller\":\"zap_log_test.go:217\",\"message\":\"new connection\",\"connID\":\"1\",\"traceID\":\"dse1121\"}")
|
||||
}
|
||||
|
||||
// testLogSpy is a testing.TB that captures logged messages.
|
||||
type testLogSpy struct {
|
||||
testing.TB
|
||||
|
||||
failed bool
|
||||
Messages []string
|
||||
}
|
||||
|
||||
func newTestLogSpy(t testing.TB) *testLogSpy {
|
||||
return &testLogSpy{TB: t}
|
||||
}
|
||||
|
||||
func (t *testLogSpy) Fail() {
|
||||
t.failed = true
|
||||
}
|
||||
|
||||
func (t *testLogSpy) Failed() bool {
|
||||
return t.failed
|
||||
}
|
||||
|
||||
func (t *testLogSpy) FailNow() {
|
||||
t.Fail()
|
||||
t.TB.FailNow()
|
||||
}
|
||||
|
||||
func (t *testLogSpy) Logf(format string, args ...interface{}) {
|
||||
// Log messages are in the format,
|
||||
//
|
||||
// 2017-10-27T13:03:01.000-0700 DEBUG your message here {data here}
|
||||
//
|
||||
// We strip the first part of these messages because we can't really test
|
||||
// for the timestamp from these tests.
|
||||
m := fmt.Sprintf(format, args...)
|
||||
m = m[strings.IndexByte(m, '\t')+1:]
|
||||
t.Messages = append(t.Messages, m)
|
||||
t.TB.Log(m)
|
||||
}
|
||||
|
||||
func (t *testLogSpy) assertMessages(msgs ...string) {
|
||||
assert.Equal(t.TB, msgs, t.Messages)
|
||||
}
|
||||
|
||||
func (t *testLogSpy) assertMessagesContains(msg string) {
|
||||
for _, actualMsg := range t.Messages {
|
||||
assert.Contains(t.TB, actualMsg, msg)
|
||||
}
|
||||
}
|
||||
|
||||
func (t *testLogSpy) assertMessagesNotContains(msg string) {
|
||||
for _, actualMsg := range t.Messages {
|
||||
assert.NotContains(t.TB, actualMsg, msg)
|
||||
}
|
||||
}
|
|
@ -0,0 +1,80 @@
|
|||
// Copyright 2021 PingCAP, Inc.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// Copyright (c) 2017 Uber Technologies, Inc.
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights
|
||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
// copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
// THE SOFTWARE.
|
||||
|
||||
// NOTE: The code in this file is based on code from go.uber.org/zap, licensed under the MIT License
|
||||
//
|
||||
// https://github.com/uber-go/zap/blob/0c427222737cbbbdc53ebdf852c511f7aca0818b/zaptest/logger.go
|
||||
|
||||
package log
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
|
||||
"go.uber.org/zap/zaptest"
|
||||
)
|
||||
|
||||
type testingWriter struct {
|
||||
t zaptest.TestingT
|
||||
markFailed bool
|
||||
}
|
||||
|
||||
func newTestingWriter(t zaptest.TestingT) testingWriter {
|
||||
return testingWriter{t: t}
|
||||
}
|
||||
|
||||
// WithMarkFailed returns a copy of this testingWriter with markFailed set to
|
||||
// the provided value.
|
||||
func (w testingWriter) WithMarkFailed(v bool) testingWriter {
|
||||
w.markFailed = v
|
||||
return w
|
||||
}
|
||||
|
||||
func (w testingWriter) Write(p []byte) (n int, err error) {
|
||||
n = len(p)
|
||||
|
||||
// Strip trailing newline because t.Log always adds one.
|
||||
p = bytes.TrimRight(p, "\n")
|
||||
|
||||
// Note: t.Log is safe for concurrent use.
|
||||
w.t.Logf("%s", p)
|
||||
if w.markFailed {
|
||||
w.t.Fail()
|
||||
}
|
||||
|
||||
return n, nil
|
||||
}
|
||||
|
||||
func (w testingWriter) Sync() error {
|
||||
return nil
|
||||
}
|
|
@ -650,7 +650,8 @@ func (enc *textEncoder) encodeError(f zapcore.Field) {
|
|||
if enc.disableErrorVerbose {
|
||||
return
|
||||
}
|
||||
if e, isFormatter := err.(fmt.Formatter); isFormatter {
|
||||
e, isFormatter := err.(fmt.Formatter)
|
||||
if isFormatter {
|
||||
verbose := fmt.Sprintf("%+v", e)
|
||||
if verbose != basic {
|
||||
// This is a rich error type, like those produced by
|
||||
|
|
Loading…
Reference in New Issue