2016-12-29 06:33:40 +05:30
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
2017-01-30 19:52:04 +05:30
|
|
|
"path/filepath"
|
2016-12-29 06:33:40 +05:30
|
|
|
"testing"
|
|
|
|
|
2017-01-27 23:34:53 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
|
2016-12-29 06:33:40 +05:30
|
|
|
"github.com/go-xorm/core"
|
|
|
|
"github.com/go-xorm/xorm"
|
|
|
|
_ "github.com/mattn/go-sqlite3" // for the test engine
|
2017-01-08 08:40:53 +05:30
|
|
|
"github.com/stretchr/testify/assert"
|
2016-12-29 06:33:40 +05:30
|
|
|
"gopkg.in/testfixtures.v2"
|
|
|
|
)
|
|
|
|
|
2017-01-25 16:07:35 +05:30
|
|
|
const NonexistentID = 9223372036854775807
|
|
|
|
|
2016-12-29 06:33:40 +05:30
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
if err := CreateTestEngine(); err != nil {
|
|
|
|
fmt.Printf("Error creating test engine: %v\n", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2017-01-27 23:34:53 +05:30
|
|
|
|
|
|
|
setting.AppURL = "https://try.gitea.io/"
|
|
|
|
setting.RunUser = "runuser"
|
|
|
|
setting.SSH.Port = 3000
|
|
|
|
setting.SSH.Domain = "try.gitea.io"
|
2017-01-30 19:52:04 +05:30
|
|
|
setting.RepoRootPath = filepath.Join(os.TempDir(), "repos")
|
|
|
|
setting.AppDataPath = filepath.Join(os.TempDir(), "appdata")
|
2017-01-27 23:34:53 +05:30
|
|
|
|
2016-12-29 06:33:40 +05:30
|
|
|
os.Exit(m.Run())
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateTestEngine create an xorm engine for testing
|
|
|
|
func CreateTestEngine() error {
|
|
|
|
var err error
|
|
|
|
x, err = xorm.NewEngine("sqlite3", "file::memory:?cache=shared")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
x.SetMapper(core.GonicMapper{})
|
|
|
|
if err = x.StoreEngine("InnoDB").Sync2(tables...); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-02-04 18:07:26 +05:30
|
|
|
|
2017-04-25 12:54:51 +05:30
|
|
|
return InitFixtures(&testfixtures.SQLite{}, "fixtures/")
|
2016-12-29 06:33:40 +05:30
|
|
|
}
|
|
|
|
|
2017-02-07 17:17:55 +05:30
|
|
|
func TestFixturesAreConsistent(t *testing.T) {
|
|
|
|
assert.NoError(t, PrepareTestDatabase())
|
|
|
|
CheckConsistencyForAll(t)
|
|
|
|
}
|
|
|
|
|
2016-12-29 06:33:40 +05:30
|
|
|
// PrepareTestDatabase load test fixtures into test database
|
|
|
|
func PrepareTestDatabase() error {
|
2017-04-25 12:54:51 +05:30
|
|
|
return LoadFixtures()
|
2016-12-29 06:33:40 +05:30
|
|
|
}
|
2017-01-08 08:40:53 +05:30
|
|
|
|
2017-01-09 08:38:36 +05:30
|
|
|
func loadBeanIfExists(bean interface{}, conditions ...interface{}) (bool, error) {
|
2017-01-08 08:40:53 +05:30
|
|
|
sess := x.NewSession()
|
|
|
|
defer sess.Close()
|
|
|
|
|
|
|
|
for _, cond := range conditions {
|
|
|
|
sess = sess.Where(cond)
|
|
|
|
}
|
2017-01-09 08:38:36 +05:30
|
|
|
return sess.Get(bean)
|
|
|
|
}
|
|
|
|
|
2017-01-24 21:46:36 +05:30
|
|
|
// BeanExists for testing, check if a bean exists
|
|
|
|
func BeanExists(t *testing.T, bean interface{}, conditions ...interface{}) bool {
|
|
|
|
exists, err := loadBeanIfExists(bean, conditions...)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
return exists
|
|
|
|
}
|
|
|
|
|
2017-01-09 08:38:36 +05:30
|
|
|
// AssertExistsAndLoadBean assert that a bean exists and load it from the test
|
|
|
|
// database
|
2017-01-25 08:19:51 +05:30
|
|
|
func AssertExistsAndLoadBean(t *testing.T, bean interface{}, conditions ...interface{}) interface{} {
|
2017-01-09 08:38:36 +05:30
|
|
|
exists, err := loadBeanIfExists(bean, conditions...)
|
|
|
|
assert.NoError(t, err)
|
2017-02-04 18:07:26 +05:30
|
|
|
assert.True(t, exists,
|
2017-02-07 17:17:55 +05:30
|
|
|
"Expected to find %+v (of type %T, with conditions %+v), but did not",
|
|
|
|
bean, bean, conditions)
|
2017-01-25 08:19:51 +05:30
|
|
|
return bean
|
2017-01-09 08:38:36 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// AssertNotExistsBean assert that a bean does not exist in the test database
|
|
|
|
func AssertNotExistsBean(t *testing.T, bean interface{}, conditions ...interface{}) {
|
|
|
|
exists, err := loadBeanIfExists(bean, conditions...)
|
2017-01-08 08:40:53 +05:30
|
|
|
assert.NoError(t, err)
|
2017-01-09 08:38:36 +05:30
|
|
|
assert.False(t, exists)
|
2017-01-08 08:40:53 +05:30
|
|
|
}
|
2017-02-04 18:07:26 +05:30
|
|
|
|
|
|
|
// AssertSuccessfulInsert assert that beans is successfully inserted
|
|
|
|
func AssertSuccessfulInsert(t *testing.T, beans ...interface{}) {
|
|
|
|
_, err := x.Insert(beans...)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|
|
|
|
|
2017-02-28 07:05:55 +05:30
|
|
|
// AssertCount assert the count of a bean
|
|
|
|
func AssertCount(t *testing.T, bean interface{}, expected interface{}) {
|
|
|
|
actual, err := x.Count(bean)
|
2017-02-04 18:07:26 +05:30
|
|
|
assert.NoError(t, err)
|
2017-02-28 07:05:55 +05:30
|
|
|
assert.EqualValues(t, expected, actual)
|
2017-02-04 18:07:26 +05:30
|
|
|
}
|