mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 21:16:26 +01:00 
			
		
		
		
	* Fix counts on issues dashboard * setupSess -> setupSession * Unit test * Load repo owners for issues
		
			
				
	
	
		
			36 lines
		
	
	
		
			826 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			826 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package models
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"os"
 | 
						|
	"path/filepath"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/setting"
 | 
						|
 | 
						|
	_ "github.com/mattn/go-sqlite3" // for the test engine
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
)
 | 
						|
 | 
						|
// TestFixturesAreConsistent assert that test fixtures are consistent
 | 
						|
func TestFixturesAreConsistent(t *testing.T) {
 | 
						|
	assert.NoError(t, PrepareTestDatabase())
 | 
						|
	CheckConsistencyForAll(t)
 | 
						|
}
 | 
						|
 | 
						|
func TestMain(m *testing.M) {
 | 
						|
	if err := CreateTestEngine("fixtures/"); err != nil {
 | 
						|
		fmt.Printf("Error creating test engine: %v\n", err)
 | 
						|
		os.Exit(1)
 | 
						|
	}
 | 
						|
 | 
						|
	setting.AppURL = "https://try.gitea.io/"
 | 
						|
	setting.RunUser = "runuser"
 | 
						|
	setting.SSH.Port = 3000
 | 
						|
	setting.SSH.Domain = "try.gitea.io"
 | 
						|
	setting.RepoRootPath = filepath.Join(os.TempDir(), "repos")
 | 
						|
	setting.AppDataPath = filepath.Join(os.TempDir(), "appdata")
 | 
						|
 | 
						|
	os.Exit(m.Run())
 | 
						|
}
 |