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 (
|
2017-11-30 21:22:15 +05:30
|
|
|
"fmt"
|
2018-02-21 13:08:52 +05:30
|
|
|
"io/ioutil"
|
2018-08-06 17:22:53 +05:30
|
|
|
"math"
|
2018-02-21 13:08:52 +05:30
|
|
|
"net/url"
|
2017-09-21 13:13:26 +05:30
|
|
|
"os"
|
2017-11-30 21:22:15 +05:30
|
|
|
"path/filepath"
|
2016-12-29 06:33:40 +05:30
|
|
|
"testing"
|
2018-02-19 02:49:40 +05:30
|
|
|
"time"
|
2016-12-29 06:33:40 +05:30
|
|
|
|
2019-04-17 21:36:35 +05:30
|
|
|
"code.gitea.io/gitea/modules/base"
|
2017-09-21 13:13:26 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
|
2017-01-08 08:40:53 +05:30
|
|
|
"github.com/stretchr/testify/assert"
|
2019-08-23 22:10:30 +05:30
|
|
|
"github.com/unknwon/com"
|
2019-10-17 14:56:49 +05:30
|
|
|
"xorm.io/xorm"
|
2020-03-22 20:42:55 +05:30
|
|
|
"xorm.io/xorm/names"
|
2016-12-29 06:33:40 +05:30
|
|
|
)
|
|
|
|
|
2017-05-20 14:18:22 +05:30
|
|
|
// NonexistentID an ID that will never exist
|
2018-08-06 17:22:53 +05:30
|
|
|
const NonexistentID = int64(math.MaxInt64)
|
2017-01-25 16:07:35 +05:30
|
|
|
|
2017-11-30 21:22:15 +05:30
|
|
|
// giteaRoot a path to the gitea root
|
2020-02-15 14:29:43 +05:30
|
|
|
var (
|
|
|
|
giteaRoot string
|
|
|
|
fixturesDir string
|
|
|
|
)
|
2017-11-30 21:22:15 +05:30
|
|
|
|
2018-02-21 13:08:52 +05:30
|
|
|
func fatalTestError(fmtStr string, args ...interface{}) {
|
|
|
|
fmt.Fprintf(os.Stderr, fmtStr, args...)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2017-11-30 21:22:15 +05:30
|
|
|
// MainTest a reusable TestMain(..) function for unit tests that need to use a
|
|
|
|
// test database. Creates the test database, and sets necessary settings.
|
|
|
|
func MainTest(m *testing.M, pathToGiteaRoot string) {
|
2017-12-16 02:41:02 +05:30
|
|
|
var err error
|
2017-11-30 21:22:15 +05:30
|
|
|
giteaRoot = pathToGiteaRoot
|
2020-02-15 14:29:43 +05:30
|
|
|
fixturesDir = filepath.Join(pathToGiteaRoot, "models", "fixtures")
|
|
|
|
if err = CreateTestEngine(fixturesDir); err != nil {
|
2018-02-21 13:08:52 +05:30
|
|
|
fatalTestError("Error creating test engine: %v\n", err)
|
2017-11-30 21:22:15 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
setting.AppURL = "https://try.gitea.io/"
|
|
|
|
setting.RunUser = "runuser"
|
|
|
|
setting.SSH.Port = 3000
|
|
|
|
setting.SSH.Domain = "try.gitea.io"
|
2019-08-24 14:54:45 +05:30
|
|
|
setting.Database.UseSQLite3 = true
|
2018-02-21 13:08:52 +05:30
|
|
|
setting.RepoRootPath, err = ioutil.TempDir(os.TempDir(), "repos")
|
|
|
|
if err != nil {
|
|
|
|
fatalTestError("TempDir: %v\n", err)
|
|
|
|
}
|
|
|
|
setting.AppDataPath, err = ioutil.TempDir(os.TempDir(), "appdata")
|
|
|
|
if err != nil {
|
|
|
|
fatalTestError("TempDir: %v\n", err)
|
|
|
|
}
|
2017-12-16 02:41:02 +05:30
|
|
|
setting.AppWorkPath = pathToGiteaRoot
|
|
|
|
setting.StaticRootPath = pathToGiteaRoot
|
|
|
|
setting.GravatarSourceURL, err = url.Parse("https://secure.gravatar.com/avatar/")
|
|
|
|
if err != nil {
|
2018-02-21 13:08:52 +05:30
|
|
|
fatalTestError("url.Parse: %v\n", err)
|
2017-12-16 02:41:02 +05:30
|
|
|
}
|
2017-11-30 21:22:15 +05:30
|
|
|
|
2019-07-30 07:29:10 +05:30
|
|
|
if err = removeAllWithRetry(setting.RepoRootPath); err != nil {
|
|
|
|
fatalTestError("os.RemoveAll: %v\n", err)
|
|
|
|
}
|
|
|
|
if err = com.CopyDir(filepath.Join(pathToGiteaRoot, "integrations", "gitea-repositories-meta"), setting.RepoRootPath); err != nil {
|
|
|
|
fatalTestError("com.CopyDir: %v\n", err)
|
|
|
|
}
|
|
|
|
|
2018-02-21 13:08:52 +05:30
|
|
|
exitStatus := m.Run()
|
|
|
|
if err = removeAllWithRetry(setting.RepoRootPath); err != nil {
|
|
|
|
fatalTestError("os.RemoveAll: %v\n", err)
|
|
|
|
}
|
|
|
|
if err = removeAllWithRetry(setting.AppDataPath); err != nil {
|
|
|
|
fatalTestError("os.RemoveAll: %v\n", err)
|
|
|
|
}
|
|
|
|
os.Exit(exitStatus)
|
2017-11-30 21:22:15 +05:30
|
|
|
}
|
|
|
|
|
2020-02-15 14:29:43 +05:30
|
|
|
// CreateTestEngine creates a memory database and loads the fixture data from fixturesDir
|
|
|
|
func CreateTestEngine(fixturesDir string) error {
|
2017-08-03 10:39:16 +05:30
|
|
|
var err error
|
2020-02-27 05:21:37 +05:30
|
|
|
x, err = xorm.NewEngine("sqlite3", "file::memory:?cache=shared&_txlock=immediate")
|
2017-08-03 10:39:16 +05:30
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-03-22 20:42:55 +05:30
|
|
|
x.SetMapper(names.GonicMapper{})
|
2017-08-03 10:39:16 +05:30
|
|
|
if err = x.StoreEngine("InnoDB").Sync2(tables...); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-11-27 15:59:48 +05:30
|
|
|
switch os.Getenv("GITEA_UNIT_TESTS_VERBOSE") {
|
|
|
|
case "true", "1":
|
|
|
|
x.ShowSQL(true)
|
|
|
|
}
|
2017-08-03 10:39:16 +05:30
|
|
|
|
2020-06-18 00:37:58 +05:30
|
|
|
return InitFixtures(fixturesDir)
|
2017-08-03 10:39:16 +05:30
|
|
|
}
|
|
|
|
|
2018-02-19 02:49:40 +05:30
|
|
|
func removeAllWithRetry(dir string) error {
|
|
|
|
var err error
|
|
|
|
for i := 0; i < 20; i++ {
|
|
|
|
err = os.RemoveAll(dir)
|
|
|
|
if err == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
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-11-30 21:22:15 +05:30
|
|
|
// PrepareTestEnv prepares the environment for unit tests. Can only be called
|
|
|
|
// by tests that use the above MainTest(..) function.
|
|
|
|
func PrepareTestEnv(t testing.TB) {
|
2017-09-21 13:13:26 +05:30
|
|
|
assert.NoError(t, PrepareTestDatabase())
|
2018-02-19 02:49:40 +05:30
|
|
|
assert.NoError(t, removeAllWithRetry(setting.RepoRootPath))
|
2017-11-30 21:22:15 +05:30
|
|
|
metaPath := filepath.Join(giteaRoot, "integrations", "gitea-repositories-meta")
|
|
|
|
assert.NoError(t, com.CopyDir(metaPath, setting.RepoRootPath))
|
2019-04-17 21:36:35 +05:30
|
|
|
base.SetupGiteaRoot() // Makes sure GITEA_ROOT is set
|
2017-09-21 13:13:26 +05:30
|
|
|
}
|
|
|
|
|
2017-06-15 08:39:03 +05:30
|
|
|
type testCond struct {
|
|
|
|
query interface{}
|
|
|
|
args []interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cond create a condition with arguments for a test
|
|
|
|
func Cond(query interface{}, args ...interface{}) interface{} {
|
|
|
|
return &testCond{query: query, args: args}
|
|
|
|
}
|
|
|
|
|
|
|
|
func whereConditions(sess *xorm.Session, conditions []interface{}) {
|
|
|
|
for _, condition := range conditions {
|
|
|
|
switch cond := condition.(type) {
|
|
|
|
case *testCond:
|
|
|
|
sess.Where(cond.query, cond.args...)
|
|
|
|
default:
|
|
|
|
sess.Where(cond)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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()
|
2017-06-15 08:39:03 +05:30
|
|
|
whereConditions(sess, conditions)
|
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
|
2017-12-24 06:03:34 +05:30
|
|
|
func BeanExists(t testing.TB, bean interface{}, conditions ...interface{}) bool {
|
2017-01-24 21:46:36 +05:30
|
|
|
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-12-24 06:03:34 +05:30
|
|
|
func AssertExistsAndLoadBean(t testing.TB, 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
|
|
|
}
|
|
|
|
|
2017-06-15 08:39:03 +05:30
|
|
|
// GetCount get the count of a bean
|
2017-12-24 06:03:34 +05:30
|
|
|
func GetCount(t testing.TB, bean interface{}, conditions ...interface{}) int {
|
2017-06-15 08:39:03 +05:30
|
|
|
sess := x.NewSession()
|
|
|
|
defer sess.Close()
|
|
|
|
whereConditions(sess, conditions)
|
|
|
|
count, err := sess.Count(bean)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
return int(count)
|
|
|
|
}
|
|
|
|
|
2017-01-09 08:38:36 +05:30
|
|
|
// AssertNotExistsBean assert that a bean does not exist in the test database
|
2017-12-24 06:03:34 +05:30
|
|
|
func AssertNotExistsBean(t testing.TB, bean interface{}, conditions ...interface{}) {
|
2017-01-09 08:38:36 +05:30
|
|
|
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
|
|
|
|
2017-12-16 02:41:02 +05:30
|
|
|
// AssertExistsIf asserts that a bean exists or does not exist, depending on
|
|
|
|
// what is expected.
|
|
|
|
func AssertExistsIf(t *testing.T, expected bool, bean interface{}, conditions ...interface{}) {
|
|
|
|
exists, err := loadBeanIfExists(bean, conditions...)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, expected, exists)
|
|
|
|
}
|
|
|
|
|
2017-02-04 18:07:26 +05:30
|
|
|
// AssertSuccessfulInsert assert that beans is successfully inserted
|
2017-12-24 06:03:34 +05:30
|
|
|
func AssertSuccessfulInsert(t testing.TB, beans ...interface{}) {
|
2017-02-04 18:07:26 +05:30
|
|
|
_, err := x.Insert(beans...)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|
|
|
|
|
2017-02-28 07:05:55 +05:30
|
|
|
// AssertCount assert the count of a bean
|
2017-12-24 06:03:34 +05:30
|
|
|
func AssertCount(t testing.TB, bean interface{}, expected interface{}) {
|
2017-06-15 08:39:03 +05:30
|
|
|
assert.EqualValues(t, expected, GetCount(t, bean))
|
2017-02-04 18:07:26 +05:30
|
|
|
}
|
2017-07-27 06:50:38 +05:30
|
|
|
|
|
|
|
// AssertInt64InRange assert value is in range [low, high]
|
2017-12-24 06:03:34 +05:30
|
|
|
func AssertInt64InRange(t testing.TB, low, high, value int64) {
|
2017-07-27 06:50:38 +05:30
|
|
|
assert.True(t, value >= low && value <= high,
|
|
|
|
"Expected value in range [%d, %d], found %d", low, high, value)
|
|
|
|
}
|