2017-05-20 10:48:22 +02:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2017-06-04 20:28:17 +02:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2017-05-20 10:48:22 +02:00
|
|
|
)
|
|
|
|
|
2017-06-04 20:28:17 +02:00
|
|
|
// TestFixturesAreConsistent assert that test fixtures are consistent
|
|
|
|
func TestFixturesAreConsistent(t *testing.T) {
|
|
|
|
assert.NoError(t, PrepareTestDatabase())
|
|
|
|
CheckConsistencyForAll(t)
|
|
|
|
}
|
|
|
|
|
2017-05-20 10:48:22 +02:00
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
if err := CreateTestEngine(); err != nil {
|
|
|
|
fmt.Printf("Error creating test engine: %v\n", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
setting.AppURL = "https://try.gitea.io/"
|
|
|
|
setting.RunUser = "runuser"
|
|
|
|
setting.SSH.Port = 3000
|
|
|
|
setting.SSH.Domain = "try.gitea.io"
|
|
|
|
setting.RepoRootPath = filepath.Join(os.TempDir(), "repos")
|
|
|
|
setting.AppDataPath = filepath.Join(os.TempDir(), "appdata")
|
|
|
|
|
|
|
|
os.Exit(m.Run())
|
|
|
|
}
|