代码拉取完成,页面将自动刷新
package go_logger
import (
"testing"
"time"
)
func TestNewAdapterConsole(t *testing.T) {
NewAdapterConsole()
}
func TestAdapterConsole_Init(t *testing.T) {
consoleAdapter := NewAdapterConsole()
consoleConfig := &ConsoleConfig{}
consoleAdapter.Init(consoleConfig)
}
func TestAdapterConsole_Name(t *testing.T) {
consoleAdapter := NewAdapterConsole()
if consoleAdapter.Name() != CONSOLE_ADAPTER_NAME {
t.Error("consoleAdapter name error")
}
}
func TestAdapterConsole_WriteColor(t *testing.T) {
consoleAdapter := NewAdapterConsole()
consoleConfig := &ConsoleConfig{
Color: true,
}
consoleAdapter.Init(consoleConfig)
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 console adapter test color",
File: "console_test.go",
Line: 50,
Function: "TestAdapterConsole_WriteIsColor",
}
err := consoleAdapter.Write(loggerMsg)
if err != nil {
t.Error(err.Error())
}
}
func TestAdapterConsole_WriteJsonFormat(t *testing.T) {
consoleAdapter := NewAdapterConsole()
consoleConfig := &ConsoleConfig{
JsonFormat: true,
}
consoleAdapter.Init(consoleConfig)
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 console adapter test jsonFormat",
File: "console_test.go",
Line: 77,
Function: "TestAdapterConsole_WriteJsonFormat",
}
err := consoleAdapter.Write(loggerMsg)
if err != nil {
t.Error(err.Error())
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。