2020-04-05 06:20:50 +00:00
|
|
|
// Copyright 2020 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.
|
|
|
|
|
2017-05-20 08:48:22 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-03-29 06:29:02 +00:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2021-12-10 01:27:50 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 14:36:47 +00:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-12-10 08:14:24 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-09-19 11:49:59 +00:00
|
|
|
|
2017-06-04 18:28:17 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2017-05-20 08:48:22 +00:00
|
|
|
)
|
|
|
|
|
2021-12-10 08:14:24 +00:00
|
|
|
func init() {
|
|
|
|
setting.SetCustomPathAndConf("", "", "")
|
|
|
|
setting.LoadForTest()
|
|
|
|
}
|
|
|
|
|
2017-06-04 18:28:17 +00:00
|
|
|
// TestFixturesAreConsistent assert that test fixtures are consistent
|
|
|
|
func TestFixturesAreConsistent(t *testing.T) {
|
2021-11-12 14:36:47 +00:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2021-11-16 08:53:21 +00:00
|
|
|
unittest.CheckConsistencyFor(t,
|
2021-11-24 09:49:20 +00:00
|
|
|
&user_model.User{},
|
2021-12-10 01:27:50 +00:00
|
|
|
&repo_model.Repository{},
|
2022-03-29 06:29:02 +00:00
|
|
|
&organization.Team{},
|
2021-11-12 14:36:47 +00:00
|
|
|
&Action{})
|
2017-06-04 18:28:17 +00:00
|
|
|
}
|
|
|
|
|
2017-05-20 08:48:22 +00:00
|
|
|
func TestMain(m *testing.M) {
|
2022-04-14 13:58:21 +00:00
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: "..",
|
|
|
|
})
|
2017-05-20 08:48:22 +00:00
|
|
|
}
|