2017-10-26 00:49:16 +00:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-10-26 00:49:16 +00:00
|
|
|
|
2022-06-12 15:51:54 +00:00
|
|
|
package git_test
|
2017-10-26 00:49:16 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-04-28 11:48:48 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-12 15:51:54 +00:00
|
|
|
git_model "code.gitea.io/gitea/models/git"
|
2022-06-13 09:37:59 +00:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2021-12-10 01:27:50 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 14:36:47 +00:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2023-06-30 09:03:05 +00:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2023-06-29 10:03:20 +00:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-11-17 12:34:35 +00:00
|
|
|
|
2017-10-26 00:49:16 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAddDeletedBranch(t *testing.T) {
|
2021-11-12 14:36:47 +00:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2022-08-16 02:22:25 +00:00
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
2023-12-17 11:56:08 +00:00
|
|
|
assert.EqualValues(t, git.Sha1ObjectFormat.Name(), repo.ObjectFormatName)
|
2023-06-29 10:03:20 +00:00
|
|
|
firstBranch := unittest.AssertExistsAndLoadBean(t, &git_model.Branch{ID: 1})
|
2017-11-04 13:31:59 +00:00
|
|
|
|
2023-06-29 10:03:20 +00:00
|
|
|
assert.True(t, firstBranch.IsDeleted)
|
|
|
|
assert.NoError(t, git_model.AddDeletedBranch(db.DefaultContext, repo.ID, firstBranch.Name, firstBranch.DeletedByID))
|
|
|
|
assert.NoError(t, git_model.AddDeletedBranch(db.DefaultContext, repo.ID, "branch2", int64(1)))
|
|
|
|
|
|
|
|
secondBranch := unittest.AssertExistsAndLoadBean(t, &git_model.Branch{RepoID: repo.ID, Name: "branch2"})
|
|
|
|
assert.True(t, secondBranch.IsDeleted)
|
|
|
|
|
2023-06-30 09:03:05 +00:00
|
|
|
commit := &git.Commit{
|
2023-12-19 07:20:47 +00:00
|
|
|
ID: git.MustIDFromString(secondBranch.CommitID),
|
2023-06-30 09:03:05 +00:00
|
|
|
CommitMessage: secondBranch.CommitMessage,
|
|
|
|
Committer: &git.Signature{
|
|
|
|
When: secondBranch.CommitTime.AsLocalTime(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
Also sync DB branches on push if necessary (#28361)
Fix #28056
This PR will check whether the repo has zero branch when pushing a
branch. If that, it means this repository hasn't been synced.
The reason caused that is after user upgrade from v1.20 -> v1.21, he
just push branches without visit the repository user interface. Because
all repositories routers will check whether a branches sync is necessary
but push has not such check.
For every repository, it has two states, synced or not synced. If there
is zero branch for a repository, then it will be assumed as non-sync
state. Otherwise, it's synced state. So if we think it's synced, we just
need to update branch/insert new branch. Otherwise do a full sync. So
that, for every push, there will be almost no extra load added. It's
high performance than yours.
For the implementation, we in fact will try to update the branch first,
if updated success with affect records > 0, then all are done. Because
that means the branch has been in the database. If no record is
affected, that means the branch does not exist in database. So there are
two possibilities. One is this is a new branch, then we just need to
insert the record. Another is the branches haven't been synced, then we
need to sync all the branches into database.
2023-12-09 13:30:56 +00:00
|
|
|
_, err := git_model.UpdateBranch(db.DefaultContext, repo.ID, secondBranch.PusherID, secondBranch.Name, commit)
|
2023-06-29 10:03:20 +00:00
|
|
|
assert.NoError(t, err)
|
2017-10-26 00:49:16 +00:00
|
|
|
}
|
2017-11-04 13:31:59 +00:00
|
|
|
|
2017-10-26 00:49:16 +00:00
|
|
|
func TestGetDeletedBranches(t *testing.T) {
|
2021-11-12 14:36:47 +00:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2022-08-16 02:22:25 +00:00
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
2017-10-26 00:49:16 +00:00
|
|
|
|
2023-12-11 08:56:48 +00:00
|
|
|
branches, err := db.Find[git_model.Branch](db.DefaultContext, git_model.FindBranchOptions{
|
|
|
|
ListOptions: db.ListOptionsAll,
|
2023-06-29 10:03:20 +00:00
|
|
|
RepoID: repo.ID,
|
|
|
|
IsDeletedBranch: util.OptionalBoolTrue,
|
|
|
|
})
|
2017-10-26 00:49:16 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Len(t, branches, 2)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetDeletedBranch(t *testing.T) {
|
2021-11-12 14:36:47 +00:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2023-06-29 10:03:20 +00:00
|
|
|
firstBranch := unittest.AssertExistsAndLoadBean(t, &git_model.Branch{ID: 1})
|
2017-11-04 13:31:59 +00:00
|
|
|
|
2017-10-26 00:49:16 +00:00
|
|
|
assert.NotNil(t, getDeletedBranch(t, firstBranch))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDeletedBranchLoadUser(t *testing.T) {
|
2021-11-12 14:36:47 +00:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2017-11-04 13:31:59 +00:00
|
|
|
|
2023-06-29 10:03:20 +00:00
|
|
|
firstBranch := unittest.AssertExistsAndLoadBean(t, &git_model.Branch{ID: 1})
|
|
|
|
secondBranch := unittest.AssertExistsAndLoadBean(t, &git_model.Branch{ID: 2})
|
2017-11-04 13:31:59 +00:00
|
|
|
|
2017-10-26 00:49:16 +00:00
|
|
|
branch := getDeletedBranch(t, firstBranch)
|
|
|
|
assert.Nil(t, branch.DeletedBy)
|
2023-06-29 10:03:20 +00:00
|
|
|
branch.LoadDeletedBy(db.DefaultContext)
|
2017-10-26 00:49:16 +00:00
|
|
|
assert.NotNil(t, branch.DeletedBy)
|
|
|
|
assert.Equal(t, "user1", branch.DeletedBy.Name)
|
|
|
|
|
|
|
|
branch = getDeletedBranch(t, secondBranch)
|
|
|
|
assert.Nil(t, branch.DeletedBy)
|
2023-06-29 10:03:20 +00:00
|
|
|
branch.LoadDeletedBy(db.DefaultContext)
|
2017-10-26 00:49:16 +00:00
|
|
|
assert.NotNil(t, branch.DeletedBy)
|
|
|
|
assert.Equal(t, "Ghost", branch.DeletedBy.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRemoveDeletedBranch(t *testing.T) {
|
2021-11-12 14:36:47 +00:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2022-08-16 02:22:25 +00:00
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
2017-10-26 00:49:16 +00:00
|
|
|
|
2023-06-29 10:03:20 +00:00
|
|
|
firstBranch := unittest.AssertExistsAndLoadBean(t, &git_model.Branch{ID: 1})
|
2017-11-04 13:31:59 +00:00
|
|
|
|
2023-01-09 03:50:54 +00:00
|
|
|
err := git_model.RemoveDeletedBranchByID(db.DefaultContext, repo.ID, 1)
|
2017-10-26 00:49:16 +00:00
|
|
|
assert.NoError(t, err)
|
2021-11-16 08:53:21 +00:00
|
|
|
unittest.AssertNotExistsBean(t, firstBranch)
|
2023-06-29 10:03:20 +00:00
|
|
|
unittest.AssertExistsAndLoadBean(t, &git_model.Branch{ID: 2})
|
2017-10-26 00:49:16 +00:00
|
|
|
}
|
|
|
|
|
2023-06-29 10:03:20 +00:00
|
|
|
func getDeletedBranch(t *testing.T, branch *git_model.Branch) *git_model.Branch {
|
2022-08-16 02:22:25 +00:00
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
2017-10-26 00:49:16 +00:00
|
|
|
|
2023-01-09 03:50:54 +00:00
|
|
|
deletedBranch, err := git_model.GetDeletedBranchByID(db.DefaultContext, repo.ID, branch.ID)
|
2017-10-26 00:49:16 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, branch.ID, deletedBranch.ID)
|
|
|
|
assert.Equal(t, branch.Name, deletedBranch.Name)
|
2023-06-29 10:03:20 +00:00
|
|
|
assert.Equal(t, branch.CommitID, deletedBranch.CommitID)
|
2017-10-26 00:49:16 +00:00
|
|
|
assert.Equal(t, branch.DeletedByID, deletedBranch.DeletedByID)
|
|
|
|
|
|
|
|
return deletedBranch
|
|
|
|
}
|
2021-10-08 17:03:04 +00:00
|
|
|
|
|
|
|
func TestFindRenamedBranch(t *testing.T) {
|
2021-11-12 14:36:47 +00:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2023-01-09 03:50:54 +00:00
|
|
|
branch, exist, err := git_model.FindRenamedBranch(db.DefaultContext, 1, "dev")
|
2021-10-08 17:03:04 +00:00
|
|
|
assert.NoError(t, err)
|
2023-04-22 21:56:27 +00:00
|
|
|
assert.True(t, exist)
|
2021-10-08 17:03:04 +00:00
|
|
|
assert.Equal(t, "master", branch.To)
|
|
|
|
|
2023-01-09 03:50:54 +00:00
|
|
|
_, exist, err = git_model.FindRenamedBranch(db.DefaultContext, 1, "unknow")
|
2021-10-08 17:03:04 +00:00
|
|
|
assert.NoError(t, err)
|
2023-04-22 21:56:27 +00:00
|
|
|
assert.False(t, exist)
|
2021-10-08 17:03:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRenameBranch(t *testing.T) {
|
2021-11-12 14:36:47 +00:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2022-08-16 02:22:25 +00:00
|
|
|
repo1 := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
2021-10-08 17:03:04 +00:00
|
|
|
_isDefault := false
|
|
|
|
|
2022-11-12 20:18:50 +00:00
|
|
|
ctx, committer, err := db.TxContext(db.DefaultContext)
|
2022-04-28 11:48:48 +00:00
|
|
|
defer committer.Close()
|
|
|
|
assert.NoError(t, err)
|
2022-06-12 15:51:54 +00:00
|
|
|
assert.NoError(t, git_model.UpdateProtectBranch(ctx, repo1, &git_model.ProtectedBranch{
|
2023-01-16 08:00:22 +00:00
|
|
|
RepoID: repo1.ID,
|
|
|
|
RuleName: "master",
|
2022-06-12 15:51:54 +00:00
|
|
|
}, git_model.WhitelistOptions{}))
|
2022-04-28 11:48:48 +00:00
|
|
|
assert.NoError(t, committer.Commit())
|
2021-10-08 17:03:04 +00:00
|
|
|
|
2023-01-09 03:50:54 +00:00
|
|
|
assert.NoError(t, git_model.RenameBranch(db.DefaultContext, repo1, "master", "main", func(isDefault bool) error {
|
2021-10-08 17:03:04 +00:00
|
|
|
_isDefault = isDefault
|
|
|
|
return nil
|
|
|
|
}))
|
|
|
|
|
2023-04-22 21:56:27 +00:00
|
|
|
assert.True(t, _isDefault)
|
2022-08-16 02:22:25 +00:00
|
|
|
repo1 = unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
2021-10-08 17:03:04 +00:00
|
|
|
assert.Equal(t, "main", repo1.DefaultBranch)
|
|
|
|
|
2022-08-16 02:22:25 +00:00
|
|
|
pull := unittest.AssertExistsAndLoadBean(t, &issues_model.PullRequest{ID: 1}) // merged
|
2021-10-08 17:03:04 +00:00
|
|
|
assert.Equal(t, "master", pull.BaseBranch)
|
|
|
|
|
2022-08-16 02:22:25 +00:00
|
|
|
pull = unittest.AssertExistsAndLoadBean(t, &issues_model.PullRequest{ID: 2}) // open
|
2021-10-08 17:03:04 +00:00
|
|
|
assert.Equal(t, "main", pull.BaseBranch)
|
|
|
|
|
2022-08-16 02:22:25 +00:00
|
|
|
renamedBranch := unittest.AssertExistsAndLoadBean(t, &git_model.RenamedBranch{ID: 2})
|
2021-10-08 17:03:04 +00:00
|
|
|
assert.Equal(t, "master", renamedBranch.From)
|
|
|
|
assert.Equal(t, "main", renamedBranch.To)
|
|
|
|
assert.Equal(t, int64(1), renamedBranch.RepoID)
|
|
|
|
|
2022-06-12 15:51:54 +00:00
|
|
|
unittest.AssertExistsAndLoadBean(t, &git_model.ProtectedBranch{
|
2023-01-16 08:00:22 +00:00
|
|
|
RepoID: repo1.ID,
|
|
|
|
RuleName: "main",
|
2021-10-08 17:03:04 +00:00
|
|
|
})
|
|
|
|
}
|
2021-11-08 15:45:37 +00:00
|
|
|
|
|
|
|
func TestOnlyGetDeletedBranchOnCorrectRepo(t *testing.T) {
|
2021-11-12 14:36:47 +00:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2021-11-08 15:45:37 +00:00
|
|
|
|
|
|
|
// Get deletedBranch with ID of 1 on repo with ID 2.
|
|
|
|
// This should return a nil branch as this deleted branch
|
|
|
|
// is actually on repo with ID 1.
|
2022-08-16 02:22:25 +00:00
|
|
|
repo2 := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 2})
|
2021-11-08 15:45:37 +00:00
|
|
|
|
2023-01-09 03:50:54 +00:00
|
|
|
deletedBranch, err := git_model.GetDeletedBranchByID(db.DefaultContext, repo2.ID, 1)
|
2021-11-08 15:45:37 +00:00
|
|
|
|
2023-06-29 10:03:20 +00:00
|
|
|
// Expect error, and the returned branch is nil.
|
|
|
|
assert.Error(t, err)
|
2021-11-08 15:45:37 +00:00
|
|
|
assert.Nil(t, deletedBranch)
|
|
|
|
|
|
|
|
// Now get the deletedBranch with ID of 1 on repo with ID 1.
|
|
|
|
// This should return the deletedBranch.
|
2022-08-16 02:22:25 +00:00
|
|
|
repo1 := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
|
2021-11-08 15:45:37 +00:00
|
|
|
|
2023-01-09 03:50:54 +00:00
|
|
|
deletedBranch, err = git_model.GetDeletedBranchByID(db.DefaultContext, repo1.ID, 1)
|
2021-11-08 15:45:37 +00:00
|
|
|
|
|
|
|
// Expect no error, and the returned branch to be not nil.
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.NotNil(t, deletedBranch)
|
|
|
|
}
|