mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-08 23:12:54 +01:00
Winni Neessen
6c9b875f58
Updated variable names from abbreviations to full names for better code readability in the log and test log files. This modification provides a clearer understanding of variable roles and improves code maintainability in adherence to Go's best practices.
114 lines
3.5 KiB
Go
114 lines
3.5 KiB
Go
// SPDX-FileCopyrightText: Copyright (c) 2023 The go-mail Authors
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package log
|
|
|
|
import (
|
|
"bytes"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestNew(t *testing.T) {
|
|
var b bytes.Buffer
|
|
l := New(&b, LevelDebug)
|
|
if l.level != LevelDebug {
|
|
t.Error("Expected level to be LevelDebug, got ", l.level)
|
|
}
|
|
if l.err == nil || l.warn == nil || l.info == nil || l.debug == nil {
|
|
t.Error("Loggers not initialized")
|
|
}
|
|
}
|
|
|
|
func TestDebugf(t *testing.T) {
|
|
var b bytes.Buffer
|
|
l := New(&b, LevelDebug)
|
|
|
|
l.Debugf(Log{Direction: DirServerToClient, Format: "test %s", Messages: []interface{}{"foo"}})
|
|
expected := "DEBUG: C <-- S: test foo\n"
|
|
if !strings.HasSuffix(b.String(), expected) {
|
|
t.Errorf("Expected %q, got %q", expected, b.String())
|
|
}
|
|
l.Debugf(Log{Direction: DirClientToServer, Format: "test %s", Messages: []interface{}{"foo"}})
|
|
expected = "DEBUG: C --> S: test foo\n"
|
|
if !strings.HasSuffix(b.String(), expected) {
|
|
t.Errorf("Expected %q, got %q", expected, b.String())
|
|
}
|
|
|
|
b.Reset()
|
|
l.level = LevelInfo
|
|
l.Debugf(Log{Direction: DirServerToClient, Format: "test %s", Messages: []interface{}{"foo"}})
|
|
if b.String() != "" {
|
|
t.Error("Debug message was not expected to be logged")
|
|
}
|
|
}
|
|
|
|
func TestInfof(t *testing.T) {
|
|
var b bytes.Buffer
|
|
l := New(&b, LevelInfo)
|
|
|
|
l.Infof(Log{Direction: DirServerToClient, Format: "test %s", Messages: []interface{}{"foo"}})
|
|
expected := " INFO: C <-- S: test foo\n"
|
|
if !strings.HasSuffix(b.String(), expected) {
|
|
t.Errorf("Expected %q, got %q", expected, b.String())
|
|
}
|
|
l.Infof(Log{Direction: DirClientToServer, Format: "test %s", Messages: []interface{}{"foo"}})
|
|
expected = " INFO: C --> S: test foo\n"
|
|
if !strings.HasSuffix(b.String(), expected) {
|
|
t.Errorf("Expected %q, got %q", expected, b.String())
|
|
}
|
|
|
|
b.Reset()
|
|
l.level = LevelWarn
|
|
l.Infof(Log{Direction: DirServerToClient, Format: "test %s", Messages: []interface{}{"foo"}})
|
|
if b.String() != "" {
|
|
t.Error("Info message was not expected to be logged")
|
|
}
|
|
}
|
|
|
|
func TestWarnf(t *testing.T) {
|
|
var b bytes.Buffer
|
|
l := New(&b, LevelWarn)
|
|
|
|
l.Warnf(Log{Direction: DirServerToClient, Format: "test %s", Messages: []interface{}{"foo"}})
|
|
expected := " WARN: C <-- S: test foo\n"
|
|
if !strings.HasSuffix(b.String(), expected) {
|
|
t.Errorf("Expected %q, got %q", expected, b.String())
|
|
}
|
|
l.Warnf(Log{Direction: DirClientToServer, Format: "test %s", Messages: []interface{}{"foo"}})
|
|
expected = " WARN: C --> S: test foo\n"
|
|
if !strings.HasSuffix(b.String(), expected) {
|
|
t.Errorf("Expected %q, got %q", expected, b.String())
|
|
}
|
|
|
|
b.Reset()
|
|
l.level = LevelError
|
|
l.Warnf(Log{Direction: DirServerToClient, Format: "test %s", Messages: []interface{}{"foo"}})
|
|
if b.String() != "" {
|
|
t.Error("Warn message was not expected to be logged")
|
|
}
|
|
}
|
|
|
|
func TestErrorf(t *testing.T) {
|
|
var b bytes.Buffer
|
|
l := New(&b, LevelError)
|
|
|
|
l.Errorf(Log{Direction: DirServerToClient, Format: "test %s", Messages: []interface{}{"foo"}})
|
|
expected := "ERROR: C <-- S: test foo\n"
|
|
if !strings.HasSuffix(b.String(), expected) {
|
|
t.Errorf("Expected %q, got %q", expected, b.String())
|
|
}
|
|
l.Errorf(Log{Direction: DirClientToServer, Format: "test %s", Messages: []interface{}{"foo"}})
|
|
expected = "ERROR: C --> S: test foo\n"
|
|
if !strings.HasSuffix(b.String(), expected) {
|
|
t.Errorf("Expected %q, got %q", expected, b.String())
|
|
}
|
|
|
|
b.Reset()
|
|
l.level = LevelError - 1
|
|
l.Errorf(Log{Direction: DirServerToClient, Format: "test %s", Messages: []interface{}{"foo"}})
|
|
if b.String() != "" {
|
|
t.Error("Error message was not expected to be logged")
|
|
}
|
|
}
|