mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-26 00:48:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2019 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package repository
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	activities_model "code.gitea.io/gitea/models/activities"
 | |
| 	"code.gitea.io/gitea/models/db"
 | |
| 	repo_model "code.gitea.io/gitea/models/repo"
 | |
| 	"code.gitea.io/gitea/models/unittest"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestUpdateRepositoryVisibilityChanged(t *testing.T) {
 | |
| 	assert.NoError(t, unittest.PrepareTestDatabase())
 | |
| 
 | |
| 	// Get sample repo and change visibility
 | |
| 	repo, err := repo_model.GetRepositoryByID(db.DefaultContext, 9)
 | |
| 	assert.NoError(t, err)
 | |
| 	repo.IsPrivate = true
 | |
| 
 | |
| 	// Update it
 | |
| 	err = UpdateRepository(db.DefaultContext, repo, true)
 | |
| 	assert.NoError(t, err)
 | |
| 
 | |
| 	// Check visibility of action has become private
 | |
| 	act := activities_model.Action{}
 | |
| 	_, err = db.GetEngine(db.DefaultContext).ID(3).Get(&act)
 | |
| 
 | |
| 	assert.NoError(t, err)
 | |
| 	assert.True(t, act.IsPrivate)
 | |
| }
 | |
| 
 | |
| func TestGetDirectorySize(t *testing.T) {
 | |
| 	assert.NoError(t, unittest.PrepareTestDatabase())
 | |
| 	repo, err := repo_model.GetRepositoryByID(db.DefaultContext, 1)
 | |
| 	assert.NoError(t, err)
 | |
| 	size, err := getDirectorySize(repo.RepoPath())
 | |
| 	assert.NoError(t, err)
 | |
| 	repo.Size = 8165 // real size on the disk
 | |
| 	assert.Equal(t, repo.Size, size)
 | |
| }
 |