navidrome/tests/init_tests.go

29 lines
602 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
2017-04-01 15:47:14 +02:00
"github.com/cloudsonic/sonic-server/conf"
2020-01-09 02:45:07 +01:00
"github.com/cloudsonic/sonic-server/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), ".."))
2017-04-01 16:59:31 +02:00
confPath, _ := filepath.Abs(filepath.Join(appPath, "tests", "sonic-test.toml"))
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
}
}