-
Notifications
You must be signed in to change notification settings - Fork 135
/
log_test.go
88 lines (64 loc) · 2.82 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
package main
import (
"fmt"
"math/rand"
"time"
"bou.ke/monkey"
)
var stopped = time.Date(2018, 04, 22, 9, 30, 0, 0, time.UTC)
func ExampleNewApacheCommonLog() {
rand.Seed(11)
monkey.Patch(time.Now, func() time.Time { return stopped })
defer monkey.Unpatch(time.Now)
created := time.Now()
fmt.Println(NewApacheCommonLog(created))
// Output: 222.83.191.222 - - [22/Apr/2018:09:30:00 +0000] "DELETE /innovate/next-generation HTTP/1.1" 406 7610
}
func ExampleNewApacheCombinedLog() {
rand.Seed(11)
monkey.Patch(time.Now, func() time.Time { return stopped })
defer monkey.Unpatch(time.Now)
created := time.Now()
fmt.Println(NewApacheCombinedLog(created))
// Output: 222.83.191.222 - - [22/Apr/2018:09:30:00 +0000] "DELETE /innovate/next-generation HTTP/1.1" 406 97484 "https://www.humanscalable.io/synergize/morph/sticky" "Mozilla/5.0 (Windows NT 5.01) AppleWebKit/5320 (KHTML, like Gecko) Chrome/40.0.875.0 Mobile Safari/5320"
}
func ExampleNewApacheErrorLog() {
rand.Seed(11)
monkey.Patch(time.Now, func() time.Time { return stopped })
defer monkey.Unpatch(time.Now)
created := time.Now()
fmt.Println(NewApacheErrorLog(created))
// Output: [Sun Apr 22 09:30:00 2018] [quia:crit] [pid 4214:tid 6037] [client 90.151.9.107:14075] Copying the protocol won't do anything, we need to copy the redundant SAS program!
}
func ExampleNewRFC3164Log() {
rand.Seed(11)
monkey.Patch(time.Now, func() time.Time { return stopped })
defer monkey.Unpatch(time.Now)
created := time.Now()
fmt.Println(NewRFC3164Log(created))
// Output: <24>Apr 22 09:30:00 moen8727 quo[3160]: If we back up the program, we can get to the SSL sensor through the redundant SAS program!
}
func ExampleNewRFC5424Log() {
rand.Seed(11)
monkey.Patch(time.Now, func() time.Time { return stopped })
defer monkey.Unpatch(time.Now)
created := time.Now()
fmt.Println(NewRFC5424Log(created))
// Output: <24>3 2018-04-22T09:30:00.000Z futurefunctionalities.biz nisi 9030 ID160 - If we back up the program, we can get to the SSL sensor through the redundant SAS program!
}
func ExampleNewCommonLogFormat() {
rand.Seed(11)
monkey.Patch(time.Now, func() time.Time { return stopped })
defer monkey.Unpatch(time.Now)
created := time.Now()
fmt.Println(NewCommonLogFormat(created))
// Output: 222.83.191.222 - - [22/Apr/2018:09:30:00 +0000] "DELETE /innovate/next-generation HTTP/1.1" 406 7610
}
func ExampleNewJSONLogFormat() {
rand.Seed(11)
monkey.Patch(time.Now, func() time.Time { return stopped })
defer monkey.Unpatch(time.Now)
created := time.Now()
fmt.Println(NewJSONLogFormat(created))
// Output: {"host":"222.83.191.222", "user-identifier":"-", "datetime":"22/Apr/2018:09:30:00 +0000", "method": "DELETE", "request": "/innovate/next-generation", "protocol":"HTTP/1.1", "status":406, "bytes":7610, "referer": "https://www.humanscalable.io/synergize/morph/sticky"}
}