2019-11-08 23:54:50 +03:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 21:20:29 +03:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-11-08 23:54:50 +03:00
|
|
|
|
2023-09-05 16:00:52 +03:00
|
|
|
package feed
|
2019-11-08 23:54:50 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2022-08-25 05:31:57 +03:00
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2022-11-19 11:12:33 +03:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-10 04:27:50 +03:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 17:36:47 +03:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2021-11-24 12:49:20 +03:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-11-17 15:34:35 +03:00
|
|
|
|
2023-09-08 07:51:15 +03:00
|
|
|
_ "code.gitea.io/gitea/models/actions"
|
|
|
|
|
2024-07-30 22:41:10 +03:00
|
|
|
"github.com/stretchr/testify/require"
|
2019-11-08 23:54:50 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2023-09-28 04:38:53 +03:00
|
|
|
unittest.MainTest(m)
|
2019-11-08 23:54:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRenameRepoAction(t *testing.T) {
|
2024-07-30 22:41:10 +03:00
|
|
|
require.NoError(t, unittest.PrepareTestDatabase())
|
2019-11-08 23:54:50 +03:00
|
|
|
|
2022-08-16 05:22:25 +03:00
|
|
|
user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
|
|
|
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{OwnerID: user.ID})
|
2019-11-08 23:54:50 +03:00
|
|
|
repo.Owner = user
|
|
|
|
|
|
|
|
oldRepoName := repo.Name
|
|
|
|
const newRepoName = "newRepoName"
|
|
|
|
repo.Name = newRepoName
|
|
|
|
repo.LowerName = strings.ToLower(newRepoName)
|
|
|
|
|
2022-08-25 05:31:57 +03:00
|
|
|
actionBean := &activities_model.Action{
|
|
|
|
OpType: activities_model.ActionRenameRepo,
|
2019-11-08 23:54:50 +03:00
|
|
|
ActUserID: user.ID,
|
|
|
|
ActUser: user,
|
|
|
|
RepoID: repo.ID,
|
|
|
|
Repo: repo,
|
|
|
|
IsPrivate: repo.IsPrivate,
|
|
|
|
Content: oldRepoName,
|
|
|
|
}
|
2021-11-16 11:53:21 +03:00
|
|
|
unittest.AssertNotExistsBean(t, actionBean)
|
2019-11-08 23:54:50 +03:00
|
|
|
|
2023-09-05 21:37:47 +03:00
|
|
|
NewNotifier().RenameRepository(db.DefaultContext, user, repo, oldRepoName)
|
2019-11-08 23:54:50 +03:00
|
|
|
|
2021-11-16 11:53:21 +03:00
|
|
|
unittest.AssertExistsAndLoadBean(t, actionBean)
|
2022-08-25 05:31:57 +03:00
|
|
|
unittest.CheckConsistencyFor(t, &activities_model.Action{})
|
2019-11-08 23:54:50 +03:00
|
|
|
}
|