2019-11-15 08:06:11 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-11-15 08:06:11 +00:00
|
|
|
|
|
|
|
package repository
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
"testing"
|
|
|
|
|
2022-08-25 02:31:57 +00:00
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2022-05-11 10:09:36 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-03-29 06:29:02 +00:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2022-05-11 10:09:36 +00:00
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
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"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2020-12-25 09:59:32 +00:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2023-09-05 13:00:52 +00:00
|
|
|
"code.gitea.io/gitea/services/feed"
|
2023-09-05 18:37:47 +00:00
|
|
|
notify_service "code.gitea.io/gitea/services/notify"
|
2019-11-15 08:06:11 +00:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
var notifySync sync.Once
|
|
|
|
|
|
|
|
func registerNotifier() {
|
|
|
|
notifySync.Do(func() {
|
2023-09-05 18:37:47 +00:00
|
|
|
notify_service.RegisterNotifier(feed.NewNotifier())
|
2019-11-15 08:06:11 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTransferOwnership(t *testing.T) {
|
|
|
|
registerNotifier()
|
|
|
|
|
2021-11-12 14:36:47 +00:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2019-11-15 08:06:11 +00:00
|
|
|
|
2022-08-16 02:22:25 +00:00
|
|
|
doer := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 3})
|
|
|
|
repo.Owner = unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: repo.OwnerID})
|
2022-12-10 02:46:31 +00:00
|
|
|
assert.NoError(t, TransferOwnership(db.DefaultContext, doer, doer, repo, nil))
|
2019-11-15 08:06:11 +00:00
|
|
|
|
2022-08-16 02:22:25 +00:00
|
|
|
transferredRepo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 3})
|
2019-11-15 08:06:11 +00:00
|
|
|
assert.EqualValues(t, 2, transferredRepo.OwnerID)
|
|
|
|
|
2023-09-14 02:59:53 +00:00
|
|
|
exist, err := util.IsExist(repo_model.RepoPath("org3", "repo3"))
|
2020-12-25 09:59:32 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.False(t, exist)
|
2021-12-10 01:27:50 +00:00
|
|
|
exist, err = util.IsExist(repo_model.RepoPath("user2", "repo3"))
|
2020-12-25 09:59:32 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.True(t, exist)
|
2022-08-25 02:31:57 +00:00
|
|
|
unittest.AssertExistsAndLoadBean(t, &activities_model.Action{
|
|
|
|
OpType: activities_model.ActionTransferRepo,
|
2019-11-15 08:06:11 +00:00
|
|
|
ActUserID: 2,
|
|
|
|
RepoID: 3,
|
2023-09-14 02:59:53 +00:00
|
|
|
Content: "org3/repo3",
|
2019-11-15 08:06:11 +00:00
|
|
|
})
|
|
|
|
|
2022-03-29 06:29:02 +00:00
|
|
|
unittest.CheckConsistencyFor(t, &repo_model.Repository{}, &user_model.User{}, &organization.Team{})
|
2019-11-15 08:06:11 +00:00
|
|
|
}
|
2021-06-14 18:30:35 +00:00
|
|
|
|
|
|
|
func TestStartRepositoryTransferSetPermission(t *testing.T) {
|
2021-11-12 14:36:47 +00:00
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2021-06-14 18:30:35 +00:00
|
|
|
|
2022-08-16 02:22:25 +00:00
|
|
|
doer := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 3})
|
|
|
|
recipient := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 5})
|
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 3})
|
|
|
|
repo.Owner = unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: repo.OwnerID})
|
2021-06-14 18:30:35 +00:00
|
|
|
|
2022-05-11 10:09:36 +00:00
|
|
|
hasAccess, err := access_model.HasAccess(db.DefaultContext, recipient.ID, repo)
|
2021-06-14 18:30:35 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.False(t, hasAccess)
|
|
|
|
|
2022-12-10 02:46:31 +00:00
|
|
|
assert.NoError(t, StartRepositoryTransfer(db.DefaultContext, doer, recipient, repo, nil))
|
2021-06-14 18:30:35 +00:00
|
|
|
|
2022-05-11 10:09:36 +00:00
|
|
|
hasAccess, err = access_model.HasAccess(db.DefaultContext, recipient.ID, repo)
|
2021-06-14 18:30:35 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.True(t, hasAccess)
|
|
|
|
|
2022-03-29 06:29:02 +00:00
|
|
|
unittest.CheckConsistencyFor(t, &repo_model.Repository{}, &user_model.User{}, &organization.Team{})
|
2021-06-14 18:30:35 +00:00
|
|
|
}
|