2020-04-05 11:50:50 +05:30
|
|
|
// 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 14:18:22 +05:30
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-12-10 06:57:50 +05:30
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 20:06:47 +05:30
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-24 15:19:20 +05:30
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-12-10 13:44:24 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-09-19 17:19:59 +05:30
|
|
|
|
2017-06-04 23:58:17 +05:30
|
|
|
"github.com/stretchr/testify/assert"
|
2017-05-20 14:18:22 +05:30
|
|
|
)
|
|
|
|
|
2021-12-10 13:44:24 +05:30
|
|
|
func init() {
|
|
|
|
setting.SetCustomPathAndConf("", "", "")
|
|
|
|
setting.LoadForTest()
|
|
|
|
}
|
|
|
|
|
2017-06-04 23:58:17 +05:30
|
|
|
// TestFixturesAreConsistent assert that test fixtures are consistent
|
|
|
|
func TestFixturesAreConsistent(t *testing.T) {
|
2021-11-12 20:06:47 +05:30
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2021-11-16 14:23:21 +05:30
|
|
|
unittest.CheckConsistencyFor(t,
|
2021-11-24 15:19:20 +05:30
|
|
|
&user_model.User{},
|
2021-12-10 06:57:50 +05:30
|
|
|
&repo_model.Repository{},
|
2021-11-12 20:06:47 +05:30
|
|
|
&Issue{},
|
|
|
|
&PullRequest{},
|
|
|
|
&Milestone{},
|
|
|
|
&Label{},
|
|
|
|
&Team{},
|
|
|
|
&Action{})
|
2017-06-04 23:58:17 +05:30
|
|
|
}
|
|
|
|
|
2017-05-20 14:18:22 +05:30
|
|
|
func TestMain(m *testing.M) {
|
2021-11-12 20:06:47 +05:30
|
|
|
unittest.MainTest(m, "..")
|
2017-05-20 14:18:22 +05:30
|
|
|
}
|