mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
cfefe2b6c9
ForkRepository performs two different functions: * The fork itself, if it does not already exist * Updates and notifications after the fork is performed The function is split to reflect that and otherwise unmodified. The two function are given different names to: * clarify which integration tests provides coverage * distinguish it from the notification method by the same name
49 lines
1.5 KiB
Go
49 lines
1.5 KiB
Go
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package repository
|
|
|
|
import (
|
|
"testing"
|
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
|
"code.gitea.io/gitea/models/unittest"
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
"code.gitea.io/gitea/modules/git"
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestForkRepository(t *testing.T) {
|
|
require.NoError(t, unittest.PrepareTestDatabase())
|
|
|
|
// user 13 has already forked repo10
|
|
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 13})
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 10})
|
|
|
|
fork, err := ForkRepositoryAndUpdates(git.DefaultContext, user, user, ForkRepoOptions{
|
|
BaseRepo: repo,
|
|
Name: "test",
|
|
Description: "test",
|
|
})
|
|
assert.Nil(t, fork)
|
|
require.Error(t, err)
|
|
assert.True(t, IsErrForkAlreadyExist(err))
|
|
|
|
// user not reached maximum limit of repositories
|
|
assert.False(t, repo_model.IsErrReachLimitOfRepo(err))
|
|
|
|
// change AllowForkWithoutMaximumLimit to false for the test
|
|
setting.Repository.AllowForkWithoutMaximumLimit = false
|
|
// user has reached maximum limit of repositories
|
|
user.MaxRepoCreation = 0
|
|
fork2, err := ForkRepositoryAndUpdates(git.DefaultContext, user, user, ForkRepoOptions{
|
|
BaseRepo: repo,
|
|
Name: "test",
|
|
Description: "test",
|
|
})
|
|
assert.Nil(t, fork2)
|
|
assert.True(t, repo_model.IsErrReachLimitOfRepo(err))
|
|
}
|