mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
internal/testlog: simplify
This commit is contained in:
parent
e38b9f1830
commit
79729a9800
1 changed files with 8 additions and 109 deletions
|
|
@ -18,125 +18,24 @@
|
||||||
package testlog
|
package testlog
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"sync"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/ethereum/go-ethereum/log"
|
"github.com/ethereum/go-ethereum/log"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Handler returns a log handler which logs to the unit test log of t.
|
type relay struct {
|
||||||
func Handler(t *testing.T, level log.Lvl) log.Handler {
|
t *testing.T
|
||||||
return log.LvlFilterHandler(level, &handler{t, log.TerminalFormat(false)})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type handler struct {
|
func (r *relay) Write(p []byte) (n int, err error) {
|
||||||
t *testing.T
|
r.t.Log(strings.TrimSpace(string(p)))
|
||||||
fmt log.Format
|
return len(p), nil
|
||||||
}
|
|
||||||
|
|
||||||
func (h *handler) Log(r *log.Record) error {
|
|
||||||
h.t.Logf("%s", h.fmt.Format(r))
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// logger implements log.Logger such that all output goes to the unit test log via
|
|
||||||
// t.Logf(). All methods in between logger.Trace, logger.Debug, etc. are marked as test
|
|
||||||
// helpers, so the file and line number in unit test output correspond to the call site
|
|
||||||
// which emitted the log message.
|
|
||||||
type logger struct {
|
|
||||||
t *testing.T
|
|
||||||
l log.Logger
|
|
||||||
mu *sync.Mutex
|
|
||||||
h *bufHandler
|
|
||||||
}
|
|
||||||
|
|
||||||
type bufHandler struct {
|
|
||||||
buf []*log.Record
|
|
||||||
fmt log.Format
|
|
||||||
}
|
|
||||||
|
|
||||||
func (h *bufHandler) Log(r *log.Record) error {
|
|
||||||
h.buf = append(h.buf, r)
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Logger returns a logger which logs to the unit test log of t.
|
// Logger returns a logger which logs to the unit test log of t.
|
||||||
func Logger(t *testing.T, level log.Lvl) log.Logger {
|
func Logger(t *testing.T, level log.Lvl) log.Logger {
|
||||||
l := &logger{
|
l := log.New()
|
||||||
t: t,
|
l.SetHandler(log.LvlFilterHandler(log.LvlInfo, log.StreamHandler(&relay{t}, log.TerminalFormat(false))))
|
||||||
l: log.New(),
|
|
||||||
mu: new(sync.Mutex),
|
|
||||||
h: &bufHandler{fmt: log.TerminalFormat(false)},
|
|
||||||
}
|
|
||||||
l.l.SetHandler(log.LvlFilterHandler(level, l.h))
|
|
||||||
return l
|
return l
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *logger) Trace(msg string, ctx ...interface{}) {
|
|
||||||
l.t.Helper()
|
|
||||||
l.mu.Lock()
|
|
||||||
defer l.mu.Unlock()
|
|
||||||
l.l.Trace(msg, ctx...)
|
|
||||||
l.flush()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l *logger) Debug(msg string, ctx ...interface{}) {
|
|
||||||
l.t.Helper()
|
|
||||||
l.mu.Lock()
|
|
||||||
defer l.mu.Unlock()
|
|
||||||
l.l.Debug(msg, ctx...)
|
|
||||||
l.flush()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l *logger) Info(msg string, ctx ...interface{}) {
|
|
||||||
l.t.Helper()
|
|
||||||
l.mu.Lock()
|
|
||||||
defer l.mu.Unlock()
|
|
||||||
l.l.Info(msg, ctx...)
|
|
||||||
l.flush()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l *logger) Warn(msg string, ctx ...interface{}) {
|
|
||||||
l.t.Helper()
|
|
||||||
l.mu.Lock()
|
|
||||||
defer l.mu.Unlock()
|
|
||||||
l.l.Warn(msg, ctx...)
|
|
||||||
l.flush()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l *logger) Error(msg string, ctx ...interface{}) {
|
|
||||||
l.t.Helper()
|
|
||||||
l.mu.Lock()
|
|
||||||
defer l.mu.Unlock()
|
|
||||||
l.l.Error(msg, ctx...)
|
|
||||||
l.flush()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l *logger) Crit(msg string, ctx ...interface{}) {
|
|
||||||
l.t.Helper()
|
|
||||||
l.mu.Lock()
|
|
||||||
defer l.mu.Unlock()
|
|
||||||
l.l.Crit(msg, ctx...)
|
|
||||||
l.flush()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l *logger) New(ctx ...interface{}) log.Logger {
|
|
||||||
return &logger{l.t, l.l.New(ctx...), l.mu, l.h}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l *logger) GetHandler() log.Handler {
|
|
||||||
return l.l.GetHandler()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (l *logger) SetHandler(h log.Handler) {
|
|
||||||
l.l.SetHandler(h)
|
|
||||||
}
|
|
||||||
|
|
||||||
// flush writes all buffered messages and clears the buffer.
|
|
||||||
func (l *logger) flush() {
|
|
||||||
l.t.Helper()
|
|
||||||
for _, r := range l.h.buf {
|
|
||||||
l.t.Logf("%s", l.h.fmt.Format(r))
|
|
||||||
}
|
|
||||||
l.h.buf = nil
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue