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