2019-11-09 02:24:50 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2019-11-09 02:24:50 +05:30
|
|
|
|
|
|
|
package action
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2022-08-25 08:01:57 +05:30
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2022-11-19 13:42:33 +05:30
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-10 06:57:50 +05:30
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 20:06:47 +05:30
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-24 15:19:20 +05:30
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-11-17 18:04:35 +05:30
|
|
|
|
2019-11-09 02:24:50 +05:30
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-04-14 19:28:21 +05:30
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: filepath.Join("..", "..", ".."),
|
|
|
|
})
|
2019-11-09 02:24:50 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
func TestRenameRepoAction(t *testing.T) {
|
2021-11-12 20:06:47 +05:30
|
|
|
assert.NoError(t, unittest.PrepareTestDatabase())
|
2019-11-09 02:24:50 +05:30
|
|
|
|
2022-08-16 07:52:25 +05:30
|
|
|
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{OwnerID: user.ID})
|
2019-11-09 02:24:50 +05:30
|
|
|
repo.Owner = user
|
|
|
|
|
|
|
|
oldRepoName := repo.Name
|
|
|
|
const newRepoName = "newRepoName"
|
|
|
|
repo.Name = newRepoName
|
|
|
|
repo.LowerName = strings.ToLower(newRepoName)
|
|
|
|
|
2022-08-25 08:01:57 +05:30
|
|
|
actionBean := &activities_model.Action{
|
|
|
|
OpType: activities_model.ActionRenameRepo,
|
2019-11-09 02:24:50 +05:30
|
|
|
ActUserID: user.ID,
|
|
|
|
ActUser: user,
|
|
|
|
RepoID: repo.ID,
|
|
|
|
Repo: repo,
|
|
|
|
IsPrivate: repo.IsPrivate,
|
|
|
|
Content: oldRepoName,
|
|
|
|
}
|
2021-11-16 14:23:21 +05:30
|
|
|
unittest.AssertNotExistsBean(t, actionBean)
|
2019-11-09 02:24:50 +05:30
|
|
|
|
2022-11-19 13:42:33 +05:30
|
|
|
NewNotifier().NotifyRenameRepository(db.DefaultContext, user, repo, oldRepoName)
|
2019-11-09 02:24:50 +05:30
|
|
|
|
2021-11-16 14:23:21 +05:30
|
|
|
unittest.AssertExistsAndLoadBean(t, actionBean)
|
2022-08-25 08:01:57 +05:30
|
|
|
unittest.CheckConsistencyFor(t, &activities_model.Action{})
|
2019-11-09 02:24:50 +05:30
|
|
|
}
|