2017-06-15 09:01:51 +02:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2022-09-02 21:18:23 +02:00
|
|
|
package integration
|
2017-06-15 09:01:51 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2017-12-03 23:46:01 +01:00
|
|
|
"net/http/httptest"
|
2019-05-11 17:29:17 +02:00
|
|
|
"net/url"
|
2017-06-15 09:01:51 +02:00
|
|
|
"path"
|
2017-06-21 03:00:03 +02:00
|
|
|
"strings"
|
2017-06-15 09:01:51 +02:00
|
|
|
"testing"
|
|
|
|
|
2022-09-02 21:18:23 +02:00
|
|
|
"code.gitea.io/gitea/tests"
|
2022-09-05 08:04:18 +02:00
|
|
|
|
2017-06-15 09:01:51 +02:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2018-02-18 21:06:37 +01:00
|
|
|
func testPullCreate(t *testing.T, session *TestSession, user, repo, branch, title string) *httptest.ResponseRecorder {
|
2017-06-15 09:01:51 +02:00
|
|
|
req := NewRequest(t, "GET", path.Join(user, repo))
|
2017-07-07 21:36:47 +02:00
|
|
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
2017-06-15 09:01:51 +02:00
|
|
|
|
2019-02-20 00:09:47 +01:00
|
|
|
// Click the PR button to create a pull
|
2017-06-17 18:29:59 +02:00
|
|
|
htmlDoc := NewHTMLParser(t, resp.Body)
|
2019-02-20 00:09:47 +01:00
|
|
|
link, exists := htmlDoc.doc.Find("#new-pull-request").Parent().Attr("href")
|
2017-06-15 09:01:51 +02:00
|
|
|
assert.True(t, exists, "The template has changed")
|
2017-06-21 03:00:03 +02:00
|
|
|
if branch != "master" {
|
|
|
|
link = strings.Replace(link, ":master", ":"+branch, 1)
|
|
|
|
}
|
2017-06-15 09:01:51 +02:00
|
|
|
|
|
|
|
req = NewRequest(t, "GET", link)
|
2017-07-07 21:36:47 +02:00
|
|
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
2017-06-15 09:01:51 +02:00
|
|
|
|
|
|
|
// Submit the form for creating the pull
|
2017-06-17 18:29:59 +02:00
|
|
|
htmlDoc = NewHTMLParser(t, resp.Body)
|
2017-06-15 09:01:51 +02:00
|
|
|
link, exists = htmlDoc.doc.Find("form.ui.form").Attr("action")
|
|
|
|
assert.True(t, exists, "The template has changed")
|
2017-06-17 06:49:45 +02:00
|
|
|
req = NewRequestWithValues(t, "POST", link, map[string]string{
|
|
|
|
"_csrf": htmlDoc.GetCSRF(),
|
2018-02-18 21:06:37 +01:00
|
|
|
"title": title,
|
2017-06-17 06:49:45 +02:00
|
|
|
})
|
2022-03-23 05:54:07 +01:00
|
|
|
resp = session.MakeRequest(t, req, http.StatusSeeOther)
|
2017-06-15 09:01:51 +02:00
|
|
|
|
2017-06-15 13:20:39 +02:00
|
|
|
return resp
|
2017-06-15 09:01:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPullCreate(t *testing.T) {
|
2019-05-11 17:29:17 +02: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")
|
|
|
|
resp := testPullCreate(t, session, "user1", "repo1", "master", "This is a pull title")
|
|
|
|
|
|
|
|
// check the redirected URL
|
2020-04-09 01:30:03 +02:00
|
|
|
url := resp.Header().Get("Location")
|
2019-05-11 17:29:17 +02: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)
|
|
|
|
assert.Regexp(t, `Subject: \[PATCH\] Update 'README.md'`, resp.Body)
|
|
|
|
assert.NotRegexp(t, "diff.*diff", resp.Body) // not two diffs, just one
|
|
|
|
})
|
2017-06-15 09:01:51 +02:00
|
|
|
}
|
2018-02-18 21:06:37 +01:00
|
|
|
|
|
|
|
func TestPullCreate_TitleEscape(t *testing.T) {
|
2019-05-11 17:29:17 +02: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")
|
|
|
|
resp := testPullCreate(t, session, "user1", "repo1", "master", "<i>XSS PR</i>")
|
|
|
|
|
|
|
|
// check the redirected URL
|
2020-04-09 01:30:03 +02:00
|
|
|
url := resp.Header().Get("Location")
|
2019-05-11 17:29:17 +02: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-11 00:01:41 +02:00
|
|
|
titleHTML, err := htmlDoc.doc.Find(".comment-list .timeline-item.event .text b").First().Html()
|
2019-05-11 17:29:17 +02:00
|
|
|
assert.NoError(t, err)
|
2019-09-02 21:12:29 +02:00
|
|
|
assert.Equal(t, "<strike><i>XSS PR</i></strike>", titleHTML)
|
2020-04-11 00:01:41 +02:00
|
|
|
titleHTML, err = htmlDoc.doc.Find(".comment-list .timeline-item.event .text b").Next().Html()
|
2019-05-11 17:29:17 +02:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, "<u>XSS PR</u>", titleHTML)
|
2018-02-18 21:06:37 +01:00
|
|
|
})
|
|
|
|
}
|
2020-01-25 03:48:22 +01: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 09:37:43 +02:00
|
|
|
"_csrf": htmlDoc.GetCSRF(),
|
2020-01-25 03:48:22 +01: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 09:37:43 +02:00
|
|
|
"_csrf": htmlDoc.GetCSRF(),
|
2020-01-25 03:48:22 +01:00
|
|
|
"repo_name": repoName,
|
|
|
|
})
|
2022-03-23 05:54:07 +01:00
|
|
|
session.MakeRequest(t, req, http.StatusSeeOther)
|
2020-01-25 03:48:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPullBranchDelete(t *testing.T) {
|
|
|
|
onGiteaRun(t, func(t *testing.T, u *url.URL) {
|
2022-09-02 21:18:23 +02:00
|
|
|
defer tests.PrepareTestEnv(t)()
|
2020-01-25 03:48:22 +01:00
|
|
|
|
|
|
|
session := loginUser(t, "user1")
|
|
|
|
testRepoFork(t, session, "user2", "repo1", "user1", "repo1")
|
2022-03-23 05:54:07 +01:00
|
|
|
testCreateBranch(t, session, "user1", "repo1", "branch/master", "master1", http.StatusSeeOther)
|
2020-01-25 03:48:22 +01:00
|
|
|
testEditFile(t, session, "user1", "repo1", "master1", "README.md", "Hello, World (Edited)\n")
|
|
|
|
resp := testPullCreate(t, session, "user1", "repo1", "master1", "This is a pull title")
|
|
|
|
|
|
|
|
// check the redirected URL
|
2020-04-09 01:30:03 +02:00
|
|
|
url := resp.Header().Get("Location")
|
2020-01-25 03:48:22 +01: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)
|
|
|
|
})
|
|
|
|
}
|