2019-05-30 11:09:05 -04:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-05-30 11:09:05 -04:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
2021-12-09 20:27:50 -05:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-12 09:36:47 -05:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2019-05-30 11:09:05 -04:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 10:36:53 -05:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2024-02-27 02:12:22 -05:00
|
|
|
"code.gitea.io/gitea/services/contexttest"
|
2019-05-30 11:09:05 -04:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRepoEdit(t *testing.T) {
|
2021-11-12 09:36:47 -05:00
|
|
|
unittest.PrepareTestEnv(t)
|
2019-05-30 11:09:05 -04:00
|
|
|
|
2023-09-01 07:26:07 -04:00
|
|
|
ctx, _ := contexttest.MockAPIContext(t, "user2/repo1")
|
|
|
|
contexttest.LoadRepo(t, ctx, 1)
|
|
|
|
contexttest.LoadUser(t, ctx, 2)
|
2022-03-22 03:03:22 -04:00
|
|
|
ctx.Repo.Owner = ctx.Doer
|
2019-05-30 11:09:05 -04:00
|
|
|
description := "new description"
|
|
|
|
website := "http://wwww.newwebsite.com"
|
|
|
|
private := true
|
|
|
|
hasIssues := false
|
|
|
|
hasWiki := false
|
|
|
|
defaultBranch := "master"
|
|
|
|
hasPullRequests := true
|
|
|
|
ignoreWhitespaceConflicts := true
|
|
|
|
allowMerge := false
|
|
|
|
allowRebase := false
|
|
|
|
allowRebaseMerge := false
|
|
|
|
allowSquashMerge := false
|
2024-02-12 17:37:23 -05:00
|
|
|
allowFastForwardOnlyMerge := false
|
2019-05-30 11:09:05 -04:00
|
|
|
archived := true
|
|
|
|
opts := api.EditRepoOption{
|
|
|
|
Name: &ctx.Repo.Repository.Name,
|
|
|
|
Description: &description,
|
|
|
|
Website: &website,
|
|
|
|
Private: &private,
|
|
|
|
HasIssues: &hasIssues,
|
|
|
|
HasWiki: &hasWiki,
|
|
|
|
DefaultBranch: &defaultBranch,
|
|
|
|
HasPullRequests: &hasPullRequests,
|
|
|
|
IgnoreWhitespaceConflicts: &ignoreWhitespaceConflicts,
|
|
|
|
AllowMerge: &allowMerge,
|
|
|
|
AllowRebase: &allowRebase,
|
|
|
|
AllowRebaseMerge: &allowRebaseMerge,
|
|
|
|
AllowSquash: &allowSquashMerge,
|
2024-02-12 17:37:23 -05:00
|
|
|
AllowFastForwardOnly: &allowFastForwardOnlyMerge,
|
2019-05-30 11:09:05 -04:00
|
|
|
Archived: &archived,
|
|
|
|
}
|
|
|
|
|
2023-05-20 21:50:53 -04:00
|
|
|
web.SetForm(ctx, &opts)
|
|
|
|
Edit(ctx)
|
2019-05-30 11:09:05 -04:00
|
|
|
|
|
|
|
assert.EqualValues(t, http.StatusOK, ctx.Resp.Status())
|
2021-12-09 20:27:50 -05:00
|
|
|
unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{
|
2019-05-30 11:09:05 -04:00
|
|
|
ID: 1,
|
2021-11-16 03:53:21 -05:00
|
|
|
}, unittest.Cond("name = ? AND is_archived = 1", *opts.Name))
|
2019-05-30 11:09:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRepoEditNameChange(t *testing.T) {
|
2021-11-12 09:36:47 -05:00
|
|
|
unittest.PrepareTestEnv(t)
|
2019-05-30 11:09:05 -04:00
|
|
|
|
2023-09-01 07:26:07 -04:00
|
|
|
ctx, _ := contexttest.MockAPIContext(t, "user2/repo1")
|
|
|
|
contexttest.LoadRepo(t, ctx, 1)
|
|
|
|
contexttest.LoadUser(t, ctx, 2)
|
2022-03-22 03:03:22 -04:00
|
|
|
ctx.Repo.Owner = ctx.Doer
|
2019-05-30 11:09:05 -04:00
|
|
|
name := "newname"
|
|
|
|
opts := api.EditRepoOption{
|
|
|
|
Name: &name,
|
|
|
|
}
|
|
|
|
|
2023-05-20 21:50:53 -04:00
|
|
|
web.SetForm(ctx, &opts)
|
|
|
|
Edit(ctx)
|
2019-05-30 11:09:05 -04:00
|
|
|
assert.EqualValues(t, http.StatusOK, ctx.Resp.Status())
|
|
|
|
|
2021-12-09 20:27:50 -05:00
|
|
|
unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{
|
2019-05-30 11:09:05 -04:00
|
|
|
ID: 1,
|
2021-11-16 03:53:21 -05:00
|
|
|
}, unittest.Cond("name = ?", opts.Name))
|
2019-05-30 11:09:05 -04:00
|
|
|
}
|