navidrome/tests/init_tests.go

29 lines
592 B
Go
Raw Normal View History

2016-02-28 00:42:08 +01:00
package tests
import (
"os"
"path/filepath"
"runtime"
"testing"
2016-03-09 00:33:35 +01:00
2020-01-24 01:44:08 +01:00
"github.com/deluan/navidrome/conf"
"github.com/deluan/navidrome/log"
2016-02-28 00:42:08 +01:00
)
func Init(t *testing.T, skipOnShort bool) {
if skipOnShort && testing.Short() {
t.Skip("skipping test in short mode.")
}
_, file, _, _ := runtime.Caller(0)
appPath, _ := filepath.Abs(filepath.Join(filepath.Dir(file), ".."))
2020-01-24 01:44:08 +01:00
confPath, _ := filepath.Abs(filepath.Join(appPath, "tests", "navidrome-test.toml"))
2017-04-01 16:59:31 +02:00
2020-01-09 02:45:07 +01:00
os.Chdir(appPath)
2017-04-01 16:59:31 +02:00
conf.LoadFromFile(confPath)
2016-02-28 00:42:08 +01:00
noLog := os.Getenv("NOLOG")
if noLog != "" {
2020-01-09 02:45:07 +01:00
log.SetLevel(log.LevelError)
2016-02-28 00:42:08 +01:00
}
}