mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
29 lines
608 B
Go
29 lines
608 B
Go
package tests
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"runtime"
|
|
"testing"
|
|
|
|
"github.com/astaxie/beego"
|
|
"github.com/cloudsonic/sonic-server/conf"
|
|
"github.com/cloudsonic/sonic-server/utils"
|
|
)
|
|
|
|
func Init(t *testing.T, skipOnShort bool) {
|
|
conf.LoadFromFile("../tests/sonic-test.toml")
|
|
if skipOnShort && testing.Short() {
|
|
t.Skip("skipping test in short mode.")
|
|
}
|
|
|
|
_, file, _, _ := runtime.Caller(0)
|
|
appPath, _ := filepath.Abs(filepath.Join(filepath.Dir(file), ".."))
|
|
beego.TestBeegoInit(appPath)
|
|
|
|
noLog := os.Getenv("NOLOG")
|
|
if noLog != "" {
|
|
beego.SetLevel(beego.LevelError)
|
|
}
|
|
utils.Graph.Finalize()
|
|
}
|