-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlog_context_test.go
106 lines (87 loc) · 2.57 KB
/
log_context_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
104
105
106
package log4g
import (
"github.com/dspasibenko/log4g/collections"
. "gopkg.in/check.v1"
"time"
)
type logContextSuite struct {
logEvents []*LogEvent
hasSleep bool
}
var _ = Suite(&logContextSuite{})
func (s *logContextSuite) TestNewLogContext(c *C) {
lc, err := newLogContext("abc", nil, true, true, 10)
c.Assert(lc, IsNil)
c.Assert(err, NotNil)
appenders := make([]Appender, 0, 10)
lc, err = newLogContext("abc", appenders, true, true, 10)
c.Assert(lc, IsNil)
c.Assert(err, NotNil)
appenders = append(appenders, s)
c.Assert(len(appenders), Equals, 1)
lc, err = newLogContext("abc", appenders, true, true, 0)
c.Assert(lc, IsNil)
c.Assert(err, NotNil)
}
func (s *logContextSuite) TestLogContextWorkflow(c *C) {
appenders := make([]Appender, 1, 10)
appenders[0] = s
s.logEvents = make([]*LogEvent, 0, 10)
lc, err := newLogContext("abc", appenders, true, true, 1)
c.Assert(lc, NotNil)
c.Assert(err, IsNil)
le := new(LogEvent)
lc.log(le)
for i := 0; i < 10; i++ {
if len(s.logEvents) > 0 && s.logEvents[0] == le {
break
}
time.Sleep(time.Millisecond * 100)
}
c.Assert(s.logEvents[0], Equals, le)
lc.shutdown()
_, ok := <-lc.controlCh
c.Assert(ok, Equals, false)
}
func (s *logContextSuite) TestNonBlockingLogContext(c *C) {
appenders := make([]Appender, 1, 10)
appenders[0] = s
s.logEvents = make([]*LogEvent, 0, 100)
lc, err := newLogContext("abc", appenders, true, false, 1)
c.Assert(lc, NotNil)
c.Assert(err, IsNil)
le := new(LogEvent)
for i := 0; i < cap(s.logEvents); i++ {
lc.log(le)
}
time.Sleep(time.Millisecond * 50) // give the appender time to read it
c.Assert(len(s.logEvents), Not(Equals), 0)
c.Assert(len(s.logEvents), Not(Equals), 100) // non-blocking should lost
c.Assert(s.logEvents[0], Equals, le)
lc.shutdown()
_, ok := <-lc.controlCh
c.Assert(ok, Equals, false)
}
func (s *logContextSuite) TestGetLogLevelContext(c *C) {
ss, _ := collections.NewSortedSlice(2)
c.Assert(getLogLevelContext("a", ss), IsNil)
appenders := make([]Appender, 1, 10)
appenders[0] = s
lc, _ := newLogContext("b", appenders, true, true, 1)
ss.Add(lc)
c.Assert(getLogLevelContext("a", ss), IsNil)
c.Assert(getLogLevelContext("b", ss), Equals, lc)
lc, _ = newLogContext("", appenders, true, true, 1)
ss.Add(lc)
c.Assert(getLogLevelContext("a", ss).loggerName, Equals, "")
c.Assert(getLogLevelContext("b", ss).loggerName, Equals, "b")
}
func (lcs *logContextSuite) Append(logEvent *LogEvent) bool {
lcs.logEvents = append(lcs.logEvents, logEvent)
if lcs.hasSleep {
time.Sleep(time.Millisecond)
}
return true
}
func (lcs *logContextSuite) Shutdown() {
}