mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +00:00 
			
		
		
		
	* Move some repository related code into sub package * Move more repository functions out of models * Fix lint * Some performance optimization for webhooks and others * some refactors * Fix lint * Fix * Update modules/repository/delete.go Co-authored-by: delvh <dev.lh@web.de> * Fix test * Merge * Fix test * Fix test * Fix test * Fix test Co-authored-by: delvh <dev.lh@web.de>
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2017 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.
 | |
| 
 | |
| package repo_test
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"code.gitea.io/gitea/models/db"
 | |
| 	repo_model "code.gitea.io/gitea/models/repo"
 | |
| 	"code.gitea.io/gitea/models/unittest"
 | |
| 	"code.gitea.io/gitea/modules/util"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	countRepospts        = repo_model.CountRepositoryOptions{OwnerID: 10}
 | |
| 	countReposptsPublic  = repo_model.CountRepositoryOptions{OwnerID: 10, Private: util.OptionalBoolFalse}
 | |
| 	countReposptsPrivate = repo_model.CountRepositoryOptions{OwnerID: 10, Private: util.OptionalBoolTrue}
 | |
| )
 | |
| 
 | |
| func TestGetRepositoryCount(t *testing.T) {
 | |
| 	assert.NoError(t, unittest.PrepareTestDatabase())
 | |
| 
 | |
| 	ctx := db.DefaultContext
 | |
| 	count, err1 := repo_model.CountRepositories(ctx, countRepospts)
 | |
| 	privateCount, err2 := repo_model.CountRepositories(ctx, countReposptsPrivate)
 | |
| 	publicCount, err3 := repo_model.CountRepositories(ctx, countReposptsPublic)
 | |
| 	assert.NoError(t, err1)
 | |
| 	assert.NoError(t, err2)
 | |
| 	assert.NoError(t, err3)
 | |
| 	assert.Equal(t, int64(3), count)
 | |
| 	assert.Equal(t, privateCount+publicCount, count)
 | |
| }
 | |
| 
 | |
| func TestGetPublicRepositoryCount(t *testing.T) {
 | |
| 	assert.NoError(t, unittest.PrepareTestDatabase())
 | |
| 
 | |
| 	count, err := repo_model.CountRepositories(db.DefaultContext, countReposptsPublic)
 | |
| 	assert.NoError(t, err)
 | |
| 	assert.Equal(t, int64(1), count)
 | |
| }
 | |
| 
 | |
| func TestGetPrivateRepositoryCount(t *testing.T) {
 | |
| 	assert.NoError(t, unittest.PrepareTestDatabase())
 | |
| 
 | |
| 	count, err := repo_model.CountRepositories(db.DefaultContext, countReposptsPrivate)
 | |
| 	assert.NoError(t, err)
 | |
| 	assert.Equal(t, int64(2), count)
 | |
| }
 | |
| 
 | |
| func TestRepoAPIURL(t *testing.T) {
 | |
| 	assert.NoError(t, unittest.PrepareTestDatabase())
 | |
| 	repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 10}).(*repo_model.Repository)
 | |
| 
 | |
| 	assert.Equal(t, "https://try.gitea.io/api/v1/repos/user12/repo10", repo.APIURL())
 | |
| }
 |