2016-12-29 01:03:40 +00:00
|
|
|
// 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 (
|
|
|
|
"testing"
|
|
|
|
|
2017-08-03 05:09:16 +00:00
|
|
|
"github.com/go-xorm/core"
|
2016-12-29 01:03:40 +00:00
|
|
|
"github.com/go-xorm/xorm"
|
2017-01-08 03:10:53 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2017-08-03 05:09:16 +00:00
|
|
|
"gopkg.in/testfixtures.v2"
|
2016-12-29 01:03:40 +00:00
|
|
|
)
|
|
|
|
|
2017-05-20 08:48:22 +00:00
|
|
|
// NonexistentID an ID that will never exist
|
2017-01-25 10:37:35 +00:00
|
|
|
const NonexistentID = 9223372036854775807
|
|
|
|
|
2017-08-03 05:09:16 +00:00
|
|
|
// CreateTestEngine create in-memory sqlite database for unit tests
|
|
|
|
// Any package that calls this must import github.com/mattn/go-sqlite3
|
|
|
|
func CreateTestEngine(fixturesDir string) 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
|
|
|
|
}
|
|
|
|
|
|
|
|
return InitFixtures(&testfixtures.SQLite{}, fixturesDir)
|
|
|
|
}
|
|
|
|
|
2016-12-29 01:03:40 +00:00
|
|
|
// PrepareTestDatabase load test fixtures into test database
|
|
|
|
func PrepareTestDatabase() error {
|
2017-04-25 07:24:51 +00:00
|
|
|
return LoadFixtures()
|
2016-12-29 01:03:40 +00:00
|
|
|
}
|
2017-01-08 03:10:53 +00:00
|
|
|
|
2017-06-15 03:09:03 +00:00
|
|
|
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 03:08:36 +00:00
|
|
|
func loadBeanIfExists(bean interface{}, conditions ...interface{}) (bool, error) {
|
2017-01-08 03:10:53 +00:00
|
|
|
sess := x.NewSession()
|
|
|
|
defer sess.Close()
|
2017-06-15 03:09:03 +00:00
|
|
|
whereConditions(sess, conditions)
|
2017-01-09 03:08:36 +00:00
|
|
|
return sess.Get(bean)
|
|
|
|
}
|
|
|
|
|
2017-01-24 16:16:36 +00:00
|
|
|
// 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 03:08:36 +00:00
|
|
|
// AssertExistsAndLoadBean assert that a bean exists and load it from the test
|
|
|
|
// database
|
2017-01-25 02:49:51 +00:00
|
|
|
func AssertExistsAndLoadBean(t *testing.T, bean interface{}, conditions ...interface{}) interface{} {
|
2017-01-09 03:08:36 +00:00
|
|
|
exists, err := loadBeanIfExists(bean, conditions...)
|
|
|
|
assert.NoError(t, err)
|
2017-02-04 12:37:26 +00:00
|
|
|
assert.True(t, exists,
|
2017-02-07 11:47:55 +00:00
|
|
|
"Expected to find %+v (of type %T, with conditions %+v), but did not",
|
|
|
|
bean, bean, conditions)
|
2017-01-25 02:49:51 +00:00
|
|
|
return bean
|
2017-01-09 03:08:36 +00:00
|
|
|
}
|
|
|
|
|
2017-06-15 03:09:03 +00:00
|
|
|
// GetCount get the count of a bean
|
|
|
|
func GetCount(t *testing.T, bean interface{}, conditions ...interface{}) int {
|
|
|
|
sess := x.NewSession()
|
|
|
|
defer sess.Close()
|
|
|
|
whereConditions(sess, conditions)
|
|
|
|
count, err := sess.Count(bean)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
return int(count)
|
|
|
|
}
|
|
|
|
|
2017-01-09 03:08:36 +00:00
|
|
|
// 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 03:10:53 +00:00
|
|
|
assert.NoError(t, err)
|
2017-01-09 03:08:36 +00:00
|
|
|
assert.False(t, exists)
|
2017-01-08 03:10:53 +00:00
|
|
|
}
|
2017-02-04 12:37:26 +00:00
|
|
|
|
|
|
|
// 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 01:35:55 +00:00
|
|
|
// AssertCount assert the count of a bean
|
|
|
|
func AssertCount(t *testing.T, bean interface{}, expected interface{}) {
|
2017-06-15 03:09:03 +00:00
|
|
|
assert.EqualValues(t, expected, GetCount(t, bean))
|
2017-02-04 12:37:26 +00:00
|
|
|
}
|
2017-07-27 01:20:38 +00:00
|
|
|
|
|
|
|
// AssertInt64InRange assert value is in range [low, high]
|
|
|
|
func AssertInt64InRange(t *testing.T, low, high, value int64) {
|
|
|
|
assert.True(t, value >= low && value <= high,
|
|
|
|
"Expected value in range [%d, %d], found %d", low, high, value)
|
|
|
|
}
|