-
Notifications
You must be signed in to change notification settings - Fork 59
/
file_test.go
93 lines (81 loc) · 2.26 KB
/
file_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
package go_logger
import (
"testing"
"time"
)
func TestNewAdapterFile(t *testing.T) {
NewAdapterFile()
}
func TestAdapterFile_Name(t *testing.T) {
fileAdapter := NewAdapterFile()
if fileAdapter.Name() != FILE_ADAPTER_NAME {
t.Error("file adapter name error")
}
}
func TestAdapterFile_Write(t *testing.T) {
fileAdapter := NewAdapterFile()
fileConfig := &FileConfig{
Filename: "./test.log",
LevelFileName: map[int]string{},
MaxLine: 2000,
MaxSize: 10000 * 4,
JsonFormat: true,
DateSlice: "d",
}
err := fileAdapter.Init(fileConfig)
if err != nil {
t.Fatal(err.Error())
}
loggerMsg := &loggerMessage{
Timestamp: time.Now().Unix(),
TimestampFormat: time.Now().Format("2006-01-02 15:04:05"),
Millisecond: time.Now().UnixNano() / 1e6,
MillisecondFormat: time.Now().Format("2006-01-02 15:04:05.999"),
Level: LOGGER_LEVEL_DEBUG,
LevelString: "debug",
Body: "logger test file adapter write",
File: "file_test.go",
Line: 50,
Function: "TestAdapterFile_Write",
}
err = fileAdapter.Write(loggerMsg)
if err != nil {
t.Error(err.Error())
}
}
func TestAdapterFile_WriteLevelFile(t *testing.T) {
fileAdapter := NewAdapterFile()
fileConfig := &FileConfig{
Filename: "./test.log",
LevelFileName: map[int]string{
LOGGER_LEVEL_DEBUG: "./debug.log",
LOGGER_LEVEL_INFO: "./info.log",
LOGGER_LEVEL_ERROR: "./error.log",
},
MaxLine: 2000,
MaxSize: 10000 * 4,
JsonFormat: true,
DateSlice: "d",
}
err := fileAdapter.Init(fileConfig)
if err != nil {
t.Fatal(err.Error())
}
loggerMsg := &loggerMessage{
Timestamp: time.Now().Unix(),
TimestampFormat: time.Now().Format("2006-01-02 15:04:05"),
Millisecond: time.Now().UnixNano() / 1e6,
MillisecondFormat: time.Now().Format("2006-01-02 15:04:05.999"),
Level: LOGGER_LEVEL_DEBUG,
LevelString: "debug",
Body: "logger test file adapter write",
File: "file_test.go",
Line: 50,
Function: "TestAdapterFile_Write",
}
fileAdapter.Write(loggerMsg)
loggerMsg.Level = LOGGER_LEVEL_INFO
fileAdapter.Write(loggerMsg)
loggerMsg.Level = LOGGER_LEVEL_ERROR
fileAdapter.Write(loggerMsg)
}