-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrite_test.go
More file actions
223 lines (178 loc) · 5.38 KB
/
write_test.go
File metadata and controls
223 lines (178 loc) · 5.38 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
package debugo
import (
"bytes"
"fmt"
"regexp"
"strings"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
var namespace = "test-namespace"
var testMessage = "Test message"
var testMessageExpected = fmt.Sprintf("%s %s +0ms\n", namespace, testMessage)
var testMessageWithFormatting = "Test message with %d"
var testMessageWithFormattingArgs = 42
var testMessageWithFormattingExpected = fmt.Sprintf("%s Test message with %d +0ms\n", namespace, testMessageWithFormattingArgs)
func getDebugger() *Debugger {
SetNamespace("*")
return New(namespace)
}
func stripANSI(input string) string {
re := regexp.MustCompile(`\x1b\[[0-9;]*m`)
return re.ReplaceAllString(input, "")
}
func hasANSI(input string) bool {
re := regexp.MustCompile(`\x1b\[[0-9;]*m`)
return re.MatchString(input)
}
func TestDebug(t *testing.T) {
var buf bytes.Buffer
d := getDebugger()
d.SetOutput(&buf)
d.Debug(testMessage)
assert.True(t, hasANSI(buf.String()))
output := strings.TrimSpace(stripANSI(buf.String())) // Strip colors and trim whitespace
expected := strings.TrimSpace(testMessageExpected)
assert.Equal(t, expected, output)
}
func TestDebugJSON(t *testing.T) {
var buf bytes.Buffer
d := getDebugger()
d.SetOutput(&buf)
SetFormat(JSON)
d.Debug(testMessage)
SetFormat(Plain)
assert.False(t, hasANSI(buf.String()))
output := strings.TrimSpace(stripANSI(buf.String())) // Strip colors and trim whitespace
expected := strings.TrimSpace("{\"namespace\":\"" + namespace + "\",\"message\":\"" + testMessage + "\"}")
assert.Equal(t, expected, output)
}
func TestDebugJSONWithTimestamp(t *testing.T) {
var buf bytes.Buffer
d := getDebugger()
SetOutput(&buf)
SetTimestamp(&Timestamp{Format: "2006"})
SetFormat(JSON)
d.Debug(testMessage)
SetFormat(Plain)
SetTimestamp(nil)
assert.False(t, hasANSI(buf.String()))
output := strings.TrimSpace(stripANSI(buf.String())) // Strip colors and trim whitespace
expected := strings.TrimSpace("{\"timestamp\":\"" + fmt.Sprint(time.Now().Year()) + "\",\"namespace\":\"" + namespace + "\",\"message\":\"" + testMessage + "\"}")
assert.Equal(t, expected, output)
}
func TestDebugGlobalOutput(t *testing.T) {
var buf bytes.Buffer
d := getDebugger()
d.SetOutput(&buf)
SetOutput(&buf)
d.SetOutput(nil)
d.Debug(testMessage)
assert.True(t, hasANSI(buf.String()))
output := strings.TrimSpace(stripANSI(buf.String())) // Strip colors and trim whitespace
expected := strings.TrimSpace(testMessageExpected)
assert.Equal(t, expected, output)
}
func TestDebugNoColors(t *testing.T) {
var buf bytes.Buffer
SetUseColors(false)
d := getDebugger()
d.SetOutput(&buf)
d.Debug(testMessage)
assert.False(t, hasANSI(buf.String()))
}
func TestDebugNonMatchingNamespace(t *testing.T) {
var buf bytes.Buffer
SetUseColors(false)
d := getDebugger()
d.SetOutput(&buf)
d.Debug("")
assert.Empty(t, buf.String())
}
func TestDebugEmptyMessage(t *testing.T) {
var buf bytes.Buffer
SetUseColors(false)
d := getDebugger()
d.SetOutput(&buf)
SetNamespace("does:not:exist")
d.Debug("test")
assert.Empty(t, buf.String())
}
func TestDebugWithColors(t *testing.T) {
var buf bytes.Buffer
SetUseColors(true)
d := getDebugger()
d.SetOutput(&buf)
d.Debug(testMessage)
assert.True(t, hasANSI(buf.String()))
}
func TestDebugf(t *testing.T) {
var buf bytes.Buffer
d := getDebugger()
d.SetOutput(&buf)
d.Debugf(testMessageWithFormatting, testMessageWithFormattingArgs)
output := strings.TrimSpace(stripANSI(buf.String())) // Strip colors and trim whitespace
expected := strings.TrimSpace(testMessageWithFormattingExpected)
if output != expected {
t.Errorf("Expected '%s' in output, got: '%s'", expected, output)
}
}
func TestDebugRaceCondition(_ *testing.T) {
var buf bytes.Buffer
d := getDebugger()
d.SetOutput(&buf)
const goroutines = 10
const iterations = 100
done := make(chan bool, goroutines)
ids := make([]int, goroutines)
for i := range ids {
ids[i] = i
}
for _, id := range ids {
go func(id int) {
for j := 0; j < iterations; j++ {
SetNamespace("*")
SetTimestamp(&Timestamp{Format: time.RFC3339})
d.Debug(fmt.Sprintf("Goroutine %d, iteration %d", id, j))
}
done <- true
}(id)
}
for range ids {
<-done
}
// Optionally, verify output without colors
_ = stripANSI(buf.String())
}
func TestWriteWithFields(t *testing.T) {
var buf bytes.Buffer
d := getDebugger().With("foo", "bar").With("", "empty-key").With("foo", nil).With("func", func() {})
d.SetOutput(&buf)
SetFormat(Plain)
SetUseColors(false)
SetTimestamp(&Timestamp{Format: "2006"})
d.Debugf("%s %s %t", "foo", "bar", true)
t.Log(buf.String())
}
func TestJSONWritePrint(t *testing.T) {
var buf bytes.Buffer
d := getDebugger().With("foo", "bar").With("", "empty-key").With("foo", nil).With("func", func() {}).With("age", 42).With("is", true)
d.SetOutput(&buf)
SetFormat(JSON)
SetTimestamp(&Timestamp{Format: "2006"})
d.Debug("foo", "bar", true)
assert.Equal(t, "{\"timestamp\":\"2025\",\"namespace\":\"test-namespace\",\"fields\":{\"(empty)\":\"empty-key\",\"age\":42,\"foo\":null,\"func\":\"(not serializable)\",\"is\":true},\"message\":\"foobartrue\"}\n", buf.String())
t.Log(buf.String())
}
func TestPlainWritePrint(t *testing.T) {
var buf bytes.Buffer
d := getDebugger()
d.SetOutput(&buf)
SetTimestamp(&Timestamp{Format: time.Kitchen})
SetUseColors(false)
SetFormat(Plain)
SetTimestamp(&Timestamp{Format: time.Kitchen})
d.Debugf("%s %s %t", "foo", "bar", true)
t.Log(buf.String())
}