-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipe_test.go
103 lines (77 loc) · 1.87 KB
/
pipe_test.go
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package log
import (
"bytes"
"io"
"strings"
"sync"
"testing"
"go.uber.org/zap"
)
func TestNewPipeReader(t *testing.T) {
log := getLogger("test")
var wg sync.WaitGroup
wg.Add(1)
r := NewPipeReader()
buf := &bytes.Buffer{}
go func() {
defer wg.Done()
if _, err := io.Copy(buf, r); err != nil && err != io.ErrClosedPipe {
t.Errorf("unexpected error: %v", err)
}
}()
log.Error("scooby")
r.Close()
wg.Wait()
if !strings.Contains(buf.String(), "scooby") {
t.Errorf("got %q, wanted it to contain log output", buf.String())
}
}
func TestNewPipeReaderFormat(t *testing.T) {
log := getLogger("test")
var wg sync.WaitGroup
wg.Add(1)
r := NewPipeReader(PipeFormat(PlaintextOutput))
buf := &bytes.Buffer{}
go func() {
defer wg.Done()
if _, err := io.Copy(buf, r); err != nil && err != io.ErrClosedPipe {
t.Errorf("unexpected error: %v", err)
}
}()
log.Error("scooby")
r.Close()
wg.Wait()
if !strings.Contains(buf.String(), "scooby") {
t.Errorf("got %q, wanted it to contain log output", buf.String())
}
}
func TestNewPipeReaderLevel(t *testing.T) {
SetupLogging(Config{
Level: LevelDebug,
LogFormat: PlaintextOutput,
})
log := getLogger("test")
var wg sync.WaitGroup
wg.Add(1)
r := NewPipeReader(PipeLevel(LevelError))
buf := &bytes.Buffer{}
go func() {
defer wg.Done()
if _, err := io.Copy(buf, r); err != nil && err != io.ErrClosedPipe {
t.Errorf("unexpected error: %v", err)
}
}()
log.Debug("scooby")
log.Info("velma")
log.Error("shaggy")
r.Close()
wg.Wait()
lineEnding := zap.NewProductionEncoderConfig().LineEnding
// Should only contain one log line
if strings.Count(buf.String(), lineEnding) > 1 {
t.Errorf("got %d log lines, wanted 1", strings.Count(buf.String(), lineEnding))
}
if !strings.Contains(buf.String(), "shaggy") {
t.Errorf("got %q, wanted it to contain log output", buf.String())
}
}