logger/logger_test.go

209 lines
5.5 KiB
Go
Raw Normal View History

// Copyright © 2021 Kris Nóva <kris@nivenly.com>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2018-11-27 23:47:56 +01:00
package logger
import (
"bytes"
"fmt"
"testing"
)
const (
TestFormat = "%s %s %s money, success, fame glamour"
2018-11-27 23:47:56 +01:00
)
var (
testA = []interface{}{"1", "2", "3"}
2018-11-27 23:47:56 +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
}
}
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
}
}
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
}
}
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
}
}
2018-11-27 23:47:56 +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
}
}
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
}
}
2018-11-27 23:47:56 +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
}
}
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
}
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
}
}
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...))
}
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)
}
}