2017-06-15 07:01:51 +00:00
|
|
|
// Copyright 2017 The Gitea Authors. 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 (
|
|
|
|
"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"
|
2017-06-21 01:00:03 +00:00
|
|
|
"strings"
|
2017-06-15 07:01:51 +00:00
|
|
|
"testing"
|
|
|
|
|
2023-06-19 08:25:36 +00:00
|
|
|
"code.gitea.io/gitea/modules/test"
|
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-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)
|
|
|
|
}
|
|
|
|
|
|
|
|
if targetBranch != "master" {
|
|
|
|
link = strings.Replace(link, "master...", targetBranch+"...", 1)
|
|
|
|
}
|
|
|
|
if sourceBranch != "master" {
|
|
|
|
if targetUser == user {
|
|
|
|
link = strings.Replace(link, "...master", "..."+sourceBranch, 1)
|
|
|
|
} else {
|
|
|
|
link = strings.Replace(link, ":master", ":"+sourceBranch, 1)
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
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)
|
|
|
|
editTestTitleURL, exists := htmlDoc.doc.Find("#save-edit-title").First().Attr("data-update-url")
|
|
|
|
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()
|
2019-05-11 15:29:17 +00:00
|
|
|
assert.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()
|
2019-05-11 15:29:17 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
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(),
|
2020-01-25 02:48:22 +00:00
|
|
|
"repo_name": repoName,
|
|
|
|
})
|
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)
|
|
|
|
})
|
|
|
|
}
|