2021-10-10 16:40:03 -06:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-10-10 16:40:03 -06:00
|
|
|
|
2022-06-13 03:37:59 -06:00
|
|
|
package issues_test
|
2021-10-10 16:40:03 -06:00
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2022-06-13 03:37:59 -06:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2021-11-12 07:36:47 -07:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-03-31 03:20:39 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2022-06-13 03:37:59 -06:00
|
|
|
|
2022-06-15 01:02:00 -06:00
|
|
|
_ "code.gitea.io/gitea/models"
|
|
|
|
_ "code.gitea.io/gitea/models/repo"
|
|
|
|
_ "code.gitea.io/gitea/models/user"
|
|
|
|
|
2022-06-13 03:37:59 -06:00
|
|
|
"github.com/stretchr/testify/assert"
|
2021-10-10 16:40:03 -06:00
|
|
|
)
|
|
|
|
|
2022-03-31 03:20:39 -06:00
|
|
|
func init() {
|
|
|
|
setting.SetCustomPathAndConf("", "", "")
|
2023-02-19 09:12:01 -07:00
|
|
|
setting.InitProviderAndLoadCommonSettingsForTest()
|
2022-03-31 03:20:39 -06:00
|
|
|
}
|
|
|
|
|
2022-06-13 03:37:59 -06:00
|
|
|
func TestFixturesAreConsistent(t *testing.T) {
|
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
unittest.CheckConsistencyFor(t,
|
|
|
|
&issues_model.Issue{},
|
|
|
|
&issues_model.PullRequest{},
|
|
|
|
&issues_model.Milestone{},
|
|
|
|
&issues_model.Label{},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-10-10 16:40:03 -06:00
|
|
|
func TestMain(m *testing.M) {
|
2022-04-14 07:58:21 -06:00
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: filepath.Join("..", ".."),
|
|
|
|
})
|
2021-10-10 16:40:03 -06:00
|
|
|
}
|