-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog_test.go
92 lines (80 loc) · 2.31 KB
/
log_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
// Copyright 2019 The vogo Authors. All rights reserved.
// author: wongoo
package logger
import (
"fmt"
"io"
"log"
"testing"
)
// StdLogPrintf calls Output to print to the standard logger.
// Arguments are handled in the manner of fmt.Printf.
// Not check whether the output writer is discard.
func StdLogPrintf(format string, v ...any) {
_ = log.Output(2, fmt.Sprintf(format, v...))
}
// StdLogPrintln calls Output to print to the standard logger.
// Arguments are handled in the manner of fmt.Println.
// Not check whether the output writer is discard.
func StdLogPrintln(v ...any) {
_ = log.Output(2, fmt.Sprintln(v...))
}
func TestLog(t *testing.T) {
log.SetFlags(log.LstdFlags | log.Ldate | log.Lmicroseconds | log.Lshortfile)
log.Println("hello world")
}
func BenchmarkLogPrintln(b *testing.B) {
log.SetOutput(io.Discard)
log.SetFlags(log.LstdFlags | log.Ldate | log.Lmicroseconds)
for i := 0; i < b.N; i++ {
StdLogPrintln("hello world")
}
}
func BenchmarkLogPrintlnParallel(b *testing.B) {
log.SetOutput(io.Discard)
log.SetFlags(log.LstdFlags | log.Ldate | log.Lmicroseconds)
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
StdLogPrintln("hello world")
}
})
}
func BenchmarkLogPrintlnCaller(b *testing.B) {
log.SetOutput(io.Discard)
log.SetFlags(log.LstdFlags | log.Ldate | log.Lmicroseconds | log.Lshortfile)
for i := 0; i < b.N; i++ {
StdLogPrintln("hello world")
}
}
func BenchmarkLogPrintf(b *testing.B) {
log.SetOutput(io.Discard)
log.SetFlags(log.LstdFlags | log.Ldate | log.Lmicroseconds)
for i := 0; i < b.N; i++ {
StdLogPrintf("%s %s", "hello", "world")
}
}
func BenchmarkLogPrintfParallel(b *testing.B) {
log.SetOutput(io.Discard)
log.SetFlags(log.LstdFlags | log.Ldate | log.Lmicroseconds)
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
StdLogPrintf("%s %s", "hello", "world")
}
})
}
func BenchmarkLogPrintfCaller(b *testing.B) {
log.SetOutput(io.Discard)
log.SetFlags(log.LstdFlags | log.Ldate | log.Lmicroseconds | log.Lshortfile)
for i := 0; i < b.N; i++ {
StdLogPrintf("%s %s", "hello", "world")
}
}
func BenchmarkLogPrintfCallerParallel(b *testing.B) {
log.SetOutput(io.Discard)
log.SetFlags(log.LstdFlags | log.Ldate | log.Lmicroseconds | log.Lshortfile)
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
StdLogPrintf("%s %s", "hello", "world")
}
})
}