1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
package utils
import (
"bytes"
"sync"
)
// testLogWriter provides a threadsafe way of reading and writing logs to a buffer.
type TestLogWriter struct {
Lock *sync.RWMutex
Buffer *bytes.Buffer
}
func (lw *TestLogWriter) Write(p []byte) (n int, err error) {
lw.Lock.Lock()
defer lw.Lock.Unlock()
n, err = lw.Buffer.Write(p)
if err != nil {
return 0, err
}
return n, nil
}
func (lw *TestLogWriter) String() string {
lw.Lock.RLock()
defer lw.Lock.RUnlock()
return lw.Buffer.String()
}
func NewTestLogWriter() *TestLogWriter {
return &TestLogWriter{
Lock: &sync.RWMutex{},
Buffer: &bytes.Buffer{},
}
}
|