2020-04-05 00:20:50 -06:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-04-05 00:20:50 -06:00
|
|
|
|
2017-05-20 02:48:22 -06:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-08-24 20:31:57 -06:00
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2022-03-29 00:29:02 -06:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2021-12-09 18:27:50 -07:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 07:36:47 -07:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-24 02:49:20 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-09-19 05:49:59 -06:00
|
|
|
|
2023-09-07 22:51:15 -06:00
|
|
|
_ "code.gitea.io/gitea/models/actions"
|
2022-10-16 17:29:26 -06:00
|
|
|
_ "code.gitea.io/gitea/models/system"
|
|
|
|
|
2017-06-04 12:28:17 -06:00
|
|
|
"github.com/stretchr/testify/assert"
|
2017-05-20 02:48:22 -06:00
|
|
|
)
|
|
|
|
|
2017-06-04 12:28:17 -06:00
|
|
|
// TestFixturesAreConsistent assert that test fixtures are consistent
|
|
|
|
func TestFixturesAreConsistent(t *testing.T) {
|
2021-11-12 07:36:47 -07:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2021-11-16 01:53:21 -07:00
|
|
|
unittest.CheckConsistencyFor(t,
|
2021-11-24 02:49:20 -07:00
|
|
|
&user_model.User{},
|
2021-12-09 18:27:50 -07:00
|
|
|
&repo_model.Repository{},
|
2022-03-29 00:29:02 -06:00
|
|
|
&organization.Team{},
|
2022-08-24 20:31:57 -06:00
|
|
|
&activities_model.Action{})
|
2017-06-04 12:28:17 -06:00
|
|
|
}
|
|
|
|
|
2017-05-20 02:48:22 -06:00
|
|
|
func TestMain(m *testing.M) {
|
2023-09-27 19:38:53 -06:00
|
|
|
unittest.MainTest(m)
|
2017-05-20 02:48:22 -06:00
|
|
|
}
|