mirror of
https://github.com/retailcrm/mg-transport-core.git
synced 2024-11-22 13:16:04 +03:00
make logger locking optional, fix for logger tests
This commit is contained in:
parent
ea81193031
commit
fc90dd21ce
@ -147,15 +147,8 @@ func (e *Engine) JobManager() *JobManager {
|
|||||||
return e.jobManager
|
return e.jobManager
|
||||||
}
|
}
|
||||||
|
|
||||||
// Logger returns current logger in goroutine-safe way
|
// Logger returns current logger
|
||||||
func (e *Engine) Logger() LoggerInterface {
|
func (e *Engine) Logger() LoggerInterface {
|
||||||
e.mutex.RLock()
|
|
||||||
defer e.mutex.RUnlock()
|
|
||||||
return e.logger
|
|
||||||
}
|
|
||||||
|
|
||||||
// UnsafeLogger returns current logger in goroutine-unsafe way. Using this method you can cause race condition.
|
|
||||||
func (e *Engine) UnsafeLogger() LoggerInterface {
|
|
||||||
return e.logger
|
return e.logger
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -187,17 +187,6 @@ func (e *EngineTest) Test_WithFilesystemSessions() {
|
|||||||
assert.NotNil(e.T(), e.engine.Sessions)
|
assert.NotNil(e.T(), e.engine.Sessions)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *EngineTest) Test_UnsafeLogger() {
|
|
||||||
origLogger := e.engine.logger
|
|
||||||
defer func() {
|
|
||||||
e.engine.logger = origLogger
|
|
||||||
}()
|
|
||||||
e.engine.logger = nil
|
|
||||||
assert.Nil(e.T(), e.engine.UnsafeLogger())
|
|
||||||
e.engine.logger = &Logger{}
|
|
||||||
assert.IsType(e.T(), &Logger{}, e.engine.UnsafeLogger())
|
|
||||||
}
|
|
||||||
|
|
||||||
func (e *EngineTest) Test_SetLogger() {
|
func (e *EngineTest) Test_SetLogger() {
|
||||||
origLogger := e.engine.logger
|
origLogger := e.engine.logger
|
||||||
defer func() {
|
defer func() {
|
||||||
|
@ -28,10 +28,10 @@ type LoggerInterface interface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Logger component. Uses github.com/op/go-logging under the hood.
|
// Logger component. Uses github.com/op/go-logging under the hood.
|
||||||
// This logger utilises sync.RWMutex functionality in order to avoid race conditions (in some cases it is useful).
|
// This logger can prevent any write operations (disabled by default, use .Exclusive() method to enable)
|
||||||
type Logger struct {
|
type Logger struct {
|
||||||
logger *logging.Logger
|
logger *logging.Logger
|
||||||
mutex sync.RWMutex
|
mutex *sync.RWMutex
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewLogger will create new goroutine-safe logger with specified formatter.
|
// NewLogger will create new goroutine-safe logger with specified formatter.
|
||||||
@ -62,114 +62,137 @@ func DefaultLogFormatter() logging.Formatter {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Exclusive makes logger goroutine-safe
|
||||||
|
func (l *Logger) Exclusive() *Logger {
|
||||||
|
if l.mutex == nil {
|
||||||
|
l.mutex = &sync.RWMutex{}
|
||||||
|
}
|
||||||
|
|
||||||
|
return l
|
||||||
|
}
|
||||||
|
|
||||||
|
// lock locks logger
|
||||||
|
func (l *Logger) lock() {
|
||||||
|
if l.mutex != nil {
|
||||||
|
l.mutex.Lock()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// unlock unlocks logger
|
||||||
|
func (l *Logger) unlock() {
|
||||||
|
if l.mutex != nil {
|
||||||
|
l.mutex.Unlock()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Fatal is equivalent to l.Critical(fmt.Sprint()) followed by a call to os.Exit(1).
|
// Fatal is equivalent to l.Critical(fmt.Sprint()) followed by a call to os.Exit(1).
|
||||||
func (l *Logger) Fatal(args ...interface{}) {
|
func (l *Logger) Fatal(args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Fatal(args...)
|
l.logger.Fatal(args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fatalf is equivalent to l.Critical followed by a call to os.Exit(1).
|
// Fatalf is equivalent to l.Critical followed by a call to os.Exit(1).
|
||||||
func (l *Logger) Fatalf(format string, args ...interface{}) {
|
func (l *Logger) Fatalf(format string, args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Fatalf(format, args...)
|
l.logger.Fatalf(format, args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Panic is equivalent to l.Critical(fmt.Sprint()) followed by a call to panic().
|
// Panic is equivalent to l.Critical(fmt.Sprint()) followed by a call to panic().
|
||||||
func (l *Logger) Panic(args ...interface{}) {
|
func (l *Logger) Panic(args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Panic(args...)
|
l.logger.Panic(args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Panicf is equivalent to l.Critical followed by a call to panic().
|
// Panicf is equivalent to l.Critical followed by a call to panic().
|
||||||
func (l *Logger) Panicf(format string, args ...interface{}) {
|
func (l *Logger) Panicf(format string, args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Panicf(format, args...)
|
l.logger.Panicf(format, args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Critical logs a message using CRITICAL as log level.
|
// Critical logs a message using CRITICAL as log level.
|
||||||
func (l *Logger) Critical(args ...interface{}) {
|
func (l *Logger) Critical(args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Critical(args...)
|
l.logger.Critical(args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Criticalf logs a message using CRITICAL as log level.
|
// Criticalf logs a message using CRITICAL as log level.
|
||||||
func (l *Logger) Criticalf(format string, args ...interface{}) {
|
func (l *Logger) Criticalf(format string, args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Criticalf(format, args...)
|
l.logger.Criticalf(format, args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Error logs a message using ERROR as log level.
|
// Error logs a message using ERROR as log level.
|
||||||
func (l *Logger) Error(args ...interface{}) {
|
func (l *Logger) Error(args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Error(args...)
|
l.logger.Error(args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Errorf logs a message using ERROR as log level.
|
// Errorf logs a message using ERROR as log level.
|
||||||
func (l *Logger) Errorf(format string, args ...interface{}) {
|
func (l *Logger) Errorf(format string, args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Errorf(format, args...)
|
l.logger.Errorf(format, args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Warning logs a message using WARNING as log level.
|
// Warning logs a message using WARNING as log level.
|
||||||
func (l *Logger) Warning(args ...interface{}) {
|
func (l *Logger) Warning(args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Warning(args...)
|
l.logger.Warning(args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Warningf logs a message using WARNING as log level.
|
// Warningf logs a message using WARNING as log level.
|
||||||
func (l *Logger) Warningf(format string, args ...interface{}) {
|
func (l *Logger) Warningf(format string, args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Warningf(format, args...)
|
l.logger.Warningf(format, args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Notice logs a message using NOTICE as log level.
|
// Notice logs a message using NOTICE as log level.
|
||||||
func (l *Logger) Notice(args ...interface{}) {
|
func (l *Logger) Notice(args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Notice(args...)
|
l.logger.Notice(args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Noticef logs a message using NOTICE as log level.
|
// Noticef logs a message using NOTICE as log level.
|
||||||
func (l *Logger) Noticef(format string, args ...interface{}) {
|
func (l *Logger) Noticef(format string, args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Noticef(format, args...)
|
l.logger.Noticef(format, args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Info logs a message using INFO as log level.
|
// Info logs a message using INFO as log level.
|
||||||
func (l *Logger) Info(args ...interface{}) {
|
func (l *Logger) Info(args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Info(args...)
|
l.logger.Info(args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Infof logs a message using INFO as log level.
|
// Infof logs a message using INFO as log level.
|
||||||
func (l *Logger) Infof(format string, args ...interface{}) {
|
func (l *Logger) Infof(format string, args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Infof(format, args...)
|
l.logger.Infof(format, args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Debug logs a message using DEBUG as log level.
|
// Debug logs a message using DEBUG as log level.
|
||||||
func (l *Logger) Debug(args ...interface{}) {
|
func (l *Logger) Debug(args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Debug(args...)
|
l.logger.Debug(args...)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Debugf logs a message using DEBUG as log level.
|
// Debugf logs a message using DEBUG as log level.
|
||||||
func (l *Logger) Debugf(format string, args ...interface{}) {
|
func (l *Logger) Debugf(format string, args ...interface{}) {
|
||||||
l.mutex.Lock()
|
l.lock()
|
||||||
defer l.mutex.Unlock()
|
defer l.unlock()
|
||||||
l.logger.Debugf(format, args...)
|
l.logger.Debugf(format, args...)
|
||||||
}
|
}
|
||||||
|
@ -31,6 +31,10 @@ func Test_Logger(t *testing.T) {
|
|||||||
suite.Run(t, new(LoggerTest))
|
suite.Run(t, new(LoggerTest))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (t *LoggerTest) SetupSuite() {
|
||||||
|
t.logger = NewLogger("code", logging.DEBUG, DefaultLogFormatter()).Exclusive()
|
||||||
|
}
|
||||||
|
|
||||||
// TODO Cover Fatal and Fatalf (implementation below is no-op)
|
// TODO Cover Fatal and Fatalf (implementation below is no-op)
|
||||||
// func (t *LoggerTest) Test_Fatal() {
|
// func (t *LoggerTest) Test_Fatal() {
|
||||||
// if os.Getenv("FLAG") == "1" {
|
// if os.Getenv("FLAG") == "1" {
|
||||||
@ -64,7 +68,7 @@ func (t *LoggerTest) Test_Panicf() {
|
|||||||
|
|
||||||
func (t *LoggerTest) Test_Critical() {
|
func (t *LoggerTest) Test_Critical() {
|
||||||
defer func() {
|
defer func() {
|
||||||
if v := recover(); v == nil {
|
if v := recover(); v != nil {
|
||||||
t.T().Fatal(v)
|
t.T().Fatal(v)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
@ -73,7 +77,7 @@ func (t *LoggerTest) Test_Critical() {
|
|||||||
|
|
||||||
func (t *LoggerTest) Test_Criticalf() {
|
func (t *LoggerTest) Test_Criticalf() {
|
||||||
defer func() {
|
defer func() {
|
||||||
if v := recover(); v == nil {
|
if v := recover(); v != nil {
|
||||||
t.T().Fatal(v)
|
t.T().Fatal(v)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
@ -82,7 +86,7 @@ func (t *LoggerTest) Test_Criticalf() {
|
|||||||
|
|
||||||
func (t *LoggerTest) Test_Warning() {
|
func (t *LoggerTest) Test_Warning() {
|
||||||
defer func() {
|
defer func() {
|
||||||
if v := recover(); v == nil {
|
if v := recover(); v != nil {
|
||||||
t.T().Fatal(v)
|
t.T().Fatal(v)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
@ -91,7 +95,7 @@ func (t *LoggerTest) Test_Warning() {
|
|||||||
|
|
||||||
func (t *LoggerTest) Test_Notice() {
|
func (t *LoggerTest) Test_Notice() {
|
||||||
defer func() {
|
defer func() {
|
||||||
if v := recover(); v == nil {
|
if v := recover(); v != nil {
|
||||||
t.T().Fatal(v)
|
t.T().Fatal(v)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
@ -100,7 +104,7 @@ func (t *LoggerTest) Test_Notice() {
|
|||||||
|
|
||||||
func (t *LoggerTest) Test_Info() {
|
func (t *LoggerTest) Test_Info() {
|
||||||
defer func() {
|
defer func() {
|
||||||
if v := recover(); v == nil {
|
if v := recover(); v != nil {
|
||||||
t.T().Fatal(v)
|
t.T().Fatal(v)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
@ -109,7 +113,7 @@ func (t *LoggerTest) Test_Info() {
|
|||||||
|
|
||||||
func (t *LoggerTest) Test_Debug() {
|
func (t *LoggerTest) Test_Debug() {
|
||||||
defer func() {
|
defer func() {
|
||||||
if v := recover(); v == nil {
|
if v := recover(); v != nil {
|
||||||
t.T().Fatal(v)
|
t.T().Fatal(v)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
Loading…
Reference in New Issue
Block a user