2018-11-27 23:47:56 +01:00
|
|
|
package logger
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2021-02-14 09:17:49 +01:00
|
|
|
TestFormat = "%s %s %s money, success, fame glamour"
|
2018-11-27 23:47:56 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2021-02-14 09:17:49 +01:00
|
|
|
testA = []interface{}{"1", "2", "3"}
|
2018-11-27 23:47:56 +01:00
|
|
|
)
|
|
|
|
|
2021-02-14 09:17:49 +01:00
|
|
|
func TestAlwaysOnly(t *testing.T) {
|
|
|
|
Level = -1
|
|
|
|
BitwiseLevel = LogAlways
|
|
|
|
buffer := new(bytes.Buffer)
|
|
|
|
Writer = buffer
|
|
|
|
expected := Line(PreAlways, TestFormat, testA...)
|
|
|
|
Deprecated(TestFormat, testA...)
|
|
|
|
Debug(TestFormat, testA...)
|
|
|
|
Info(TestFormat, testA...)
|
|
|
|
Warning(TestFormat, testA...)
|
|
|
|
Critical(TestFormat, testA...)
|
|
|
|
Success(TestFormat, testA...)
|
|
|
|
Always(TestFormat, testA...)
|
|
|
|
actual := buffer.String()
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("Expected (%s) Actual (%s)", expected, actual)
|
2018-11-27 23:47:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-14 09:17:49 +01:00
|
|
|
func TestSuccessOnly(t *testing.T) {
|
|
|
|
Level = -1
|
|
|
|
BitwiseLevel = LogSuccess
|
|
|
|
buffer := new(bytes.Buffer)
|
|
|
|
Writer = buffer
|
|
|
|
expected := Line(PreSuccess, TestFormat, testA...)
|
|
|
|
Deprecated(TestFormat, testA...)
|
|
|
|
Debug(TestFormat, testA...)
|
|
|
|
Info(TestFormat, testA...)
|
|
|
|
Warning(TestFormat, testA...)
|
|
|
|
Critical(TestFormat, testA...)
|
|
|
|
Success(TestFormat, testA...)
|
|
|
|
Always(TestFormat, testA...)
|
|
|
|
actual := buffer.String()
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("Expected (%s) Actual (%s)", expected, actual)
|
2018-11-27 23:47:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-14 09:17:49 +01:00
|
|
|
func TestDebugOnly(t *testing.T) {
|
|
|
|
Level = -1
|
|
|
|
BitwiseLevel = LogDebug
|
|
|
|
buffer := new(bytes.Buffer)
|
|
|
|
Writer = buffer
|
|
|
|
expected := Line(PreDebug, TestFormat, testA...)
|
|
|
|
Deprecated(TestFormat, testA...)
|
|
|
|
Debug(TestFormat, testA...)
|
|
|
|
Info(TestFormat, testA...)
|
|
|
|
Warning(TestFormat, testA...)
|
|
|
|
Critical(TestFormat, testA...)
|
|
|
|
Success(TestFormat, testA...)
|
|
|
|
Always(TestFormat, testA...)
|
|
|
|
actual := buffer.String()
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("Expected (%s) Actual (%s)", expected, actual)
|
2018-11-27 23:47:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-14 09:17:49 +01:00
|
|
|
func TestInfoOnly(t *testing.T) {
|
|
|
|
Level = -1
|
|
|
|
BitwiseLevel = LogInfo
|
|
|
|
buffer := new(bytes.Buffer)
|
|
|
|
Writer = buffer
|
|
|
|
expected := Line(PreInfo, TestFormat, testA...)
|
|
|
|
Deprecated(TestFormat, testA...)
|
|
|
|
Debug(TestFormat, testA...)
|
|
|
|
Info(TestFormat, testA...)
|
|
|
|
Warning(TestFormat, testA...)
|
|
|
|
Critical(TestFormat, testA...)
|
|
|
|
Success(TestFormat, testA...)
|
|
|
|
Always(TestFormat, testA...)
|
|
|
|
actual := buffer.String()
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("Expected (%s) Actual (%s)", expected, actual)
|
2018-11-27 23:47:56 +01:00
|
|
|
}
|
2021-02-14 09:17:49 +01:00
|
|
|
}
|
2018-11-27 23:47:56 +01:00
|
|
|
|
2021-02-14 09:17:49 +01:00
|
|
|
func TestWarningOnly(t *testing.T) {
|
|
|
|
Level = -1
|
|
|
|
BitwiseLevel = LogWarning
|
|
|
|
buffer := new(bytes.Buffer)
|
|
|
|
Writer = buffer
|
|
|
|
expected := Line(PreWarning, TestFormat, testA...)
|
|
|
|
Deprecated(TestFormat, testA...)
|
|
|
|
Debug(TestFormat, testA...)
|
|
|
|
Info(TestFormat, testA...)
|
|
|
|
Warning(TestFormat, testA...)
|
|
|
|
Critical(TestFormat, testA...)
|
|
|
|
Success(TestFormat, testA...)
|
|
|
|
Always(TestFormat, testA...)
|
|
|
|
actual := buffer.String()
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("Expected (%s) Actual (%s)", expected, actual)
|
2018-11-27 23:47:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-14 09:17:49 +01:00
|
|
|
func TestCriticalOnly(t *testing.T) {
|
|
|
|
Level = -1
|
|
|
|
BitwiseLevel = LogCritical
|
|
|
|
buffer := new(bytes.Buffer)
|
|
|
|
Writer = buffer
|
|
|
|
expected := Line(PreCritical, TestFormat, testA...)
|
|
|
|
Deprecated(TestFormat, testA...)
|
|
|
|
Debug(TestFormat, testA...)
|
|
|
|
Info(TestFormat, testA...)
|
|
|
|
Warning(TestFormat, testA...)
|
|
|
|
Critical(TestFormat, testA...)
|
|
|
|
Success(TestFormat, testA...)
|
|
|
|
Always(TestFormat, testA...)
|
|
|
|
actual := buffer.String()
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("Expected (%s) Actual (%s)", expected, actual)
|
2018-11-27 23:47:56 +01:00
|
|
|
}
|
2021-02-14 09:17:49 +01:00
|
|
|
}
|
2018-11-27 23:47:56 +01:00
|
|
|
|
2021-02-14 09:17:49 +01:00
|
|
|
func TestDeprecatedOnly(t *testing.T) {
|
|
|
|
Level = -1
|
|
|
|
BitwiseLevel = LogDeprecated
|
|
|
|
buffer := new(bytes.Buffer)
|
|
|
|
Writer = buffer
|
|
|
|
expected := Line(PreDeprecated, TestFormat, testA...)
|
|
|
|
Deprecated(TestFormat, testA...)
|
|
|
|
Debug(TestFormat, testA...)
|
|
|
|
Info(TestFormat, testA...)
|
|
|
|
Warning(TestFormat, testA...)
|
|
|
|
Critical(TestFormat, testA...)
|
|
|
|
Success(TestFormat, testA...)
|
|
|
|
Always(TestFormat, testA...)
|
|
|
|
actual := buffer.String()
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("Expected (%s) Actual (%s)", expected, actual)
|
2018-11-27 23:47:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-14 09:17:49 +01:00
|
|
|
func TestEverything(t *testing.T) {
|
|
|
|
Level = -1
|
|
|
|
BitwiseLevel = LogEverything
|
|
|
|
buffer := new(bytes.Buffer)
|
|
|
|
Writer = buffer
|
|
|
|
cases := []string{PreDeprecated, PreDebug, PreInfo, PreWarning, PreCritical, PreSuccess, PreAlways}
|
|
|
|
expected := ""
|
|
|
|
for _, c := range cases {
|
|
|
|
expected = fmt.Sprintf("%s%s", expected, Line(c, TestFormat, testA...))
|
2018-11-27 23:47:56 +01:00
|
|
|
}
|
2021-02-14 09:17:49 +01:00
|
|
|
Deprecated(TestFormat, testA...)
|
|
|
|
Debug(TestFormat, testA...)
|
|
|
|
Info(TestFormat, testA...)
|
|
|
|
Warning(TestFormat, testA...)
|
|
|
|
Critical(TestFormat, testA...)
|
|
|
|
Success(TestFormat, testA...)
|
|
|
|
Always(TestFormat, testA...)
|
|
|
|
actual := buffer.String()
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("Expected (%s) Actual (%s)", expected, actual)
|
2018-11-27 23:47:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-14 09:17:49 +01:00
|
|
|
func TestAlwaysCriticalDebugOnly(t *testing.T) {
|
|
|
|
Level = -1
|
|
|
|
BitwiseLevel = LogAlways | LogCritical | LogDebug
|
|
|
|
buffer := new(bytes.Buffer)
|
|
|
|
Writer = buffer
|
|
|
|
cases := []string{PreDebug, PreCritical, PreAlways}
|
|
|
|
expected := ""
|
|
|
|
for _, c := range cases {
|
|
|
|
expected = fmt.Sprintf("%s%s", expected, Line(c, TestFormat, testA...))
|
2018-11-28 00:23:56 +01:00
|
|
|
}
|
2021-02-14 09:17:49 +01:00
|
|
|
Deprecated(TestFormat, testA...)
|
|
|
|
Debug(TestFormat, testA...)
|
|
|
|
Info(TestFormat, testA...)
|
|
|
|
Warning(TestFormat, testA...)
|
|
|
|
Critical(TestFormat, testA...)
|
|
|
|
Success(TestFormat, testA...)
|
|
|
|
Always(TestFormat, testA...)
|
|
|
|
actual := buffer.String()
|
|
|
|
if expected != actual {
|
|
|
|
t.Errorf("Expected (%s) Actual (%s)", expected, actual)
|
2018-11-28 00:23:56 +01:00
|
|
|
}
|
|
|
|
}
|