quintodrome/tests/init_tests.go

29 lines
602 B
Go
Raw Normal View History

2016-02-27 14:42:08 -09:00
package tests
import (
"os"
"path/filepath"
"runtime"
"testing"
2016-03-08 14:33:35 -09:00
2017-04-01 05:47:14 -08:00
"github.com/cloudsonic/sonic-server/conf"
2020-01-08 16:45:07 -09:00
"github.com/cloudsonic/sonic-server/log"
2016-02-27 14:42:08 -09: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 06:59:31 -08:00
confPath, _ := filepath.Abs(filepath.Join(appPath, "tests", "sonic-test.toml"))
2020-01-08 16:45:07 -09:00
os.Chdir(appPath)
2017-04-01 06:59:31 -08:00
conf.LoadFromFile(confPath)
2016-02-27 14:42:08 -09:00
noLog := os.Getenv("NOLOG")
if noLog != "" {
2020-01-08 16:45:07 -09:00
log.SetLevel(log.LevelError)
2016-02-27 14:42:08 -09:00
}
}