mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
Root package now contains only initialization code and 'dummy' module. Each module now got its own package. Module packages are grouped by their main purpose (storage/, target/, auth/, etc). Shared code is placed in these "group" packages. Parser for module references in config is moved into config/module. Code shared by tests (mock modules, etc) is placed in testutils.
25 lines
426 B
Go
25 lines
426 B
Go
package testutils
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/foxcpp/maddy/log"
|
|
)
|
|
|
|
func Logger(t *testing.T, name string) log.Logger {
|
|
if testing.Verbose() {
|
|
return log.Logger{
|
|
Out: func(_ time.Time, _ bool, str string) {
|
|
t.Helper()
|
|
t.Log(strings.TrimSuffix(str, "\n"))
|
|
},
|
|
Name: name,
|
|
Debug: true,
|
|
}
|
|
}
|
|
|
|
// MultiLog to empty slice is a blackhole.
|
|
return log.Logger{Out: log.MultiLog()}
|
|
}
|