2017-06-15 07:01:51 +00:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2024-01-21 14:18:24 +00:00
|
|
|
// Copyright 2024 The Forgejo Authors c/o Codeberg e.V.. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-06-15 07:01:51 +00:00
|
|
|
|
2022-09-02 19:18:23 +00:00
|
|
|
package integration
|
2017-06-15 07:01:51 +00:00
|
|
|
|
|
|
|
import (
|
2023-11-23 19:24:52 +00:00
|
|
|
"fmt"
|
2017-06-15 07:01:51 +00:00
|
|
|
"net/http"
|
2017-12-03 22:46:01 +00:00
|
|
|
"net/http/httptest"
|
2019-05-11 15:29:17 +00:00
|
|
|
"net/url"
|
2017-06-15 07:01:51 +00:00
|
|
|
"path"
|
2024-03-20 05:07:02 +00:00
|
|
|
"regexp"
|
2017-06-21 01:00:03 +00:00
|
|
|
"strings"
|
2017-06-15 07:01:51 +00:00
|
|
|
"testing"
|
|
|
|
|
2024-01-21 14:18:24 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
|
|
|
unit_model "code.gitea.io/gitea/models/unit"
|
2024-01-21 17:03:04 +00:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
|
|
"code.gitea.io/gitea/modules/git"
|
|
|
|
"code.gitea.io/gitea/modules/graceful"
|
2023-06-19 08:25:36 +00:00
|
|
|
"code.gitea.io/gitea/modules/test"
|
2024-01-21 14:18:24 +00:00
|
|
|
repo_service "code.gitea.io/gitea/services/repository"
|
2024-01-21 17:03:04 +00:00
|
|
|
files_service "code.gitea.io/gitea/services/repository/files"
|
2022-09-02 19:18:23 +00:00
|
|
|
"code.gitea.io/gitea/tests"
|
2022-09-05 06:04:18 +00:00
|
|
|
|
2017-06-15 07:01:51 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2024-07-30 19:41:10 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2017-06-15 07:01:51 +00:00
|
|
|
)
|
|
|
|
|
2024-01-17 00:44:56 +00:00
|
|
|
func testPullCreate(t *testing.T, session *TestSession, user, repo string, toSelf bool, targetBranch, sourceBranch, title string) *httptest.ResponseRecorder {
|
2017-06-15 07:01:51 +00:00
|
|
|
req := NewRequest(t, "GET", path.Join(user, repo))
|
2017-07-07 19:36:47 +00:00
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
2017-06-15 07:01:51 +00:00
|
|
|
|
2019-02-19 23:09:47 +00:00
|
|
|
// Click the PR button to create a pull
|
2017-06-17 16:29:59 +00:00
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
2023-04-26 02:53:44 +00:00
|
|
|
link, exists := htmlDoc.doc.Find("#new-pull-request").Attr("href")
|
2017-06-15 07:01:51 +00:00
|
|
|
assert.True(t, exists, "The template has changed")
|
2024-01-17 00:44:56 +00:00
|
|
|
|
|
|
|
targetUser := strings.Split(link, "/")[1]
|
|
|
|
if toSelf && targetUser != user {
|
|
|
|
link = strings.Replace(link, targetUser, user, 1)
|
|
|
|
}
|
|
|
|
|
2024-03-20 05:07:02 +00:00
|
|
|
// get main out of /user/project/main...some:other/branch
|
|
|
|
defaultBranch := regexp.MustCompile(`^.*/(.*)\.\.\.`).FindStringSubmatch(link)[1]
|
|
|
|
if targetBranch != defaultBranch {
|
|
|
|
link = strings.Replace(link, defaultBranch+"...", targetBranch+"...", 1)
|
2024-01-17 00:44:56 +00:00
|
|
|
}
|
2024-03-20 05:07:02 +00:00
|
|
|
if sourceBranch != defaultBranch {
|
2024-01-17 00:44:56 +00:00
|
|
|
if targetUser == user {
|
2024-03-20 05:07:02 +00:00
|
|
|
link = strings.Replace(link, "..."+defaultBranch, "..."+sourceBranch, 1)
|
2024-01-17 00:44:56 +00:00
|
|
|
} else {
|
2024-03-20 05:07:02 +00:00
|
|
|
link = strings.Replace(link, ":"+defaultBranch, ":"+sourceBranch, 1)
|
2024-01-17 00:44:56 +00:00
|
|
|
}
|
2017-06-21 01:00:03 +00:00
|
|
|
}
|
2017-06-15 07:01:51 +00:00
|
|
|
|
|
|
|
req = NewRequest(t, "GET", link)
|
2017-07-07 19:36:47 +00:00
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
2017-06-15 07:01:51 +00:00
|
|
|
|
|
|
|
// Submit the form for creating the pull
|
2017-06-17 16:29:59 +00:00
|
|
|
htmlDoc = NewHTMLParser(t, resp.Body)
|
2017-06-15 07:01:51 +00:00
|
|
|
link, exists = htmlDoc.doc.Find("form.ui.form").Attr("action")
|
|
|
|
assert.True(t, exists, "The template has changed")
|
2017-06-17 04:49:45 +00:00
|
|
|
req = NewRequestWithValues(t, "POST", link, map[string]string{
|
|
|
|
"_csrf": htmlDoc.GetCSRF(),
|
2018-02-18 20:06:37 +00:00
|
|
|
"title": title,
|
2017-06-17 04:49:45 +00:00
|
|
|
})
|
2023-06-19 08:25:36 +00:00
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
2017-06-15 11:20:39 +00:00
|
|
|
return resp
|
2017-06-15 07:01:51 +00:00
|
|
|
}
|
|
|
|
|
2024-10-04 17:12:48 +00:00
|
|
|
func testPullCreateDirectly(t *testing.T, session *TestSession, baseRepoOwner, baseRepoName, baseBranch, headRepoOwner, headRepoName, headBranch, title string) *httptest.ResponseRecorder {
|
|
|
|
headCompare := headBranch
|
|
|
|
if headRepoOwner != "" {
|
|
|
|
if headRepoName != "" {
|
|
|
|
headCompare = fmt.Sprintf("%s/%s:%s", headRepoOwner, headRepoName, headBranch)
|
|
|
|
} else {
|
|
|
|
headCompare = fmt.Sprintf("%s:%s", headRepoOwner, headBranch)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
req := NewRequest(t, "GET", fmt.Sprintf("/%s/%s/compare/%s...%s", baseRepoOwner, baseRepoName, baseBranch, headCompare))
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
|
|
|
// Submit the form for creating the pull
|
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
|
|
|
link, exists := htmlDoc.doc.Find("form.ui.form").Attr("action")
|
|
|
|
assert.True(t, exists, "The template has changed")
|
|
|
|
req = NewRequestWithValues(t, "POST", link, map[string]string{
|
|
|
|
"_csrf": htmlDoc.GetCSRF(),
|
|
|
|
"title": title,
|
|
|
|
})
|
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
return resp
|
|
|
|
}
|
|
|
|
|
2017-06-15 07:01:51 +00:00
|
|
|
func TestPullCreate(t *testing.T) {
|
2019-05-11 15:29:17 +00:00
|
|
|
onGiteaRun(t, func(t *testing.T, u *url.URL) {
|
|
|
|
session := loginUser(t, "user1")
|
|
|
|
testRepoFork(t, session, "user2", "repo1", "user1", "repo1")
|
|
|
|
testEditFile(t, session, "user1", "repo1", "master", "README.md", "Hello, World (Edited)\n")
|
2024-01-17 00:44:56 +00:00
|
|
|
resp := testPullCreate(t, session, "user1", "repo1", false, "master", "master", "This is a pull title")
|
2019-05-11 15:29:17 +00:00
|
|
|
|
|
|
|
// check the redirected URL
|
2023-06-19 08:25:36 +00:00
|
|
|
url := test.RedirectURL(resp)
|
2019-05-11 15:29:17 +00:00
|
|
|
assert.Regexp(t, "^/user2/repo1/pulls/[0-9]*$", url)
|
|
|
|
|
|
|
|
// check .diff can be accessed and matches performed change
|
|
|
|
req := NewRequest(t, "GET", url+".diff")
|
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
assert.Regexp(t, `\+Hello, World \(Edited\)`, resp.Body)
|
|
|
|
assert.Regexp(t, "^diff", resp.Body)
|
|
|
|
assert.NotRegexp(t, "diff.*diff", resp.Body) // not two diffs, just one
|
|
|
|
|
|
|
|
// check .patch can be accessed and matches performed change
|
|
|
|
req = NewRequest(t, "GET", url+".patch")
|
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
assert.Regexp(t, `\+Hello, World \(Edited\)`, resp.Body)
|
|
|
|
assert.Regexp(t, "diff", resp.Body)
|
2023-04-17 22:04:26 +00:00
|
|
|
assert.Regexp(t, `Subject: \[PATCH\] Update README.md`, resp.Body)
|
2019-05-11 15:29:17 +00:00
|
|
|
assert.NotRegexp(t, "diff.*diff", resp.Body) // not two diffs, just one
|
|
|
|
})
|
2017-06-15 07:01:51 +00:00
|
|
|
}
|
2018-02-18 20:06:37 +00:00
|
|
|
|
2024-02-05 15:33:40 +00:00
|
|
|
func TestPullCreateWithPullTemplate(t *testing.T) {
|
|
|
|
onGiteaRun(t, func(t *testing.T, u *url.URL) {
|
|
|
|
baseUser := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 1})
|
|
|
|
forkUser := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 2})
|
|
|
|
|
|
|
|
templateCandidates := []string{
|
|
|
|
".forgejo/PULL_REQUEST_TEMPLATE.md",
|
|
|
|
".forgejo/pull_request_template.md",
|
|
|
|
".gitea/PULL_REQUEST_TEMPLATE.md",
|
|
|
|
".gitea/pull_request_template.md",
|
|
|
|
".github/PULL_REQUEST_TEMPLATE.md",
|
|
|
|
".github/pull_request_template.md",
|
|
|
|
}
|
|
|
|
|
|
|
|
createBaseRepo := func(t *testing.T, templateFiles []string, message string) (*repo_model.Repository, func()) {
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
changeOps := make([]*files_service.ChangeRepoFile, len(templateFiles))
|
|
|
|
for i, template := range templateFiles {
|
|
|
|
changeOps[i] = &files_service.ChangeRepoFile{
|
|
|
|
Operation: "create",
|
|
|
|
TreePath: template,
|
|
|
|
ContentReader: strings.NewReader(message + " " + template),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-25 00:47:35 +00:00
|
|
|
repo, _, deferrer := tests.CreateDeclarativeRepo(t, baseUser, "", nil, nil, changeOps)
|
2024-02-05 15:33:40 +00:00
|
|
|
|
|
|
|
return repo, deferrer
|
|
|
|
}
|
|
|
|
|
|
|
|
testPullPreview := func(t *testing.T, session *TestSession, user, repo, message string) {
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
req := NewRequest(t, "GET", path.Join(user, repo))
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
|
|
|
// Click the PR button to create a pull
|
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
|
|
|
link, exists := htmlDoc.doc.Find("#new-pull-request").Attr("href")
|
|
|
|
assert.True(t, exists, "The template has changed")
|
|
|
|
|
|
|
|
// Load the pull request preview
|
|
|
|
req = NewRequest(t, "GET", link)
|
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
|
|
|
// Check that the message from the template is present.
|
|
|
|
htmlDoc = NewHTMLParser(t, resp.Body)
|
|
|
|
pullRequestMessage := htmlDoc.doc.Find("textarea[placeholder*='comment']").Text()
|
|
|
|
assert.Equal(t, message, pullRequestMessage)
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, template := range templateCandidates {
|
|
|
|
t.Run(template, func(t *testing.T) {
|
|
|
|
defer tests.PrintCurrentTest(t)()
|
|
|
|
|
|
|
|
// Create the base repository, with the pull request template added.
|
|
|
|
message := fmt.Sprintf("TestPullCreateWithPullTemplate/%s", template)
|
|
|
|
baseRepo, deferrer := createBaseRepo(t, []string{template}, message)
|
|
|
|
defer deferrer()
|
|
|
|
|
|
|
|
// Fork the repository
|
|
|
|
session := loginUser(t, forkUser.Name)
|
|
|
|
testRepoFork(t, session, baseUser.Name, baseRepo.Name, forkUser.Name, baseRepo.Name)
|
|
|
|
forkedRepo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{OwnerID: forkUser.ID, Name: baseRepo.Name})
|
|
|
|
|
|
|
|
// Apply a change to the fork
|
|
|
|
err := createOrReplaceFileInBranch(forkUser, forkedRepo, "README.md", forkedRepo.DefaultBranch, fmt.Sprintf("Hello, World (%d)\n", i))
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, err)
|
2024-02-05 15:33:40 +00:00
|
|
|
|
|
|
|
testPullPreview(t, session, forkUser.Name, forkedRepo.Name, message+" "+template)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("multiple template options", func(t *testing.T) {
|
|
|
|
defer tests.PrintCurrentTest(t)()
|
|
|
|
|
|
|
|
// Create the base repository, with the pull request template added.
|
|
|
|
message := "TestPullCreateWithPullTemplate/multiple"
|
|
|
|
baseRepo, deferrer := createBaseRepo(t, templateCandidates, message)
|
|
|
|
defer deferrer()
|
|
|
|
|
|
|
|
// Fork the repository
|
|
|
|
session := loginUser(t, forkUser.Name)
|
|
|
|
testRepoFork(t, session, baseUser.Name, baseRepo.Name, forkUser.Name, baseRepo.Name)
|
|
|
|
forkedRepo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{OwnerID: forkUser.ID, Name: baseRepo.Name})
|
|
|
|
|
|
|
|
// Apply a change to the fork
|
|
|
|
err := createOrReplaceFileInBranch(forkUser, forkedRepo, "README.md", forkedRepo.DefaultBranch, "Hello, World (%d)\n")
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, err)
|
2024-02-05 15:33:40 +00:00
|
|
|
|
|
|
|
// Unlike issues, where all candidates are considered and shown, for
|
|
|
|
// pull request, there's a priority: if there are multiple
|
|
|
|
// templates, only the highest priority one is used.
|
|
|
|
testPullPreview(t, session, forkUser.Name, forkedRepo.Name, message+" .forgejo/PULL_REQUEST_TEMPLATE.md")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-02-18 20:06:37 +00:00
|
|
|
func TestPullCreate_TitleEscape(t *testing.T) {
|
2019-05-11 15:29:17 +00:00
|
|
|
onGiteaRun(t, func(t *testing.T, u *url.URL) {
|
|
|
|
session := loginUser(t, "user1")
|
|
|
|
testRepoFork(t, session, "user2", "repo1", "user1", "repo1")
|
|
|
|
testEditFile(t, session, "user1", "repo1", "master", "README.md", "Hello, World (Edited)\n")
|
2024-01-17 00:44:56 +00:00
|
|
|
resp := testPullCreate(t, session, "user1", "repo1", false, "master", "master", "<i>XSS PR</i>")
|
2019-05-11 15:29:17 +00:00
|
|
|
|
|
|
|
// check the redirected URL
|
2023-06-19 08:25:36 +00:00
|
|
|
url := test.RedirectURL(resp)
|
2019-05-11 15:29:17 +00:00
|
|
|
assert.Regexp(t, "^/user2/repo1/pulls/[0-9]*$", url)
|
|
|
|
|
|
|
|
// Edit title
|
|
|
|
req := NewRequest(t, "GET", url)
|
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
2024-06-28 08:11:16 +00:00
|
|
|
editTestTitleURL, exists := htmlDoc.doc.Find(".button-row button[data-update-url]").First().Attr("data-update-url")
|
2019-05-11 15:29:17 +00:00
|
|
|
assert.True(t, exists, "The template has changed")
|
|
|
|
|
|
|
|
req = NewRequestWithValues(t, "POST", editTestTitleURL, map[string]string{
|
|
|
|
"_csrf": htmlDoc.GetCSRF(),
|
|
|
|
"title": "<u>XSS PR</u>",
|
|
|
|
})
|
|
|
|
session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
|
|
|
req = NewRequest(t, "GET", url)
|
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
htmlDoc = NewHTMLParser(t, resp.Body)
|
2020-04-10 22:01:41 +00:00
|
|
|
titleHTML, err := htmlDoc.doc.Find(".comment-list .timeline-item.event .text b").First().Html()
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, err)
|
2019-09-02 19:12:29 +00:00
|
|
|
assert.Equal(t, "<strike><i>XSS PR</i></strike>", titleHTML)
|
2020-04-10 22:01:41 +00:00
|
|
|
titleHTML, err = htmlDoc.doc.Find(".comment-list .timeline-item.event .text b").Next().Html()
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, err)
|
2019-05-11 15:29:17 +00:00
|
|
|
assert.Equal(t, "<u>XSS PR</u>", titleHTML)
|
2018-02-18 20:06:37 +00:00
|
|
|
})
|
|
|
|
}
|
2020-01-25 02:48:22 +00:00
|
|
|
|
|
|
|
func testUIDeleteBranch(t *testing.T, session *TestSession, ownerName, repoName, branchName string) {
|
|
|
|
relURL := "/" + path.Join(ownerName, repoName, "branches")
|
|
|
|
req := NewRequest(t, "GET", relURL)
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
|
|
|
|
|
|
|
req = NewRequestWithValues(t, "POST", relURL+"/delete", map[string]string{
|
2021-10-21 07:37:43 +00:00
|
|
|
"_csrf": htmlDoc.GetCSRF(),
|
2020-01-25 02:48:22 +00:00
|
|
|
"name": branchName,
|
|
|
|
})
|
|
|
|
session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
}
|
|
|
|
|
|
|
|
func testDeleteRepository(t *testing.T, session *TestSession, ownerName, repoName string) {
|
|
|
|
relURL := "/" + path.Join(ownerName, repoName, "settings")
|
|
|
|
req := NewRequest(t, "GET", relURL)
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
|
|
|
|
|
|
|
req = NewRequestWithValues(t, "POST", relURL+"?action=delete", map[string]string{
|
2021-10-21 07:37:43 +00:00
|
|
|
"_csrf": htmlDoc.GetCSRF(),
|
2023-11-23 19:24:52 +00:00
|
|
|
"repo_name": fmt.Sprintf("%s/%s", ownerName, repoName),
|
2020-01-25 02:48:22 +00:00
|
|
|
})
|
2022-03-23 04:54:07 +00:00
|
|
|
session.MakeRequest(t, req, http.StatusSeeOther)
|
2020-01-25 02:48:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPullBranchDelete(t *testing.T) {
|
|
|
|
onGiteaRun(t, func(t *testing.T, u *url.URL) {
|
2022-09-02 19:18:23 +00:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2020-01-25 02:48:22 +00:00
|
|
|
|
|
|
|
session := loginUser(t, "user1")
|
|
|
|
testRepoFork(t, session, "user2", "repo1", "user1", "repo1")
|
2022-03-23 04:54:07 +00:00
|
|
|
testCreateBranch(t, session, "user1", "repo1", "branch/master", "master1", http.StatusSeeOther)
|
2020-01-25 02:48:22 +00:00
|
|
|
testEditFile(t, session, "user1", "repo1", "master1", "README.md", "Hello, World (Edited)\n")
|
2024-01-17 00:44:56 +00:00
|
|
|
resp := testPullCreate(t, session, "user1", "repo1", false, "master", "master1", "This is a pull title")
|
2020-01-25 02:48:22 +00:00
|
|
|
|
|
|
|
// check the redirected URL
|
2023-06-19 08:25:36 +00:00
|
|
|
url := test.RedirectURL(resp)
|
2020-01-25 02:48:22 +00:00
|
|
|
assert.Regexp(t, "^/user2/repo1/pulls/[0-9]*$", url)
|
|
|
|
req := NewRequest(t, "GET", url)
|
|
|
|
session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
|
|
|
// delete head branch and confirm pull page is ok
|
|
|
|
testUIDeleteBranch(t, session, "user1", "repo1", "master1")
|
|
|
|
req = NewRequest(t, "GET", url)
|
|
|
|
session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
|
|
|
|
// delete head repository and confirm pull page is ok
|
|
|
|
testDeleteRepository(t, session, "user1", "repo1")
|
|
|
|
req = NewRequest(t, "GET", url)
|
|
|
|
session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
})
|
|
|
|
}
|
2024-01-21 14:18:24 +00:00
|
|
|
|
|
|
|
func TestRecentlyPushed(t *testing.T) {
|
|
|
|
onGiteaRun(t, func(t *testing.T, u *url.URL) {
|
|
|
|
session := loginUser(t, "user1")
|
|
|
|
testRepoFork(t, session, "user2", "repo1", "user1", "repo1")
|
|
|
|
|
|
|
|
testCreateBranch(t, session, "user1", "repo1", "branch/master", "recent-push", http.StatusSeeOther)
|
|
|
|
testEditFile(t, session, "user1", "repo1", "recent-push", "README.md", "Hello recently!\n")
|
|
|
|
|
|
|
|
testCreateBranch(t, session, "user2", "repo1", "branch/master", "recent-push-base", http.StatusSeeOther)
|
|
|
|
testEditFile(t, session, "user2", "repo1", "recent-push-base", "README.md", "Hello, recently, from base!\n")
|
|
|
|
|
|
|
|
baseRepo, err := repo_model.GetRepositoryByOwnerAndName(db.DefaultContext, "user2", "repo1")
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, err)
|
2024-01-21 14:18:24 +00:00
|
|
|
repo, err := repo_model.GetRepositoryByOwnerAndName(db.DefaultContext, "user1", "repo1")
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, err)
|
2024-01-21 14:18:24 +00:00
|
|
|
|
|
|
|
enablePRs := func(t *testing.T, repo *repo_model.Repository) {
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
err := repo_service.UpdateRepositoryUnits(db.DefaultContext, repo,
|
|
|
|
[]repo_model.RepoUnit{{
|
|
|
|
RepoID: repo.ID,
|
|
|
|
Type: unit_model.TypePullRequests,
|
|
|
|
}},
|
|
|
|
nil)
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, err)
|
2024-01-21 14:18:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
disablePRs := func(t *testing.T, repo *repo_model.Repository) {
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
err := repo_service.UpdateRepositoryUnits(db.DefaultContext, repo, nil,
|
|
|
|
[]unit_model.Type{unit_model.TypePullRequests})
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, err)
|
2024-01-21 14:18:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
testBanner := func(t *testing.T) {
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
req := NewRequest(t, "GET", "/user1/repo1")
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
|
|
|
|
|
|
|
message := strings.TrimSpace(htmlDoc.Find(".ui.message").Text())
|
|
|
|
link, _ := htmlDoc.Find(".ui.message a").Attr("href")
|
|
|
|
expectedMessage := "You pushed on branch recent-push"
|
|
|
|
|
|
|
|
assert.Contains(t, message, expectedMessage)
|
|
|
|
assert.Equal(t, "/user1/repo1/src/branch/recent-push", link)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test that there's a recently pushed branches banner, and it contains
|
|
|
|
// a link to the branch.
|
|
|
|
t.Run("recently-pushed-banner", func(t *testing.T) {
|
|
|
|
defer tests.PrintCurrentTest(t)()
|
|
|
|
|
|
|
|
testBanner(t)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Test that it is still there if the fork has PRs disabled, but the
|
|
|
|
// base repo still has them enabled.
|
|
|
|
t.Run("with-fork-prs-disabled", func(t *testing.T) {
|
|
|
|
defer tests.PrintCurrentTest(t)()
|
|
|
|
defer func() {
|
|
|
|
enablePRs(t, repo)
|
|
|
|
}()
|
|
|
|
|
|
|
|
disablePRs(t, repo)
|
|
|
|
testBanner(t)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Test that it is still there if the fork has PRs enabled, but the base
|
|
|
|
// repo does not.
|
|
|
|
t.Run("with-base-prs-disabled", func(t *testing.T) {
|
|
|
|
defer tests.PrintCurrentTest(t)()
|
|
|
|
defer func() {
|
|
|
|
enablePRs(t, baseRepo)
|
|
|
|
}()
|
|
|
|
|
|
|
|
disablePRs(t, baseRepo)
|
|
|
|
testBanner(t)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Test that the banner is not present if both the base and current
|
|
|
|
// repo have PRs disabled.
|
|
|
|
t.Run("with-prs-disabled", func(t *testing.T) {
|
|
|
|
defer tests.PrintCurrentTest(t)()
|
|
|
|
defer func() {
|
|
|
|
enablePRs(t, baseRepo)
|
|
|
|
enablePRs(t, repo)
|
|
|
|
}()
|
|
|
|
|
|
|
|
disablePRs(t, repo)
|
|
|
|
disablePRs(t, baseRepo)
|
|
|
|
|
|
|
|
req := NewRequest(t, "GET", "/user1/repo1")
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
|
|
|
htmlDoc.AssertElement(t, ".ui.message", false)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Test that visiting the base repo has the banner too, and includes
|
|
|
|
// recent push notifications from both the fork, and the base repo.
|
|
|
|
t.Run("on the base repo", func(t *testing.T) {
|
|
|
|
defer tests.PrintCurrentTest(t)()
|
|
|
|
|
|
|
|
// Count recently pushed branches on the fork
|
|
|
|
req := NewRequest(t, "GET", "/user1/repo1")
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
|
|
|
htmlDoc.AssertElement(t, ".ui.message", true)
|
|
|
|
|
|
|
|
// Count recently pushed branches on the base repo
|
|
|
|
req = NewRequest(t, "GET", "/user2/repo1")
|
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
htmlDoc = NewHTMLParser(t, resp.Body)
|
|
|
|
messageCountOnBase := htmlDoc.Find(".ui.message").Length()
|
|
|
|
|
|
|
|
// We have two messages on the base: one from the fork, one on the
|
|
|
|
// base itself.
|
|
|
|
assert.Equal(t, 2, messageCountOnBase)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Test that the banner's links point to the right repos
|
|
|
|
t.Run("link validity", func(t *testing.T) {
|
|
|
|
defer tests.PrintCurrentTest(t)()
|
|
|
|
|
|
|
|
// We're testing against the origin repo, because that has both
|
|
|
|
// local branches, and another from a fork, so we can test both in
|
|
|
|
// one test!
|
|
|
|
|
|
|
|
req := NewRequest(t, "GET", "/user2/repo1")
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
|
|
|
messages := htmlDoc.Find(".ui.message")
|
|
|
|
|
|
|
|
prButtons := messages.Find("a[role='button']")
|
|
|
|
branchLinks := messages.Find("a[href*='/src/branch/']")
|
|
|
|
|
|
|
|
// ** base repo tests **
|
|
|
|
basePRLink, _ := prButtons.First().Attr("href")
|
|
|
|
baseBranchLink, _ := branchLinks.First().Attr("href")
|
|
|
|
baseBranchName := branchLinks.First().Text()
|
|
|
|
|
|
|
|
// branch in the same repo does not have a `user/repo:` qualifier.
|
|
|
|
assert.Equal(t, "recent-push-base", baseBranchName)
|
|
|
|
// branch link points to the same repo
|
|
|
|
assert.Equal(t, "/user2/repo1/src/branch/recent-push-base", baseBranchLink)
|
|
|
|
// PR link compares against the correct rep, and unqualified branch name
|
|
|
|
assert.Equal(t, "/user2/repo1/compare/master...recent-push-base", basePRLink)
|
|
|
|
|
|
|
|
// ** forked repo tests **
|
|
|
|
forkPRLink, _ := prButtons.Last().Attr("href")
|
|
|
|
forkBranchLink, _ := branchLinks.Last().Attr("href")
|
|
|
|
forkBranchName := branchLinks.Last().Text()
|
|
|
|
|
|
|
|
// branch in the forked repo has a `user/repo:` qualifier.
|
|
|
|
assert.Equal(t, "user1/repo1:recent-push", forkBranchName)
|
|
|
|
// branch link points to the forked repo
|
|
|
|
assert.Equal(t, "/user1/repo1/src/branch/recent-push", forkBranchLink)
|
|
|
|
// PR link compares against the correct rep, and qualified branch name
|
|
|
|
assert.Equal(t, "/user2/repo1/compare/master...user1/repo1:recent-push", forkPRLink)
|
|
|
|
})
|
2024-01-21 17:03:04 +00:00
|
|
|
|
|
|
|
t.Run("unrelated branches are not shown", func(t *testing.T) {
|
|
|
|
defer tests.PrintCurrentTest(t)()
|
|
|
|
|
|
|
|
// Create a new branch with no relation to the default branch.
|
|
|
|
// 1. Create a new Tree object
|
|
|
|
cmd := git.NewCommand(db.DefaultContext, "write-tree")
|
|
|
|
treeID, _, gitErr := cmd.RunStdString(&git.RunOpts{Dir: repo.RepoPath()})
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, gitErr)
|
2024-01-21 17:03:04 +00:00
|
|
|
treeID = strings.TrimSpace(treeID)
|
|
|
|
// 2. Create a new (empty) commit
|
|
|
|
cmd = git.NewCommand(db.DefaultContext, "commit-tree", "-m", "Initial orphan commit").AddDynamicArguments(treeID)
|
|
|
|
commitID, _, gitErr := cmd.RunStdString(&git.RunOpts{Dir: repo.RepoPath()})
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, gitErr)
|
2024-01-21 17:03:04 +00:00
|
|
|
commitID = strings.TrimSpace(commitID)
|
|
|
|
// 3. Create a new ref pointing to the orphaned commit
|
|
|
|
cmd = git.NewCommand(db.DefaultContext, "update-ref", "refs/heads/orphan1").AddDynamicArguments(commitID)
|
|
|
|
_, _, gitErr = cmd.RunStdString(&git.RunOpts{Dir: repo.RepoPath()})
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, gitErr)
|
2024-01-21 17:03:04 +00:00
|
|
|
// 4. Sync the git repo to the database
|
2024-04-29 08:47:56 +00:00
|
|
|
syncErr := repo_service.AddAllRepoBranchesToSyncQueue(graceful.GetManager().ShutdownContext())
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, syncErr)
|
2024-01-21 17:03:04 +00:00
|
|
|
// 5. Add a fresh commit, so that FindRecentlyPushedBranches has
|
|
|
|
// something to find.
|
|
|
|
owner := unittest.AssertExistsAndLoadBean(t, &user_model.User{Name: "user1"})
|
|
|
|
changeResp, err := files_service.ChangeRepoFiles(git.DefaultContext, repo, owner,
|
|
|
|
&files_service.ChangeRepoFilesOptions{
|
|
|
|
Files: []*files_service.ChangeRepoFile{
|
|
|
|
{
|
|
|
|
Operation: "create",
|
|
|
|
TreePath: "README.md",
|
|
|
|
ContentReader: strings.NewReader("a readme file"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Message: "Add README.md",
|
|
|
|
OldBranch: "orphan1",
|
|
|
|
NewBranch: "orphan1",
|
|
|
|
})
|
2024-07-30 19:41:10 +00:00
|
|
|
require.NoError(t, err)
|
2024-01-21 17:03:04 +00:00
|
|
|
assert.NotEmpty(t, changeResp)
|
|
|
|
|
|
|
|
// Check that we only have 1 message on the main repo, the orphaned
|
|
|
|
// one is not shown.
|
|
|
|
req := NewRequest(t, "GET", "/user1/repo1")
|
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
|
|
|
|
|
|
|
htmlDoc.AssertElement(t, ".ui.message", true)
|
|
|
|
link, _ := htmlDoc.Find(".ui.message a[href*='/src/branch/']").Attr("href")
|
|
|
|
assert.Equal(t, "/user1/repo1/src/branch/recent-push", link)
|
|
|
|
})
|
2024-01-21 14:18:24 +00:00
|
|
|
})
|
|
|
|
}
|
2024-10-04 17:12:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Setup:
|
|
|
|
The base repository is: user2/repo1
|
|
|
|
Fork repository to: user1/repo1
|
|
|
|
Push extra commit to: user2/repo1, which changes README.md
|
|
|
|
Create a PR on user1/repo1
|
|
|
|
|
|
|
|
Test checks:
|
|
|
|
Check if pull request can be created from base to the fork repository.
|
|
|
|
*/
|
|
|
|
func TestPullCreatePrFromBaseToFork(t *testing.T) {
|
|
|
|
onGiteaRun(t, func(t *testing.T, u *url.URL) {
|
|
|
|
sessionFork := loginUser(t, "user1")
|
|
|
|
testRepoFork(t, sessionFork, "user2", "repo1", "user1", "repo1")
|
|
|
|
|
|
|
|
// Edit base repository
|
|
|
|
sessionBase := loginUser(t, "user2")
|
|
|
|
testEditFile(t, sessionBase, "user2", "repo1", "master", "README.md", "Hello, World (Edited)\n")
|
|
|
|
|
|
|
|
// Create a PR
|
|
|
|
resp := testPullCreateDirectly(t, sessionFork, "user1", "repo1", "master", "user2", "repo1", "master", "This is a pull title")
|
|
|
|
// check the redirected URL
|
|
|
|
url := test.RedirectURL(resp)
|
|
|
|
assert.Regexp(t, "^/user1/repo1/pulls/[0-9]*$", url)
|
|
|
|
})
|
|
|
|
}
|